summaryrefslogtreecommitdiff
path: root/src/pop-transaction.c
blob: 17258beaaedd041e9be401f25fe50a3c642f66d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
/* pop-transaction.c - queues actions to be run sequentially
 *
 * Copyright (C) 2007 Ray Strode <rstrode@redhat.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */
#include "config.h"
#include "pop-transaction.h"

#include <errno.h>
#include <string.h>

#include <glib.h>
#include <glib-object.h>
#include <glib/gi18n.h>

enum
{
  PROP_0 = 0,
  PROP_STATUS,
  PROP_ERROR,
  PROP_RESULT,
};

enum
{
  PROCESS = 0,
  WAIT,
  RESUME,
  CANCEL,
  FINISH,
  ROLLBACK,
  NUMBER_OF_SIGNALS
};

typedef enum _PopTransactionState
{
  POP_TRANSACTION_STATE_UNCOMMITED = 0,
  POP_TRANSACTION_STATE_COMMITED,
  POP_TRANSACTION_STATE_PROCESSING,
  POP_TRANSACTION_STATE_ROLLING_BACK,
  POP_TRANSACTION_STATE_FINISHED,
} PopTransactionState;

struct _PopTransactionPrivate
{
  /* The transaction state is what the transaction
   * is currently doing, where as the status is
   * just whether its still pending, succeeded, or
   * failed.  The state is used internally, whereas
   * the status is for the user of the api.
   */
  PopTransactionState state;
  PopTransactionStatus status;

  /* Actions get run sequentially, returning to the event
   * loop in between. Actions are set up by the user of the
   * transaction api, or potentially by other actions during 
   * the run.
   */
  GQueue *actions;
  GList  *current_action_node;

  /* which event loop to hook up with.  This is normally NULL,
   * which means "use the default context".
   */
  GMainContext *context;

  /* state variable that means an action is running right now;
   * the api function getting called is getting called from
   * within an action handler
   */
  guint is_running_action : 1;

  /* we process actions with an idle handler.  We do one action
   * each time the idle handler is dispatched.  These ids are
   * used for removing the idle handler later.  For instance, if
   * the transaction gets paused temporarily by an action, then
   * we would cancel the idle handler and recreate it when the
   * transaction gets unpaused.
   */
  guint process_idle_id;
  guint rollback_idle_id;

  /* two common reasons to want to pause a transaction
   * temporarily are to 1) wait for a timeout 2) wait for
   * activity on a file descriptor.  Since they seem like pretty
   * common things to want to do, we provide convenience
   * functions for doing them.  The convenience functions use
   * a timeout source and an io watch source respectively.
   * wait_id is id of one these sources when they are attached
   * to the event loop context.
   */
  guint wait_id;

  /* when the transaction finishes there needs to be a way to
   * extract the output of the transaction.  Rather than forcing
   * the user of the api to come up some ad-hoc way of moving
   * the result from the last action to caller of the
   * transaction, we provide an api to do it.
   */
  gpointer result;
  GDestroyNotify free_result_func;

  /* when an action fails the transaction it can optionally set
   * an error on why it failed the transaction
   */
  GError *error;
};

typedef struct
{
  PopActionProcessFunc process_func;
  PopActionProcessStatus process_status;

  PopActionRollbackFunc rollback_func;
  PopActionRollbackStatus rollback_status;

  gpointer user_data;
  GDestroyNotify free_func;
} PopAction;

static PopAction *pop_action_new (PopActionProcessFunc  action_process_func,
                                  PopActionRollbackFunc action_rollback_func,
                                  gpointer              user_data,
                                  GDestroyNotify        free_func);
static void pop_action_free (PopAction *action);

static void pop_transaction_finalize (GObject *object);
static void pop_transaction_class_install_signals (PopTransactionClass *
                                                   transaction_class);
static void pop_transaction_class_install_properties (PopTransactionClass *
                                                      transaction_class);

static void pop_transaction_set_property (GObject      *object,
                                          guint         prop_id,
                                          const GValue *value,
                                          GParamSpec   *pspec);
static void pop_transaction_get_property (GObject    *object,
                                          guint       prop_id,
                                          GValue     *value,
                                          GParamSpec *pspec);
static void pop_transaction_set_status (PopTransaction       *transaction,
                                        PopTransactionStatus  status);
typedef gboolean (*PopTransactionIdleFunc) (PopTransaction *transaction);
static guint pop_transaction_call_on_idle (PopTransaction         *transaction,
                                           PopTransactionIdleFunc  callback);

static gboolean pop_transaction_rewind (PopTransaction *transaction);
static gboolean pop_transaction_seek_forward (PopTransaction *transaction);
static void pop_transaction_fail (PopTransaction *transaction);
static void pop_transaction_finish (PopTransaction *transaction);

static gboolean pop_transaction_process_action_and_seek_forward (PopTransaction *transaction);
static void pop_transaction_process_on_idle (PopTransaction *transaction);
static gboolean pop_transaction_rollback_action_and_rewind (PopTransaction *transaction);
static void pop_transaction_rollback_on_idle (PopTransaction *transaction);
static void pop_transaction_rollback_and_finish (PopTransaction *transaction);

