summaryrefslogtreecommitdiff
path: root/hscript/key.cc
blob: 49d095e1bf4660287c542f5e9e23603016dbd8f8 (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
/*
 * key.cc - Implementation of common routines for the base Key classes
 * libhscript, the HorizonScript library for
 * Project Horizon
 *
 * Copyright (c) 2019-2020 Adélie Linux and contributors.  All rights reserved.
 * This code is licensed under the AGPL 3.0 license, as noted in the
 * LICENSE-code file in the root directory of this repository.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

#include <algorithm>
#include "key.hh"
#include "util/output.hh"


Horizon::Keys::Key::~Key() {
}

bool Horizon::Keys::BooleanKey::parse(const std::string &what,
                                      const ScriptLocation &where,
                                      const std::string &key, bool *out) {
    std::string lower(what.size(), 0);
    std::transform(what.begin(), what.end(), lower.begin(), ::tolower);

    if(lower == "true" || lower == "yes" || lower == "1") {
        *out = true;
    } else if(lower == "false" || lower == "no" || lower == "0") {
        *out = false;
    } else {
        output_error(where, key + ": expected 'true' or 'false'",
                     "'" + what + "' is not a valid Boolean value");
        return false;
    }
    return true;
}

bool Horizon::Keys::BooleanKey::validate() const {
    /* Key will fail init if it is not valid, so this is always a no-op. */
    return true;
}

bool Horizon::Keys::StringKey::validate() const {
    /* Key will fail init if it is not valid, so this is always a no-op. */
    return true;
}