summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/sync/repositories/uploaders/Payload.java
blob: 1ed9b57985ccf849f9e78e9ff69301ed90fea6a1 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.sync.repositories.uploaders;

import android.support.annotation.CheckResult;

import java.util.ArrayList;

/**
 * Owns per-payload record byte and recordGuid buffers.
 */
/* @ThreadSafe */
public class Payload extends BufferSizeTracker {
    // Data of outbound records.
    /* @GuardedBy("accessLock") */ private final ArrayList<byte[]> recordsBuffer = new ArrayList<>();

    // GUIDs of outbound records. Used to fail entire payloads.
    /* @GuardedBy("accessLock") */ private final ArrayList<String> recordGuidsBuffer = new ArrayList<>();

    public Payload(Object payloadLock, long maxBytes, long maxRecords) {
        super(payloadLock, maxBytes, maxRecords);
    }

    @Override
    protected boolean addAndEstimateIfFull(long recordDelta) {
        throw new UnsupportedOperationException();
    }

    @CheckResult
    protected boolean addAndEstimateIfFull(long recordDelta, byte[] recordBytes, String guid) {
        synchronized (accessLock) {
            recordsBuffer.add(recordBytes);
            recordGuidsBuffer.add(guid);
            return super.addAndEstimateIfFull(recordDelta);
        }
    }

    @Override
    protected void reset() {
        synchronized (accessLock) {
            super.reset();
            recordsBuffer.clear();
            recordGuidsBuffer.clear();
        }
    }

    protected ArrayList<byte[]> getRecordsBuffer() {
        synchronized (accessLock) {
            return new ArrayList<>(recordsBuffer);
        }
    }

    protected ArrayList<String> getRecordGuidsBuffer() {
        synchronized (accessLock) {
            return new ArrayList<>(recordGuidsBuffer);
        }
    }

    protected boolean isEmpty() {
        synchronized (accessLock) {
            return recordsBuffer.isEmpty();
        }
    }
}