2 * Simple transactions API
4 * Copyright (c) 2021 Virtuozzo International GmbH.
7 * Sementsov-Ogievskiy Vladimir <vsementsov@virtuozzo.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
25 #include "qemu/transactions.h"
26 #include "qemu/queue.h"
28 typedef struct TransactionAction
{
29 TransactionActionDrv
*drv
;
31 QSLIST_ENTRY(TransactionAction
) entry
;
35 QSLIST_HEAD(, TransactionAction
) actions
;
38 Transaction
*tran_new(void)
40 Transaction
*tran
= g_new(Transaction
, 1);
42 QSLIST_INIT(&tran
->actions
);
47 void tran_add(Transaction
*tran
, TransactionActionDrv
*drv
, void *opaque
)
49 TransactionAction
*act
;
51 act
= g_new(TransactionAction
, 1);
52 *act
= (TransactionAction
) {
57 QSLIST_INSERT_HEAD(&tran
->actions
, act
, entry
);
60 void tran_abort(Transaction
*tran
)
62 TransactionAction
*act
, *next
;
64 QSLIST_FOREACH(act
, &tran
->actions
, entry
) {
65 if (act
->drv
->abort
) {
66 act
->drv
->abort(act
->opaque
);
70 QSLIST_FOREACH_SAFE(act
, &tran
->actions
, entry
, next
) {
71 if (act
->drv
->clean
) {
72 act
->drv
->clean(act
->opaque
);
81 void tran_commit(Transaction
*tran
)
83 TransactionAction
*act
, *next
;
85 QSLIST_FOREACH(act
, &tran
->actions
, entry
) {
86 if (act
->drv
->commit
) {
87 act
->drv
->commit(act
->opaque
);
91 QSLIST_FOREACH_SAFE(act
, &tran
->actions
, entry
, next
) {
92 if (act
->drv
->clean
) {
93 act
->drv
->clean(act
->opaque
);