static gboolean pop_transaction_is_running_action (PopTransaction *transaction);
static gboolean pop_transaction_is_at_first_action (PopTransaction *transaction);
static gboolean pop_transaction_is_attached (PopTransaction *transaction);
static gboolean pop_transaction_is_empty (PopTransaction *transaction);
static gboolean pop_transaction_is_committed (PopTransaction *transaction);
static gboolean pop_transaction_is_finished (PopTransaction *transaction);

static guint pop_transaction_signals[NUMBER_OF_SIGNALS];
G_DEFINE_TYPE (PopTransaction, pop_transaction, G_TYPE_OBJECT);

static void
pop_transaction_class_init (PopTransactionClass *transaction_class)
{
  GObjectClass *object_class;

  object_class = G_OBJECT_CLASS (transaction_class);

  object_class->finalize = pop_transaction_finalize;

  pop_transaction_class_install_properties (transaction_class);
  pop_transaction_class_install_signals (transaction_class);

  g_type_class_add_private (transaction_class,
                            sizeof (PopTransactionPrivate));
}

static void
pop_transaction_class_install_signals (PopTransactionClass *
                                       transaction_class)
{
  GObjectClass *object_class;

  object_class = G_OBJECT_CLASS (transaction_class);

  pop_transaction_signals[PROCESS] =
    g_signal_new ("process", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, process),
                  NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
  transaction_class->process = NULL;

  pop_transaction_signals[WAIT] =
    g_signal_new ("wait", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, wait),
                  NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
  transaction_class->wait = NULL;

  pop_transaction_signals[RESUME] =
    g_signal_new ("resume", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, resume),
                  NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
  transaction_class->resume = NULL;

  pop_transaction_signals[CANCEL] =
    g_signal_new ("cancel", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, cancel),
                  NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
  transaction_class->cancel = NULL;

  pop_transaction_signals[FINISH] =
    g_signal_new ("finish", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, finish),
                  NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1,
                  G_TYPE_INT);
  transaction_class->finish = NULL;

  pop_transaction_signals[ROLLBACK] =
    g_signal_new ("rollback", G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (PopTransactionClass, rollback),
                  NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
  transaction_class->rollback = NULL;
}

static void
pop_transaction_class_install_properties (
  PopTransactionClass *transaction_class)
{
  GObjectClass *object_class;
  GParamSpec *param_spec;

  object_class = G_OBJECT_CLASS (transaction_class);
  object_class->set_property = pop_transaction_set_property;
  object_class->get_property = pop_transaction_get_property;

  /* FIXME: do the whole enum gtype song and dance
   */
  /**
   * PopTransaction:status:
   *
   * A transaction may be pending, successfully or
   * unsuccessfully finished. This property says which state the
   * transaction is currently in.
   */
  param_spec = g_param_spec_int ("status", _ ("Status"),
                                 _ ("Current status of the transaction"),
                                 POP_TRANSACTION_STATUS_NOT_FINISHED,
                                 POP_TRANSACTION_STATUS_SUCCEEDED,
                                 POP_TRANSACTION_STATUS_NOT_FINISHED,
                                G_PARAM_READABLE);
  /**
   * PopTransaction:result:
   *
   * The last action in a transaction may set some sort of output or result.
   * If it does, then this property contains that result.
   */
  g_object_class_install_property (object_class, PROP_STATUS, param_spec);

  param_spec = g_param_spec_pointer ("result", _ ("Result"),
                                     _ ("Output of transaction"),
                                     G_PARAM_READABLE);
  g_object_class_install_property (object_class, PROP_RESULT, param_spec);

  /**
   * PopTransaction:error:
   *
   * When an action fails it may set a #GError on the transaction with a
   * reason why the action failed.  This property is the error.
   */
  param_spec = g_param_spec_pointer ("error", _ ("Error"),
                                     _ ("Reason for transaction error"),
                                     G_PARAM_READWRITE);
  g_object_class_install_property (object_class, PROP_ERROR, param_spec);
}

static void
pop_transaction_init (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  transaction->priv = G_TYPE_INSTANCE_GET_PRIVATE (transaction,
                                                   POP_TYPE_TRANSACTION,
                                                   PopTransactionPrivate);
  transaction->priv->actions = g_queue_new ();

  transaction->priv->status = POP_TRANSACTION_STATUS_NOT_FINISHED;
}

static void
pop_transaction_finalize (GObject *object)
{
  PopTransaction *transaction;
  GObjectClass *parent_class;

  g_assert (POP_IS_TRANSACTION (object));
  transaction = POP_TRANSACTION (object);

  parent_class = G_OBJECT_CLASS (pop_transaction_parent_class);

  g_queue_foreach (transaction->priv->actions, (GFunc) pop_action_free, NULL);
  g_queue_free (transaction->priv->actions);

  pop_transaction_set_result (transaction, NULL, NULL);

  if (parent_class->finalize != NULL)
    {
      parent_class->finalize (object);
    }
}

