aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/file/FileContentCache.java
blob: 0a081ac53b46fa27b8e5109320ad16502d76a5ab (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.file;

import java.time.Instant;
import java.util.Optional;

/**
 * Class to avoid repeated reads of file content when the file seldom changes.
 *
 * @author hakonhall
 */
class FileContentCache {
    private final UnixPath path;

    private Optional<byte[]> value = Optional.empty();
    private Optional<Instant> modifiedTime = Optional.empty();

    FileContentCache(UnixPath path) {
        this.path = path;
    }

    byte[] get(Instant lastModifiedTime) {
        if (modifiedTime.isEmpty() || lastModifiedTime.isAfter(modifiedTime.get())) {
            value = Optional.of(path.readBytes());
            modifiedTime = Optional.of(lastModifiedTime);
        }

        return value.get();
    }

    void updateWith(byte[] content, Instant modifiedTime) {
        this.value = Optional.of(content);
        this.modifiedTime = Optional.of(modifiedTime);
    }
}