~ubuntu-branches/ubuntu/saucy/f-spot/saucy

« back to all changes in this revision

Viewing changes to lib/Hyena/src/Mono.Data.Sqlite/Mono.Data.Sqlite/SQLiteEnlistment.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2010-05-24 10:35:57 UTC
  • mfrom: (2.4.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20100524103557-1j0i8f66caybci2n
Tags: 0.7.0-1
* New upstream release 0.7.0
 + First release of the unstable 0.7 development series. Massive changes.
 + Reparenting and detaching support (Anton Keks) (Closes: #559745)
 + A new Mallard-based documentation (Harold Schreckengost)
 + No longer embeds flickrnet, uses distribution copy (Iain Lane)
 + Adoption of a large amount of Hyena functionality (Paul Lange, Peter
   Goetz)
 + No longer embeds gnome-keyring-sharp
 + Completely rewritten import, much faster and less memory hungry (Ruben
   Vermeersch) (Closes: #559080, #492658, #341790, #357811, #426017) (LP:
   #412091)
 + No longer use gphoto2-sharp, now uses gvfs which is less crash-pron
   (Ruben Vermeersch)
 + Fix Facebook support (Ruben Vermeersch)
 + Modernized unit tests
 + Revamped build (Mike Gemünde)
 + Much improved duplicate detection (much faster too) (Ruben Vermeersch)
 + Mouse selection in Iconview (Vincent Pomey)
 + Image panning support using middle mouse button (Wojciech Dzierżanowski)
 + Timeline slider now restricted to the size of the window (Iain Churcher)
 + Over 100 bugs closed (http://bit.ly/cyVjnD)
   - No more warnings about schema defaults (Closes: #584215) (LP: #586132)
* debian/control: Clean up build deps to match configure checks
* debian/rules: Don't run dh_makeshilbs as we don't ship any shared
  libraries. There are some private ones though, which get picked up and
  result in a useless postinst/postrm call to ldconfig. Thanks, lintian.
* debian/patches/debian_fix-distclean.patch,
  debian/patches/debian_fix_f-spot.exe.config.patch,
  debian/patches/debian_link-system-flickrnet.patch,
  debian/patches/debian_link-system-gnome-keyring.patch,
  debian/patches/debian_disable-unit-tests,
  debian/patches/git_transition_duration.patch,
  debian/patches/ubuntu_fix_folder_export_hang.patch:
  Clean up obsolete patches which are no longer necessary 
* debian/patches/*: Temporarily disable patches which originated from Ubuntu
  and no longer apply cleanly. We will get these back in a future upstream
  development release.
* debian/patches/*: Refresh to apply cleanly 
* debian/rules: Add new include dir to autoreconf call to pick up f-spot
  macros 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Mono.Data.Sqlite.SQLiteEnlistment.cs
 
3
//
 
4
// Author(s):
 
5
//   Robert Simpson (robert@blackcastlesoft.com)
 
6
//
 
7
// Adapted and modified for the Mono Project by
 
8
//   Marek Habersack (grendello@gmail.com)
 
9
//
 
10
//
 
11
// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
 
12
// Copyright (C) 2007 Marek Habersack
 
13
//
 
14
// Permission is hereby granted, free of charge, to any person obtaining
 
15
// a copy of this software and associated documentation files (the
 
16
// "Software"), to deal in the Software without restriction, including
 
17
// without limitation the rights to use, copy, modify, merge, publish,
 
18
// distribute, sublicense, and/or sell copies of the Software, and to
 
19
// permit persons to whom the Software is furnished to do so, subject to
 
20
// the following conditions:
 
21
//
 
22
// The above copyright notice and this permission notice shall be
 
23
// included in all copies or substantial portions of the Software.
 
24
//
 
25
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
26
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
27
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
28
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
29
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
30
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
31
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
32
//
 
33
 
 
34
/*******************************************************
 
35
 * ADO.NET 2.0 Data Provider for Sqlite Version 3.X
 
36
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 
37
 *
 
38
 * Released to the public domain, use at your own risk!
 
39
 ********************************************************/
 
40
#if NET_2_0
 
41
#if !PLATFORM_COMPACTFRAMEWORK
 
42
namespace Mono.Data.Sqlite
 
43
{
 
44
  using System;
 
45
  using System.Data;
 
46
  using System.Data.Common;
 
47
  using System.Transactions;
 
48
 
 
49
  internal class SqliteEnlistment : IEnlistmentNotification
 
50
  {
 
51
    internal SqliteTransaction _transaction;
 
52
    internal Transaction _scope;
 
53
    internal bool _disposeConnection;
 
54
 
 
55
    internal SqliteEnlistment(SqliteConnection cnn, Transaction scope)
 
56
    {
 
57
      _transaction = cnn.BeginTransaction();
 
58
      _scope = scope;
 
59
      _disposeConnection = false;
 
60
 
 
61
      _scope.EnlistVolatile(this, System.Transactions.EnlistmentOptions.None);
 
62
    }
 
63
 
 
64
    private void Cleanup(SqliteConnection cnn)
 
65
    {
 
66
      if (_disposeConnection)
 
67
        cnn.Dispose();
 
68
 
 
69
      _transaction = null;
 
70
      _scope = null;
 
71
    }
 
72
 
 
73
    #region IEnlistmentNotification Members
 
74
 
 
75
    public void Commit(Enlistment enlistment)
 
76
    {
 
77
      SqliteConnection cnn = _transaction.Connection;
 
78
      cnn._enlistment = null;
 
79
 
 
80
      try
 
81
      {
 
82
        _transaction.IsValid(true);
 
83
        _transaction.Connection._transactionLevel = 1;
 
84
        _transaction.Commit();
 
85
 
 
86
        enlistment.Done();
 
87
      }
 
88
      finally
 
89
      {
 
90
        Cleanup(cnn);
 
91
      }
 
92
    }
 
93
 
 
94
    public void InDoubt(Enlistment enlistment)
 
95
    {
 
96
      enlistment.Done();
 
97
    }
 
98
 
 
99
    public void Prepare(PreparingEnlistment preparingEnlistment)
 
100
    {
 
101
      if (_transaction.IsValid(false) == false)
 
102
        preparingEnlistment.ForceRollback();
 
103
      else
 
104
        preparingEnlistment.Prepared();
 
105
    }
 
106
 
 
107
    public void Rollback(Enlistment enlistment)
 
108
    {
 
109
      SqliteConnection cnn = _transaction.Connection;
 
110
      cnn._enlistment = null;
 
111
 
 
112
      try
 
113
      {
 
114
        _transaction.Rollback();
 
115
        enlistment.Done();
 
116
      }
 
117
      finally
 
118
      {
 
119
        Cleanup(cnn);
 
120
      }
 
121
    }
 
122
 
 
123
    #endregion
 
124
  }
 
125
}
 
126
#endif // !PLATFORM_COMPACT_FRAMEWORK
 
127
#endif