#region Apache Notice
/*****************************************************************************
* $Header: $
* $Revision$
* $Date$
*
* iBATIS.NET Data Mapper
* Copyright (C) 2004 - Gilles Bayon
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
********************************************************************************/
#endregion
#region Imports
using System;
using System.Data;
using IBatisNet.Common;
using IBatisNet.DataAccess;
using IBatisNet.DataAccess.Exceptions;
using IBatisNet.DataAccess.Interfaces;
using NHibernate;
using NHibernate.Cfg;
using log4net;
#endregion
namespace IBatisNet.DataAccess.Extensions.DaoSessionHandlers
{
///
/// Summary description for NHibernateDaoSession.
///
public class NHibernateDaoSession : DaoSession
{
#region Fields
private ISessionFactory _factory = null;
private ISession _session = null;
private ITransaction _transaction = null;
private bool _consistent = false;
#endregion
#region Properties
///
/// Changes the vote for transaction to commit (true) or to abort (false).
///
private bool Consistent
{
set
{
_consistent = value;
}
}
///
///
///
public ISession Session
{
get { return _session; }
}
///
///
///
public ISessionFactory Factory
{
get { return _factory; }
}
///
///
///
public override DataSource DataSource
{
get
{
throw new DataAccessException("DataSource is not supported with Hibernate.");
}
}
///
///
///
public override IDbConnection Connection
{
get { return _session.Connection; }
}
///
///
///
public override IDbTransaction Transaction
{
get { return (_session.Transaction as IDbTransaction); }
}
#endregion
#region Constructor (s) / Destructor
///
///
///
///
///
public NHibernateDaoSession(DaoManager daoManager, ISessionFactory factory):base(daoManager)
{
_factory = factory;
}
#endregion
#region Methods
///
/// Complete (commit) a transaction
///
///
/// Use in 'using' syntax.
///
public override void Complete()
{
this.Consistent = true;
}
///
/// Opens a database connection.
///
public override void OpenConnection()
{
_session = _factory.OpenSession();
}
///
/// Closes the connection
///
public override void CloseConnection()
{
_session.Flush();// or Close ?
}
///
/// Begins a transaction.
///
public override void BeginTransaction()
{
try
{
_session = _factory.OpenSession();
_transaction = _session.BeginTransaction();
}
catch (HibernateException e)
{
throw new DataAccessException("Error starting Hibernate transaction. Cause: " + e.Message, e);
}
}
///
/// Begins a database transaction
///
/// Open a connection.
public override void BeginTransaction(bool openConnection)
{
if (openConnection)
{
this.BeginTransaction();
}
else
{
if (_session == null)
{
throw new DataAccessException("NHibernateDaoSession could not invoke BeginTransaction(). A Connection must be started. Call OpenConnection() first.");
}
try
{
_transaction = _session.BeginTransaction();
}
catch (HibernateException e)
{
throw new DataAccessException("Error starting Hibernate transaction. Cause: " + e.Message, e);
}
}
}
///
/// Begins a transaction at the data source with the specified IsolationLevel value.
///
/// The transaction isolation level for this connection.
public override void BeginTransaction(IsolationLevel isolationLevel)
{
throw new DataAccessException("IsolationLevel is not supported with Hibernate transaction.");
}
///
/// Begins a transaction on the current connection
/// with the specified IsolationLevel value.
///
/// The transaction isolation level for this connection.
/// Open a connection.
public override void BeginTransaction(bool openConnection, IsolationLevel isolationLevel)
{
throw new DataAccessException("IsolationLevel is not supported with Hibernate transaction.");
}
///
/// Commits the database transaction.
///
///
/// Will close the session.
///
public override void CommitTransaction()
{
try
{
_transaction.Commit();
_session.Close();
}
catch (HibernateException e)
{
throw new DataAccessException("Error committing Hibernate transaction. Cause: " + e.Message, e);
}
}
///
/// Commits the database transaction.
///
/// Close the session
public override void CommitTransaction(bool closeConnection)
{
try
{
_transaction.Commit();
if(closeConnection)
{
_session.Close();
}
}
catch (HibernateException e)
{
throw new DataAccessException("Error committing Hibernate transaction. Cause: " + e.Message, e);
}
}
///
/// Rolls back a transaction from a pending state.
///
///
/// Will close the session.
///
public override void RollBackTransaction()
{
try
{
_transaction.Rollback();
_session.Close();
}
catch (HibernateException e)
{
throw new DataAccessException("Error ending Hibernate transaction. Cause: " + e.Message, e);
}
}
///
/// Rolls back a transaction from a pending state.
///
/// Close the connection
public override void RollBackTransaction(bool closeConnection)
{
try
{
_transaction.Rollback();
if(closeConnection)
{
_session.Close();
}
}
catch (HibernateException e)
{
throw new DataAccessException("Error ending Hibernate transaction. Cause: " + e.Message, e);
}
}
///
///
///
///
///
public override IDbCommand CreateCommand(CommandType commandType)
{
throw new DataAccessException("CreateCommand is not supported with Hibernate.");
}
///
///
///
///
public override IDataParameter CreateDataParameter()
{
throw new DataAccessException("CreateDataParameter is not supported with Hibernate.");
}
///
///
///
///
public override IDbDataAdapter CreateDataAdapter()
{
throw new DataAccessException("CreateDataAdapter is not supported with Hibernate.");
}
///
///
///
///
///
public override IDbDataAdapter CreateDataAdapter(IDbCommand command)
{
throw new DataAccessException("CreateDataAdapter is not supported with Hibernate.");
}
#endregion
#region IDisposable Members
///
/// Releasing, or resetting resources.
///
public override void Dispose()
{
if (_consistent)
{
this.CommitTransaction();
}
else
{
this.RollBackTransaction();
}
_session.Dispose();
}
#endregion
}
}