aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/session/DummyTransaction.java
blob: 309031ef8093fb3fb811568e602d8a375b77969b (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.session;

import com.yahoo.transaction.Transaction;

import java.util.ArrayList;
import java.util.List;

/**
 * Dummy transaction implementation that only does stuff in memory and does not adhere to contract.
 * @author Ulf Lilleengen
 */
public class DummyTransaction implements Transaction {

    private final List<Operation> operations = new ArrayList<>();

    public interface RunnableOperation extends Operation, Runnable {
    }

    public DummyTransaction() { }

    @Override
    public Transaction add(Operation operation) {
        this.operations.add(operation);
        return this;
    }

    @Override
    public Transaction add(List<Operation> operations) {
        this.operations.addAll(operations);
        return this;
    }

    @Override
    public List<Operation> operations() { return new ArrayList<>(operations); }

    @Override
    public void prepare() { }

    @Override
    public void commit() {
        for (Operation op : operations) {
            ((RunnableOperation)op).run();
        }
    }

    @Override
    public void rollbackOrLog() {
        throw new IllegalStateException("Unexpected rollback");
    }

    @Override
    public void close() { }
}