2016-03-10 06:43:36 -05:00
|
|
|
/*
|
|
|
|
|
2017-10-02 05:28:25 -04:00
|
|
|
Copyright (c) 2017, Project OSRM contributors
|
2016-03-10 06:43:36 -05:00
|
|
|
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.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-01-07 13:19:55 -05:00
|
|
|
#ifndef EXTRACTOR_CONFIG_HPP
|
|
|
|
#define EXTRACTOR_CONFIG_HPP
|
|
|
|
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
|
|
|
|
#include <array>
|
2016-05-27 15:05:04 -04:00
|
|
|
#include <string>
|
2016-01-07 13:19:55 -05:00
|
|
|
|
2017-04-29 07:34:33 -04:00
|
|
|
#include "storage/io_config.hpp"
|
|
|
|
|
2016-01-07 13:19:55 -05:00
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace extractor
|
|
|
|
{
|
|
|
|
|
2017-04-29 07:34:33 -04:00
|
|
|
struct ExtractorConfig final : storage::IOConfig
|
2016-01-07 13:19:55 -05:00
|
|
|
{
|
2020-11-26 10:21:39 -05:00
|
|
|
ExtractorConfig() noexcept
|
|
|
|
: IOConfig(
|
|
|
|
{
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{},
|
2022-09-30 08:29:10 -04:00
|
|
|
{".osrm.nbg",
|
2020-11-26 10:21:39 -05:00
|
|
|
".osrm.restrictions",
|
|
|
|
".osrm.names",
|
|
|
|
".osrm.tls",
|
|
|
|
".osrm.tld",
|
|
|
|
".osrm.geometry",
|
|
|
|
".osrm.nbg_nodes",
|
|
|
|
".osrm.ebg_nodes",
|
|
|
|
".osrm.timestamp",
|
|
|
|
".osrm.edges",
|
|
|
|
".osrm.ebg",
|
|
|
|
".osrm.ramIndex",
|
|
|
|
".osrm.fileIndex",
|
|
|
|
".osrm.turn_duration_penalties",
|
|
|
|
".osrm.turn_weight_penalties",
|
|
|
|
".osrm.turn_penalties_index",
|
|
|
|
".osrm.enw",
|
|
|
|
".osrm.properties",
|
|
|
|
".osrm.icd",
|
|
|
|
".osrm.cnbg",
|
|
|
|
".osrm.cnbg_to_ebg",
|
2022-08-01 17:40:26 -04:00
|
|
|
".osrm.maneuver_overrides"})
|
2017-06-05 02:34:44 -04:00
|
|
|
{
|
|
|
|
}
|
2017-04-29 07:34:33 -04:00
|
|
|
|
2017-07-07 10:42:07 -04:00
|
|
|
void UseDefaultOutputNames(const boost::filesystem::path &base)
|
|
|
|
{
|
|
|
|
IOConfig::UseDefaultOutputNames(base);
|
|
|
|
}
|
|
|
|
|
2016-01-07 13:19:55 -05:00
|
|
|
boost::filesystem::path input_path;
|
|
|
|
boost::filesystem::path profile_path;
|
2017-08-18 09:27:49 -04:00
|
|
|
std::vector<boost::filesystem::path> location_dependent_data_paths;
|
2019-01-15 05:18:20 -05:00
|
|
|
std::string data_version;
|
2016-01-07 13:19:55 -05:00
|
|
|
|
2022-08-01 17:40:26 -04:00
|
|
|
unsigned requested_num_threads = 0;
|
|
|
|
unsigned small_component_size = 1000;
|
2016-01-07 13:19:55 -05:00
|
|
|
|
2022-08-01 17:40:26 -04:00
|
|
|
bool use_metadata = false;
|
|
|
|
bool parse_conditionals = false;
|
|
|
|
bool use_locations_cache = true;
|
2022-09-30 08:29:10 -04:00
|
|
|
bool dump_nbg_graph = false;
|
2016-01-07 13:19:55 -05:00
|
|
|
};
|
2020-11-26 10:21:39 -05:00
|
|
|
} // namespace extractor
|
|
|
|
} // namespace osrm
|
2016-01-07 13:19:55 -05:00
|
|
|
|
|
|
|
#endif // EXTRACTOR_CONFIG_HPP
|