2016-03-10 06:43:36 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2016, Project OSRM contributors
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
#ifndef CONTRACTOR_OPTIONS_HPP
|
|
|
|
#define CONTRACTOR_OPTIONS_HPP
|
|
|
|
|
2017-03-07 18:30:49 -05:00
|
|
|
#include "updater/updater_config.hpp"
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-01-05 10:51:13 -05:00
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace contractor
|
|
|
|
{
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
struct ContractorConfig
|
|
|
|
{
|
2017-03-07 18:30:49 -05:00
|
|
|
ContractorConfig() : requested_num_threads(0) {}
|
2015-04-24 08:51:25 -04:00
|
|
|
|
2016-01-07 13:19:55 -05:00
|
|
|
// Infer the output names from the path of the .osrm file
|
|
|
|
void UseDefaultOutputNames()
|
|
|
|
{
|
|
|
|
level_output_path = osrm_input_path.string() + ".level";
|
|
|
|
core_output_path = osrm_input_path.string() + ".core";
|
|
|
|
graph_output_path = osrm_input_path.string() + ".hsgr";
|
2017-03-07 18:30:49 -05:00
|
|
|
node_file_path = osrm_input_path.string() + ".enw";
|
|
|
|
updater_config.osrm_input_path = osrm_input_path;
|
|
|
|
updater_config.UseDefaultOutputNames();
|
2016-01-07 13:19:55 -05:00
|
|
|
}
|
|
|
|
|
2017-03-07 18:30:49 -05:00
|
|
|
updater::UpdaterConfig updater_config;
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
boost::filesystem::path osrm_input_path;
|
|
|
|
|
2015-11-09 15:14:39 -05:00
|
|
|
std::string level_output_path;
|
2015-08-08 09:28:05 -04:00
|
|
|
std::string core_output_path;
|
2015-04-24 08:51:25 -04:00
|
|
|
std::string graph_output_path;
|
2017-03-07 18:30:49 -05:00
|
|
|
|
|
|
|
std::string node_file_path;
|
|
|
|
|
2015-11-09 15:14:39 -05:00
|
|
|
bool use_cached_priority;
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
unsigned requested_num_threads;
|
2015-07-13 15:09:19 -04:00
|
|
|
|
2016-01-05 06:04:04 -05:00
|
|
|
// A percentage of vertices that will be contracted for the hierarchy.
|
|
|
|
// Offers a trade-off between preprocessing and query time.
|
|
|
|
// The remaining vertices form the core of the hierarchy
|
2015-07-13 15:09:19 -04:00
|
|
|
//(e.g. 0.8 contracts 80 percent of the hierarchy, leaving a core of 20%)
|
|
|
|
double core_factor;
|
2015-04-24 08:51:25 -04:00
|
|
|
};
|
2016-01-05 10:51:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 08:51:25 -04:00
|
|
|
#endif // EXTRACTOR_OPTIONS_HPP
|