summaryrefslogtreecommitdiffstats
path: root/src/file_options.cc
blob: 8d83f872547d9b5dacea5e9a42cbf5f61ac7d75d (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
 * Copyright (c) 2023, Timothy Stack
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 * * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 * * Neither the name of Timothy Stack nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "file_options.hh"

#include <fnmatch.h>

#include "base/lnav_log.hh"
#include "yajlpp/yajlpp.hh"
#include "yajlpp/yajlpp_def.hh"

namespace lnav {

static const typed_json_path_container<file_options> options_handlers = {
    yajlpp::property_handler("default-zone")
        .with_synopsis("<zone>")
        .with_description("The default zone for log messages if the timestamp "
                          "does not include a zone.")
        .with_example("America/Los_Angeles")
        .for_field(&file_options::fo_default_zone),
};

static const typed_json_path_container<file_options_collection>
    pattern_to_options_handlers = {
        yajlpp::pattern_property_handler("(?<path>[^/]+)")
            .with_description("Path or glob pattern")
            .with_children(options_handlers)
            .for_field(&file_options_collection::foc_pattern_to_options),
};

static const typed_json_path_container<file_options_collection>
    collection_handlers = {
        yajlpp::property_handler("paths")
            .with_description("Mapping of file paths or glob patterns to the "
                              "associated options")
            .with_children(pattern_to_options_handlers),
};

bool
file_options::operator==(const lnav::file_options& rhs) const
{
    return this->fo_default_zone.pp_value == rhs.fo_default_zone.pp_value;
}

json_string
file_options::to_json_string() const
{
    return options_handlers.to_json_string(*this);
}

Result<file_options_collection, std::vector<lnav::console::user_message>>
file_options_collection::from_json(intern_string_t src,
                                   const string_fragment& frag)
{
    return collection_handlers.parser_for(src).of(frag);
}

std::string
file_options_collection::to_json() const
{
    return collection_handlers.formatter_for(*this)
        .with_config(yajl_gen_beautify, true)
        .to_string();
}

nonstd::optional<std::pair<std::string, file_options>>
file_options_collection::match(const std::string& path) const
{
    auto iter = this->foc_pattern_to_options.find(path);
    if (iter != this->foc_pattern_to_options.end()) {
        return *iter;
    }

    for (const auto& pair : this->foc_pattern_to_options) {
        auto rc = fnmatch(pair.first.c_str(), path.c_str(), FNM_PATHNAME);

        if (rc == 0) {
            return pair;
        }
        if (rc != FNM_NOMATCH) {
            log_error("fnmatch('%s', '%s') failed -- %s",
                      pair.first.c_str(),
                      path.c_str(),
                      strerror(errno));
        }
    }

    return nonstd::nullopt;
}

nonstd::optional<std::pair<std::string, file_options>>
file_options_hier::match(const ghc::filesystem::path& path) const
{
    static const auto ROOT_PATH = ghc::filesystem::path("/");

    auto lookup_path = path.parent_path();

    while (true) {
        const auto iter = this->foh_path_to_collection.find(lookup_path);
        if (iter != this->foh_path_to_collection.end()) {
            return iter->second.match(path.string());
        }

        auto next_lookup_path = lookup_path.parent_path();
        if (lookup_path == next_lookup_path) {
            if (lookup_path != ROOT_PATH) {
                // remote paths won't end with root, so try that
                next_lookup_path = ROOT_PATH;
            } else {
                break;
            }
        }
        lookup_path = next_lookup_path;
    }
    return nonstd::nullopt;
}

}  // namespace lnav