static void
pop_transaction_set_property (GObject      *object,
                              guint         prop_id,
                              const GValue *value,
                              GParamSpec   *pspec)
{
  PopTransaction *transaction;

  g_assert (POP_IS_TRANSACTION (object));

  transaction = POP_TRANSACTION (object);

  switch (prop_id)
    {
      case PROP_ERROR:
        pop_transaction_set_error (transaction,
                                   (GError *) g_value_get_pointer (value));
        break;

      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
pop_transaction_get_property (GObject    *object,
                              guint       prop_id,
                              GValue     *value,
                              GParamSpec *pspec)
{
  PopTransaction *transaction;

  g_assert (POP_IS_TRANSACTION (object));

  transaction = POP_TRANSACTION (object);

  switch (prop_id)
    {
      case PROP_STATUS:
        g_value_set_int (value, pop_transaction_get_status (transaction));
        break;

      case PROP_ERROR:
        g_value_set_pointer (value, pop_transaction_get_error (transaction));
        break;

      case PROP_RESULT:
        g_value_set_pointer (value, pop_transaction_get_result (transaction));
        break;

      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    }
}

static void
pop_transaction_set_status (PopTransaction       *transaction,
                            PopTransactionStatus  status)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));

  if (transaction->priv->status != status)
    {
      transaction->priv->status = status;
      g_object_notify (G_OBJECT (transaction), "status");
    }
}

static PopAction *
pop_action_new (PopActionProcessFunc  action_process_func,
                PopActionRollbackFunc action_rollback_func,
                gpointer              user_data,
                GDestroyNotify        free_func)
{
  PopAction *action;

  action = g_slice_new0 (PopAction);

  action->process_func = action_process_func;
  action->process_status = POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
  action->rollback_func = action_rollback_func;
  action->rollback_status = POP_ACTION_ROLLBACK_STATUS_NOT_FINISHED;
  action->user_data = user_data;
  action->free_func = free_func;

  return action;
}

static void
pop_action_free (PopAction *action)
{
  g_assert (action != NULL);

  if (action->free_func != NULL)
    {
      action->free_func (action->user_data);
    }

  g_slice_free (PopAction, action);
}

static PopActionProcessStatus
pop_transaction_process_subtransaction (PopTransaction *transaction,
                                        PopTransaction *subtransaction)
{
  PopTransactionStatus status;

  g_assert (POP_IS_TRANSACTION (transaction));
  g_assert (POP_IS_TRANSACTION (subtransaction));

  if (!pop_transaction_is_committed (transaction))
    {
      pop_transaction_wait (transaction);
      g_signal_connect_swapped (G_OBJECT (subtransaction),
                                "finish", G_CALLBACK (pop_transaction_resume),
                                transaction);

      pop_transaction_commit (transaction);

      return POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
    }

  status = pop_transaction_get_status (subtransaction);

  g_assert (status != POP_TRANSACTION_STATUS_NOT_FINISHED);
  g_assert (status == POP_TRANSACTION_STATUS_CANCELED
            || status == POP_TRANSACTION_STATUS_FAILED
            || status == POP_TRANSACTION_STATUS_SUCCEEDED);

  if ((status == POP_TRANSACTION_STATUS_CANCELED)
      || (status == POP_TRANSACTION_STATUS_FAILED))
    {
      return POP_ACTION_PROCESS_STATUS_FAILED;
    }

  return POP_ACTION_PROCESS_STATUS_SUCCEEDED;
}

static PopActionRollbackStatus
pop_transaction_rollback_subtransaction (PopTransaction *transaction,
                                         PopTransaction *subtransaction)
{
  PopTransactionStatus status;

  status = pop_transaction_get_status (subtransaction);

  /* FIXME: things are a little confusing here.  when you
   * rollback a transaction it puts the status in NOT_FINISHED
   * and emits a "finish" signal.  That's pretty counter-intuitive.
   *
   * Maybe we need to change the wording a bit, or use a separate signal
   * for when the rollback completes
   */

  g_assert ((status == POP_TRANSACTION_STATUS_SUCCEEDED)
            || (status == POP_TRANSACTION_STATUS_NOT_FINISHED));

  /* not rolled back yet
   */
  if (status == POP_TRANSACTION_STATUS_SUCCEEDED)
    {
      pop_transaction_wait (transaction);
      pop_transaction_rollback (subtransaction);
      g_signal_connect_swapped (G_OBJECT (subtransaction),
                                "finish", G_CALLBACK (pop_transaction_resume),
                                transaction);
      return POP_ACTION_ROLLBACK_STATUS_NOT_FINISHED;
    }

  /* the second time we've been called. After the pop_transaction_resume()
   */

  return POP_ACTION_ROLLBACK_STATUS_FINISHED;
}

static gboolean
pop_transaction_on_fd_ready_resume (GIOChannel   *channel,
                                    GIOCondition  condition,
                                    gpointer      data)
{
  PopTransaction *transaction;

  g_assert (POP_IS_TRANSACTION (data));

  transaction = POP_TRANSACTION (data);

  pop_transaction_resume (transaction);
  return FALSE;
}

