mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 11:26:26 +00:00
228 lines
5.8 KiB
C++
228 lines
5.8 KiB
C++
//# This file is a part of toml++ and is subject to the the terms of the MIT license.
|
|
//# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
|
|
//# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
|
// SPDX-License-Identifier: MIT
|
|
#pragma once
|
|
|
|
//# {{
|
|
#include "preprocessor.h"
|
|
#if !TOML_IMPLEMENTATION
|
|
#error This is an implementation-only header.
|
|
#endif
|
|
//# }}
|
|
|
|
#include "at_path.h"
|
|
#include "array.h"
|
|
#include "table.h"
|
|
TOML_DISABLE_WARNINGS;
|
|
#if TOML_INT_CHARCONV
|
|
#include <charconv>
|
|
#else
|
|
#include <sstream>
|
|
#endif
|
|
TOML_ENABLE_WARNINGS;
|
|
#include "header_start.h"
|
|
|
|
TOML_ANON_NAMESPACE_START
|
|
{
|
|
TOML_INTERNAL_LINKAGE
|
|
node* get_at_path(node & root, std::string_view path) noexcept
|
|
{
|
|
if (root.is_value()) // values don't have child nodes
|
|
return nullptr;
|
|
|
|
size_t pos = 0;
|
|
const auto end = path.length();
|
|
node* current = &root;
|
|
bool prev_was_array_indexer = false;
|
|
bool prev_was_dot = root.is_table(); // implicit '.' at the start for tables
|
|
|
|
while (pos < end && current)
|
|
{
|
|
// start of an array indexer
|
|
if (path[pos] == '[')
|
|
{
|
|
const auto current_array = current->as<array>();
|
|
if (!current_array)
|
|
return nullptr;
|
|
|
|
// get array index substring
|
|
const auto index_start = pos + 1u; // first position after '['
|
|
const auto index_end = path.find(']', index_start); // position of ']'
|
|
if (index_end == std::string_view::npos || index_end == index_start)
|
|
return nullptr;
|
|
auto index_str = path.substr(index_start, index_end - index_start);
|
|
|
|
// trim whitespace from either side of the index
|
|
const auto first_non_ws = index_str.find_first_not_of(" \t"sv);
|
|
const auto last_non_ws = index_str.find_last_not_of(" \t"sv);
|
|
if (first_non_ws == std::string_view::npos)
|
|
return nullptr;
|
|
TOML_ASSERT_ASSUME(last_non_ws != std::string_view::npos);
|
|
index_str = index_str.substr(first_non_ws, (last_non_ws - first_non_ws) + 1u);
|
|
|
|
// parse the actual array index
|
|
size_t index;
|
|
if (index_str.length() == 1u && index_str[0] >= '0' && index_str[0] <= '9')
|
|
index = static_cast<size_t>(index_str[0] - '0');
|
|
else
|
|
{
|
|
#if TOML_INT_CHARCONV
|
|
|
|
auto fc_result = std::from_chars(index_str.data(), index_str.data() + index_str.length(), index);
|
|
if (fc_result.ec != std::errc{})
|
|
return nullptr;
|
|
|
|
#else
|
|
|
|
std::stringstream ss;
|
|
ss.imbue(std::locale::classic());
|
|
ss.write(index_str.data(), static_cast<std::streamsize>(index_str.length()));
|
|
if (!(ss >> index))
|
|
return nullptr;
|
|
|
|
#endif
|
|
}
|
|
|
|
current = current_array->get(index);
|
|
pos = index_end + 1u;
|
|
prev_was_dot = false;
|
|
prev_was_array_indexer = true;
|
|
}
|
|
|
|
// start of a new table child
|
|
else if (path[pos] == '.')
|
|
{
|
|
const auto current_table = current->as<table>();
|
|
if (!current_table)
|
|
return nullptr;
|
|
|
|
// a dot immediately following another dot (or at the beginning of the string) is as if we'd asked
|
|
// for an empty child in between, e.g.
|
|
//
|
|
// foo..bar
|
|
//
|
|
// is equivalent to
|
|
//
|
|
// "foo".""."bar"
|
|
//
|
|
if (prev_was_dot)
|
|
current = current_table->get(""sv);
|
|
|
|
pos++;
|
|
prev_was_dot = true;
|
|
prev_was_array_indexer = false;
|
|
}
|
|
|
|
// some regular subkey
|
|
else
|
|
{
|
|
// get subkey text
|
|
const auto subkey_start = pos;
|
|
const auto subkey_len =
|
|
impl::min(path.find_first_of(".["sv, subkey_start + 1u), path.length()) - subkey_start;
|
|
const auto subkey = path.substr(subkey_start, subkey_len);
|
|
|
|
// a regular subkey segment immediately after an array indexer is OK if it was all whitespace, e.g.:
|
|
//
|
|
// "foo[0] .bar"
|
|
// ^^ skip this
|
|
//
|
|
// otherwise its an error (since it would have to be preceeded by a dot)
|
|
if (prev_was_array_indexer)
|
|
{
|
|
auto non_ws = subkey.find_first_not_of(" \t");
|
|
if (non_ws == std::string_view::npos)
|
|
{
|
|
pos += subkey_len;
|
|
prev_was_dot = false;
|
|
prev_was_array_indexer = false;
|
|
continue;
|
|
}
|
|
else
|
|
return nullptr;
|
|
}
|
|
|
|
const auto current_table = current->as<table>();
|
|
if (!current_table)
|
|
return nullptr;
|
|
|
|
current = current_table->get(subkey);
|
|
pos += subkey_len;
|
|
prev_was_dot = false;
|
|
prev_was_array_indexer = false;
|
|
}
|
|
}
|
|
|
|
// a dot at the end is as if we'd asked for an empty child at the end, e.g.
|
|
//
|
|
// foo.bar.
|
|
//
|
|
// is equivalent to
|
|
//
|
|
// "foo"."bar".""
|
|
//
|
|
if (current && prev_was_dot)
|
|
{
|
|
const auto current_table = current->as<table>();
|
|
if (!current_table)
|
|
return nullptr;
|
|
|
|
current = current_table->get(""sv);
|
|
}
|
|
|
|
return current;
|
|
}
|
|
|
|
#if TOML_ENABLE_WINDOWS_COMPAT
|
|
|
|
TOML_INTERNAL_LINKAGE
|
|
node* get_at_path(node & root, std::wstring_view path) noexcept
|
|
{
|
|
if (auto tbl = root.as_table(); tbl && tbl->empty())
|
|
return {};
|
|
if (auto arr = root.as_array(); arr && arr->empty())
|
|
return {};
|
|
|
|
return get_at_path(root, impl::narrow(path));
|
|
}
|
|
|
|
#endif // TOML_ENABLE_WINDOWS_COMPAT
|
|
}
|
|
|
|
TOML_ANON_NAMESPACE_END;
|
|
|
|
TOML_NAMESPACE_START
|
|
{
|
|
TOML_EXTERNAL_LINKAGE
|
|
node_view<node> at_path(node & root, std::string_view path) noexcept
|
|
{
|
|
return node_view<node>{ TOML_ANON_NAMESPACE::get_at_path(root, path) };
|
|
}
|
|
|
|
TOML_EXTERNAL_LINKAGE
|
|
node_view<const node> at_path(const node& root, std::string_view path) noexcept
|
|
{
|
|
return node_view<const node>{ TOML_ANON_NAMESPACE::get_at_path(const_cast<node&>(root), path) };
|
|
}
|
|
|
|
#if TOML_ENABLE_WINDOWS_COMPAT
|
|
|
|
TOML_EXTERNAL_LINKAGE
|
|
node_view<node> at_path(node & root, std::wstring_view path)
|
|
{
|
|
return node_view<node>{ TOML_ANON_NAMESPACE::get_at_path(root, path) };
|
|
}
|
|
|
|
TOML_EXTERNAL_LINKAGE
|
|
node_view<const node> at_path(const node& root, std::wstring_view path)
|
|
{
|
|
return node_view<const node>{ TOML_ANON_NAMESPACE::get_at_path(const_cast<node&>(root), path) };
|
|
}
|
|
|
|
#endif // TOML_ENABLE_WINDOWS_COMPAT
|
|
}
|
|
TOML_NAMESPACE_END;
|
|
|
|
#include "header_end.h"
|