summaryrefslogtreecommitdiffstats
path: root/vespalib/src/apps/vespa-drop-file-from-cache/drop_file_from_cache.cpp
blob: c4129305ac113795ba9b1f21d7c1e859ebaa7ac7 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <cstdio>
#include <cerrno>
#include <cstring>
#include <fcntl.h>
#include <unistd.h>

int main(int argc, char **argv) {
    char errorBuf[200];
    if (argc != 2) {
        fprintf(stderr, "%s <filename>", argv[0]);
        return 1;
    }
    const char *fileName = argv[1];
    int fh = open(fileName, O_RDONLY);
    if (fh != -1) {
        int retval = 0;
        int err = posix_fadvise(fh, 0, 0, POSIX_FADV_DONTNEED);
        if (err != 0) {
            const char *errorString = strerror_r(errno, errorBuf, sizeof(errorBuf));
            fprintf(stderr, "posix_fadvise failed: %s", errorString);
            retval = 3;
        }
        close(fh);
        return retval;
    } else {
        const char *errorString = strerror_r(errno, errorBuf, sizeof(errorBuf));
        fprintf(stderr, "Failed opening file %s: %s", fileName, errorString);
        return 2;
    }
}