static gboolean
pop_transaction_on_timeout_resume (gpointer data)
{
  PopTransaction *transaction;

  g_assert (POP_IS_TRANSACTION (data));

  transaction = POP_TRANSACTION (data);

  pop_transaction_resume (transaction);

  return FALSE;
}

static guint
pop_transaction_call_on_idle (PopTransaction         *transaction,
                              PopTransactionIdleFunc  callback)
{
  GSource *source;
  guint idle_id;

  g_assert (POP_IS_TRANSACTION (transaction));

  source = g_idle_source_new ();
  g_object_ref (transaction);
  g_source_set_callback (source, (GSourceFunc) callback, transaction,
                         (GDestroyNotify) g_object_unref);

  idle_id = g_source_attach (source, transaction->priv->context);
  g_source_unref (source);

  return idle_id;
}

static gboolean
pop_transaction_rewind (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  if (pop_transaction_is_at_first_action (transaction))
    {
      return FALSE;
    }

  transaction->priv->current_action_node =
    transaction->priv->current_action_node->prev;

  return TRUE;
}

static gboolean
pop_transaction_seek_forward (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));
  g_assert (transaction->priv->current_action_node != NULL);

  transaction->priv->current_action_node =
    transaction->priv->current_action_node->next;

  return transaction->priv->current_action_node != NULL;
}

static void
pop_transaction_fail (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  pop_transaction_set_status (transaction,
                              POP_TRANSACTION_STATUS_FAILED);
  pop_transaction_rollback_and_finish (transaction);
}

static void
pop_transaction_finish (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  transaction->priv->state = POP_TRANSACTION_STATE_FINISHED;

  g_signal_emit (transaction, pop_transaction_signals[FINISH], 0,
                 transaction->priv->status);
}

static gboolean
pop_transaction_process_action_and_seek_forward (PopTransaction *transaction)
{
  PopAction *action;
  gboolean should_continue;

  g_assert (POP_IS_TRANSACTION (transaction));
  g_assert (transaction->priv->current_action_node != NULL);

  if (transaction->priv->state == POP_TRANSACTION_STATE_COMMITED)
    {
      transaction->priv->state = POP_TRANSACTION_STATE_PROCESSING;
      g_signal_emit (transaction, pop_transaction_signals[PROCESS], 0);
    }

  g_assert (transaction->priv->state == POP_TRANSACTION_STATE_PROCESSING);

  action = (PopAction *) transaction->priv->current_action_node->data;

  if (action->process_status != POP_ACTION_PROCESS_STATUS_NOT_FINISHED)
    return FALSE;

  transaction->priv->is_running_action = TRUE;
  if (action->process_func != NULL)
    {
      action->process_status = action->process_func (transaction, action->user_data);
    }
  else
    {
      action->process_status = POP_ACTION_PROCESS_STATUS_SUCCEEDED;
    }
  transaction->priv->is_running_action = FALSE;

  switch (action->process_status)
    {
      case POP_ACTION_PROCESS_STATUS_NOT_FINISHED:
        should_continue = TRUE;
        break;

      case POP_ACTION_PROCESS_STATUS_SUCCEEDED:
        if (!pop_transaction_seek_forward (transaction))
          {
            pop_transaction_set_status (transaction,
                                        POP_TRANSACTION_STATUS_SUCCEEDED);
            pop_transaction_finish (transaction);
            should_continue = FALSE;
          }
        else
          {
            should_continue = TRUE;
          }
        break;

      default:
        g_warning ("status %d is not valid processing status\n", (int) action->process_status);

        /* Fall through and fail the action because it's not behaving
         */

      case POP_ACTION_PROCESS_STATUS_FAILED:
        should_continue = FALSE;
        pop_transaction_fail (transaction);
        break;
    }

  if (!should_continue)
    {
      g_source_remove (transaction->priv->process_idle_id);
      transaction->priv->process_idle_id = 0;
    }

  return should_continue;
}

static void
pop_transaction_process_on_idle (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  transaction->priv->current_action_node =
    g_queue_peek_head_link (transaction->priv->actions);

  transaction->priv->process_idle_id =
    pop_transaction_call_on_idle (transaction,
                                  pop_transaction_process_action_and_seek_forward);
}

static gboolean
pop_transaction_rollback_action_and_rewind (PopTransaction *transaction)
{
  PopAction *action;
  gboolean should_continue;

  g_assert (POP_IS_TRANSACTION (transaction));
  g_assert (transaction->priv->current_action_node != NULL);

  if (transaction->priv->state == POP_TRANSACTION_STATE_PROCESSING)
    {
      transaction->priv->state = POP_TRANSACTION_STATE_ROLLING_BACK;
    }

  g_assert (transaction->priv->state == POP_TRANSACTION_STATE_ROLLING_BACK);

  action = (PopAction *) transaction->priv->current_action_node->data;

  if (action->rollback_status != POP_ACTION_ROLLBACK_STATUS_NOT_FINISHED)
    return FALSE;

  transaction->priv->is_running_action = TRUE;
  if (action->rollback_func != NULL)
    {
      action->rollback_status = action->rollback_func (transaction, action->user_data);
    }
  else
    {
      action->rollback_status = POP_ACTION_ROLLBACK_STATUS_FINISHED;
    }
  transaction->priv->is_running_action = FALSE;

  switch (action->rollback_status)
    {
      case POP_ACTION_ROLLBACK_STATUS_NOT_FINISHED:
        should_continue = TRUE;
        break;

      default:
        g_warning ("status %d is not valid rollback status\n", (int) action->rollback_status);

        /* Fall through and finish the action because it's not behaving
         */

      case POP_ACTION_ROLLBACK_STATUS_FINISHED:
        should_continue = pop_transaction_rewind (transaction);
        break;

        should_continue = FALSE;
        break;
    }

  if (!should_continue)
    {
      g_source_remove (transaction->priv->rollback_idle_id);
      transaction->priv->rollback_idle_id = 0;

      pop_transaction_finish (transaction);
    }

  return should_continue;
}

static void
pop_transaction_rollback_on_idle (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  transaction->priv->current_action_node = transaction->priv->
                                           current_action_node->prev;

  transaction->priv->rollback_idle_id =
    pop_transaction_call_on_idle (transaction,
                                  pop_transaction_rollback_action_and_rewind);
}

static void
pop_transaction_rollback_and_finish (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  if (pop_transaction_is_at_first_action (transaction))
    {
      pop_transaction_finish (transaction);
      return;
    }

  pop_transaction_rollback_on_idle (transaction);
}

static gboolean
pop_transaction_is_running_action (PopTransaction *transaction)
{
  g_return_val_if_fail (POP_IS_TRANSACTION (transaction), FALSE);

  if (transaction->priv->is_running_action)
    {
      g_assert (transaction->priv->state >= POP_TRANSACTION_STATE_PROCESSING);
      return TRUE;
    }

  return FALSE;
}

static gboolean
pop_transaction_is_at_first_action (PopTransaction *transaction)
{
  GList *first_action_node;

  g_assert (POP_IS_TRANSACTION (transaction));
  g_assert (transaction->priv->current_action_node != NULL);

  first_action_node = g_queue_peek_head_link (transaction->priv->actions);

  return first_action_node == transaction->priv->current_action_node;
}

static gboolean
pop_transaction_is_attached (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  return transaction->priv->context != NULL;
}

static gboolean
pop_transaction_is_empty (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  return g_queue_is_empty (transaction->priv->actions);
}

static gboolean
pop_transaction_is_committed (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  return transaction->priv->state >= POP_TRANSACTION_STATE_COMMITED;
}

static gboolean
pop_transaction_is_finished (PopTransaction *transaction)
{
  return transaction->priv->state == POP_TRANSACTION_STATE_FINISHED;
}

PopTransaction *
pop_transaction_new (void)
{
  PopTransaction *transaction;

  transaction = g_object_new (POP_TYPE_TRANSACTION, NULL);

  return transaction;
}

PopTransactionStatus
pop_transaction_get_status (PopTransaction *transaction)
{
  g_return_val_if_fail (POP_IS_TRANSACTION (transaction),
                        POP_TRANSACTION_STATUS_FAILED);

  return transaction->priv->status;
}

void
pop_transaction_add_action_full (PopTransaction       *transaction,
                                 PopActionProcessFunc  action_process_func,
                                 PopActionRollbackFunc action_rollback_func,
                                 gpointer              user_data,
                                 GDestroyNotify        free_func)
{
  PopAction *action;

  g_return_if_fail (POP_IS_TRANSACTION (transaction));

  action = pop_action_new (action_process_func, action_rollback_func, user_data,
                           free_func);

  if (transaction->priv->current_action_node == NULL)
    {
      g_queue_push_tail (transaction->priv->actions, action);
    }
  else
    {
      gboolean can_rewind;

      g_queue_insert_before (transaction->priv->actions,
                             transaction->priv->current_action_node,
                             action);
      can_rewind = pop_transaction_rewind (transaction);

      g_assert (can_rewind);
    }
}

void
pop_transaction_add_action (PopTransaction        *transaction,
                            PopActionProcessFunc   action_process_func,
                            PopActionRollbackFunc  action_rollback_func,
                            gpointer               user_data)
{
  pop_transaction_add_action_full (transaction, action_process_func,
                                   action_rollback_func,
                                   user_data, NULL);
}

void
pop_transaction_add_subtransaction (PopTransaction *transaction,
                                    PopTransaction *subtransaction)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (POP_IS_TRANSACTION (subtransaction));
  g_return_if_fail (!pop_transaction_is_committed (subtransaction));

  pop_transaction_add_action_full (transaction,
                                   (PopActionProcessFunc)
                                   pop_transaction_process_subtransaction,
                                   (PopActionRollbackFunc)
                                   pop_transaction_rollback_subtransaction,
                                   g_object_ref (subtransaction),
                                   (GDestroyNotify) g_object_unref);
}

void
pop_transaction_resume (PopTransaction *transaction)
{
  g_assert (POP_IS_TRANSACTION (transaction));

  switch (transaction->priv->state)
    {
      case POP_TRANSACTION_STATE_PROCESSING:
        pop_transaction_process_on_idle (transaction);
        break;

      case POP_TRANSACTION_STATE_ROLLING_BACK:
        pop_transaction_rollback_on_idle (transaction);
        break;

      default:
        break;
    }

  if (transaction->priv->wait_id != 0)
    {
      g_source_remove (transaction->priv->wait_id);
      transaction->priv->wait_id = 0;
    }

  g_signal_emit (transaction, pop_transaction_signals[RESUME], 0);
}

void
pop_transaction_wait (PopTransaction *transaction)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (pop_transaction_is_running_action (transaction));

  switch (transaction->priv->state)
    {
      case POP_TRANSACTION_STATE_PROCESSING:
        g_assert (transaction->priv->process_idle_id != 0);
        g_assert (transaction->priv->rollback_idle_id == 0);
        g_source_remove (transaction->priv->process_idle_id);
        transaction->priv->process_idle_id = 0;
        break;

      case POP_TRANSACTION_STATE_ROLLING_BACK:
        g_assert (transaction->priv->rollback_idle_id != 0);
        g_assert (transaction->priv->process_idle_id == 0);
        g_source_remove (transaction->priv->rollback_idle_id);
        transaction->priv->rollback_idle_id = 0;
        break;

      default:
        break;
    }

  g_signal_emit (transaction, pop_transaction_signals[WAIT], 0);
}

void
pop_transaction_wait_for_fd (PopTransaction *transaction,
                             int             fd,
                             GIOCondition    condition,
                             GDestroyNotify  destroy_notify)
{
  GIOChannel *channel;
  GSource *source;

  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (pop_transaction_is_running_action (transaction));

  pop_transaction_wait (transaction);

  channel = g_io_channel_unix_new (fd);
  g_io_channel_set_encoding (channel, NULL, NULL);
  g_io_channel_set_buffered (channel, FALSE);
  source = g_io_create_watch (channel, condition);
  g_source_set_callback (source,
                         (GSourceFunc) pop_transaction_on_fd_ready_resume,
                         transaction, NULL);
  transaction->priv->wait_id = g_source_attach (source,
                                                transaction->priv->context);
  g_source_unref (source);
  g_io_channel_unref (channel);
}

void
pop_transaction_wait_a_while (PopTransaction *transaction,
                              int             milliseconds)
{
  GSource *source;

  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (pop_transaction_is_running_action (transaction));

  pop_transaction_wait (transaction);

  source = g_timeout_source_new (milliseconds);
  g_source_set_callback (source,
                         (GSourceFunc) pop_transaction_on_timeout_resume,
                         transaction, NULL);
  transaction->priv->wait_id = g_source_attach (source,
                                                transaction->priv->context);
  g_source_unref (source);
}

void
pop_transaction_attach (PopTransaction *transaction,
                        GMainContext   *context)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (!pop_transaction_is_attached (transaction));

  transaction->priv->context = g_main_context_ref (context);
}

void
pop_transaction_commit (PopTransaction *transaction)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (!pop_transaction_is_empty (transaction));
  g_return_if_fail (!pop_transaction_is_committed (transaction));

  pop_transaction_process_on_idle (transaction);

  transaction->priv->state = POP_TRANSACTION_STATE_COMMITED;
}

void
pop_transaction_cancel (PopTransaction *transaction)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (!pop_transaction_is_finished (transaction));

  pop_transaction_set_status (transaction,
                              POP_TRANSACTION_STATUS_CANCELED);

  g_signal_emit (transaction, pop_transaction_signals[CANCEL], 0);

  pop_transaction_rollback_and_finish (transaction);
}

void
pop_transaction_rollback (PopTransaction *transaction)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));
  g_return_if_fail (pop_transaction_is_finished (transaction));
  g_return_if_fail (pop_transaction_get_status (transaction) ==
                    POP_TRANSACTION_STATUS_SUCCEEDED);

  pop_transaction_set_status (transaction,
                              POP_TRANSACTION_STATUS_NOT_FINISHED);

  g_signal_emit (transaction, pop_transaction_signals[ROLLBACK], 0);

  pop_transaction_rollback_and_finish (transaction);
}

void
pop_transaction_set_result (PopTransaction *transaction,
                            gpointer        result,
                            GDestroyNotify  free_func)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));

  if (transaction->priv->free_result_func != NULL)
    {
      transaction->priv->free_result_func (transaction->priv->result);
    }

  transaction->priv->result = result;
  transaction->priv->free_result_func = free_func;
}

gpointer
pop_transaction_get_result (PopTransaction *transaction)
{
  g_return_val_if_fail (POP_IS_TRANSACTION (transaction), NULL);

  return transaction->priv->result;
}

void
pop_transaction_set_error (PopTransaction *transaction,
                           const GError   *error)
{
  g_return_if_fail (POP_IS_TRANSACTION (transaction));

  if (transaction->priv->error != error)
    {
      if (transaction->priv->error != NULL)
        {
          g_error_free (transaction->priv->error);
        }

      transaction->priv->error = g_error_copy (error);
      g_object_notify (G_OBJECT (transaction), "error");
    }
}

GError *
pop_transaction_get_error (PopTransaction *transaction)
{
  g_return_val_if_fail (POP_IS_TRANSACTION (transaction), NULL);

  return g_error_copy (transaction->priv->error);
}

#ifdef POP_TRANSACTION_ENABLE_TEST

#include <stdio.h>
#include <unistd.h>

#include <glib.h>

typedef struct
{
  int fd;
  guint8 *buffer;
  gssize number_of_bytes_to_process;
} InputOutputArguments;

typedef ssize_t (*InputOutputFunc) (int fd, void *buf, size_t count);

static PopActionProcessStatus
proces_io_action (PopTransaction       *transaction,
                  InputOutputFunc       io_func,
                  InputOutputArguments *arguments,
                  GIOCondition          condition)
{
  gboolean is_ready;
  size_t bytes_left, bytes_done;
  ssize_t bytes_done_this_time;

  g_assert (POP_IS_TRANSACTION (transaction));
  g_return_val_if_fail (arguments->fd >= 0,
                        POP_ACTION_PROCESS_STATUS_FAILED);
  g_return_val_if_fail (arguments->buffer != NULL,
                        POP_ACTION_PROCESS_STATUS_FAILED);

  is_ready = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (transaction),
                                                 "is-ready"));
  if (is_ready)
    {
      /* pause transaction until fd is ready for reading (or writing
       * depending on the io_func)
       */
      pop_transaction_wait_for_fd (transaction, arguments->fd, condition,
                                   NULL);
      g_object_set_data (G_OBJECT (transaction), "bytes-left-to-process",
                         GINT_TO_POINTER (arguments->number_of_bytes_to_process));

      /* when the transaction gets unpaused we want to continue on
       */
      g_object_set_data (G_OBJECT (transaction), "is-ready",
                         GINT_TO_POINTER (TRUE));
      return POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
    }

  bytes_done = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (transaction),
                                                   "bytes-already-processed"));
  bytes_left = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (transaction),
                                                   "bytes-left-to-process"));

  bytes_done_this_time = io_func (arguments->fd,
                                  arguments->buffer + bytes_done,
                                  bytes_left);
  if (bytes_done_this_time < 0)
    {
      GError *error;

      if ((errno == EINTR) || (errno == EAGAIN))
        {
          return POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
        }

      error = g_error_new_literal (G_FILE_ERROR,
                                   g_file_error_from_errno (errno),
                                   g_strerror (errno));

      pop_transaction_set_error (transaction, error);
      g_error_free (error);
      return POP_ACTION_PROCESS_STATUS_FAILED;
    }

  g_assert (bytes_done_this_time <= bytes_left);

  bytes_done += bytes_done_this_time;
  bytes_left -= bytes_done_this_time;

  g_object_set_data (G_OBJECT (transaction), "bytes-already-processed",
                     GINT_TO_POINTER (bytes_done));
  g_object_set_data (G_OBJECT (transaction), "bytes-left-to-process",
                     GINT_TO_POINTER (bytes_left));

  if (bytes_left == 0)
    {
      pop_transaction_set_result (transaction, arguments->buffer, NULL);
      return POP_ACTION_PROCESS_STATUS_SUCCEEDED;
    }

  return POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
}

static PopActionProcessStatus
process_read_action (PopTransaction       *transaction,
                     InputOutputArguments *arguments)
{
  return proces_io_action (transaction, (InputOutputFunc) read,
                           arguments, G_IO_IN);
}

static PopActionProcessStatus
process_write_action (PopTransaction       *transaction,
                      InputOutputArguments *arguments)
{
  return proces_io_action (transaction, (InputOutputFunc) write,
                           arguments, G_IO_OUT);
}

typedef struct
{
  const char *filename;
  int flags;
  mode_t mode;
} OpenArguments;

static PopActionProcessStatus
open_action (PopTransaction *transaction,
             OpenArguments  *arguments)
{
  int fd;

  fd = open (arguments->filename, arguments->flags, arguments->mode);

  if (fd < 0)
    {
      GError *error;

      if (errno == EWOULDBLOCK)
        {
          pop_transaction_wait_a_while (transaction, 500);
          return POP_ACTION_PROCESS_STATUS_NOT_FINISHED;
        }

      error = g_error_new_literal (G_FILE_ERROR,
                                   g_file_error_from_errno (errno),
                                   g_strerror (errno));

      pop_transaction_set_error (transaction, error);
      g_error_free (error);
      return POP_ACTION_PROCESS_STATUS_FAILED;
    }

  g_object_set_data (G_OBJECT (transaction), "fd", GINT_TO_POINTER (fd));
  g_object_set_data (G_OBJECT (transaction), "fd-is-set", GINT_TO_POINTER (TRUE));

  return POP_ACTION_PROCESS_STATUS_SUCCEEDED;
}

static PopActionRollbackStatus
open_action_cleanup (PopTransaction *transaction,
                     OpenArguments  *arguments)
{
  gboolean fd_is_set;
  int fd, status;

  fd_is_set = g_object_get_data (G_OBJECT (transaction), "fd-is-set");

  if (!fd_is_set)
    return POP_ACTION_ROLLBACK_STATUS_FINISHED;

  fd = g_object_get_data (G_OBJECT (transaction), "fd");

  if (fd < 0)
    {
      g_object_set_data (G_OBJECT (transaction), "fd-is-set",
                         GPOINTER_TO_INT (FALSE));
      return POP_ACTION_ROLLBACK_STATUS_FINISHED;
    }

  if ((close (fd) < 0) && (errno == EINTR))
    {
      return POP_ACTION_ROLLBACK_STATUS_NOT_FINISHED;
    }

  g_object_set_data (G_OBJECT (transaction), "fd-is-set",
                     GPOINTER_TO_INT (FALSE));

  return POP_ACTION_ROLLBACK_STATUS_FINISHED;
}


static PopActionProcessStatus
save_fd_action (PopTransaction  *transaction,
                const char      *name)
{
  int fd;

  g_return_val_if_fail (g_object_get_data (G_OBJECT (transaction),
                                           "fd-is-set"),
                        POP_ACTION_PROCESS_STATUS_FAILED);

  fd = g_object_get_data (G_OBJECT (transaction), "fd");
  g_object_set_data (G_OBJECT (transaction), name, GINT_TO_POINTER (fd));
}

static PopActionRollbackStatus
save_fd_action_cleanup (PopTransaction  *transaction,
                        const char      *name)
{
  g_return_val_if_fail (g_object_get_data (G_OBJECT (transaction),
                                           "fd-is-set"),
                        POP_ACTION_PROCESS_STATUS_FAILED);

  g_object_set_data (G_OBJECT (transaction), name, NULL);
}

static PopActionProcessStatus
open_files_action (PopTransaction  *transaction,
                   const char     **files)
{
  OpenArguments *input_file_args, *output_file_args;
  int index;

  g_return_val_if_fail (files != NULL, POP_ACTION_PROCESS_STATUS_FAILED);
  g_return_val_if_fail (g_strv_length (files) == 2, 
                        POP_ACTION_PROCESS_STATUS_FAILED);

  input_file_args = g_slice_new0 (OpenArguments);
  input_file_args->filename = g_strdup (files[0]);
  input_file_args->flags = O_RDONLY;

  pop_transaction_add_action (transaction, open_action, open_action_cleanup,
                              input_file_args);
  g_object_set_data (G_OBJECT (transaction), "input-file-args", input_file_args);

  pop_transaction_add_action (transaction, save_fd_action, save_fd_action_cleanup, 
                              "input-fd");

  output_file_args = g_slice_new0 (OpenArguments);
  output_file_args->filename = g_strdup (files[1]);
  output_file_args->flags = O_WRONLY | O_CREAT;
  output_file_args->mode = 0644;

  pop_transaction_add_action (transaction, open_action, open_action_cleanup,
                              output_file_args);
  g_object_set_data (G_OBJECT (transaction), "output-file-args", output_file_args);

  pop_transaction_add_action (transaction, save_fd_action, save_fd_action_cleanup, 
                              "output-fd");

  return POP_ACTION_PROCESS_STATUS_FINISHED;
}

static PopActionRollbackStatus
open_files_action_cleanup (PopTransaction  *transaction,
                           const char     **files)
{
  OpenArguments *input_file_args, *output_file_args;

  input_file_args = g_object_get_data (G_OBJECT (transaction),
                                       "input-file-args");
  g_slice_free (OpenArguments, input_file_args);
  g_object_set_data (G_OBJECT (transaction), "input-file-args", NULL);

  output_file_args = g_object_get_data (G_OBJECT (transaction),
                                        "output-file-args");
  g_slice_free (OpenArguments, output_file_args);
  g_object_set_data (G_OBJECT (transaction), "output-file-args", NULL);

  return POP_ACTION_ROLLBACK_STATUS_FINISHED;
}

static void
on_transaction_finish (PopTransaction       *transaction,
                       PopTransactionStatus  status,
                       gpointer              data)
{
  GMainLoop *loop;

  loop = (GMainLoop *) data;
  g_print ("transaction completed with status %d\n", status);

  g_main_loop_quit (loop);
}

int
main (int    argc,
      char **argv)
{
  GMainLoop *loop;
  PopTransaction *transaction;
  int exit_code;

  g_log_set_always_fatal (G_LOG_LEVEL_ERROR
                          | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING);

  g_type_init ();

  if (argc != 3)
    {
      g_printerr ("Usage: %s src dst\n", argv[0]);
      return 1; 
    }

  loop = g_main_loop_new (NULL, FALSE);

  transaction = pop_transaction_new ();

  g_signal_connect (G_OBJECT (transaction), "finish",
                    G_CALLBACK (on_transaction_finish),
                    loop);
  pop_transaction_add_action (transaction, open_files_action, 
                              open_files_action_cleanup,
                              argv + 1);
 
#if 0
  pop_transaction_add_action (transaction, copy_files_action, 
                              copy_files_action_cleanup, NULL);
#endif

  pop_transaction_commit (transaction);
  g_main_loop_run (loop);
  g_main_loop_unref (loop);

  g_object_unref (transaction);

  exit_code = 0;

  return exit_code;
}

#endif /* POP_TRANSACTION_ENABLE_TEST */