reorder includes to cut compile time
This commit is contained in:
parent
015b29e8a3
commit
19285d61ab
@ -27,6 +27,29 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#include "OSRM.h"
|
#include "OSRM.h"
|
||||||
|
|
||||||
|
#include "../Plugins/HelloWorldPlugin.h"
|
||||||
|
#include "../Plugins/LocatePlugin.h"
|
||||||
|
#include "../Plugins/NearestPlugin.h"
|
||||||
|
#include "../Plugins/TimestampPlugin.h"
|
||||||
|
#include "../Plugins/ViaRoutePlugin.h"
|
||||||
|
|
||||||
|
|
||||||
|
#include "../Server/DataStructures/InternalDataFacade.h"
|
||||||
|
#include "../Server/DataStructures/SharedDataFacade.h"
|
||||||
|
// #include "../Util/InputFileUtil.h"
|
||||||
|
// #include "../Util/OSRMException.h"
|
||||||
|
// #include "../Util/SimpleLogger.h"
|
||||||
|
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
// #include <boost/filesystem.hpp>
|
||||||
|
// #include <boost/foreach.hpp>
|
||||||
|
// #include <boost/interprocess/shared_memory_object.hpp>
|
||||||
|
// #include <boost/interprocess/mapped_region.hpp>
|
||||||
|
// #include <boost/interprocess/sync/scoped_lock.hpp>
|
||||||
|
// #include <boost/shared_ptr.hpp>
|
||||||
|
// #include <boost/thread.hpp>
|
||||||
|
|
||||||
|
// #include <vector>
|
||||||
OSRM::OSRM( const ServerPaths & server_paths, const bool use_shared_memory )
|
OSRM::OSRM( const ServerPaths & server_paths, const bool use_shared_memory )
|
||||||
:
|
:
|
||||||
use_shared_memory(use_shared_memory)
|
use_shared_memory(use_shared_memory)
|
||||||
|
@ -28,32 +28,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#ifndef OSRM_H
|
#ifndef OSRM_H
|
||||||
#define OSRM_H
|
#define OSRM_H
|
||||||
|
|
||||||
|
#include "../DataStructures/QueryEdge.h"
|
||||||
#include "../Plugins/BasePlugin.h"
|
#include "../Plugins/BasePlugin.h"
|
||||||
#include "../Plugins/HelloWorldPlugin.h"
|
#include "../Server/Http/Reply.h"
|
||||||
#include "../Plugins/LocatePlugin.h"
|
|
||||||
#include "../Plugins/NearestPlugin.h"
|
|
||||||
#include "../Plugins/TimestampPlugin.h"
|
|
||||||
#include "../Plugins/ViaRoutePlugin.h"
|
|
||||||
#include "../Server/DataStructures/BaseDataFacade.h"
|
|
||||||
#include "../Server/DataStructures/InternalDataFacade.h"
|
|
||||||
#include "../Server/DataStructures/SharedBarriers.h"
|
|
||||||
#include "../Server/DataStructures/SharedDataFacade.h"
|
|
||||||
#include "../Server/DataStructures/RouteParameters.h"
|
#include "../Server/DataStructures/RouteParameters.h"
|
||||||
#include "../Util/InputFileUtil.h"
|
#include "../Server/DataStructures/SharedBarriers.h"
|
||||||
#include "../Util/OSRMException.h"
|
#include "../Server/DataStructures/BaseDataFacade.h"
|
||||||
#include "../Util/SimpleLogger.h"
|
#include "../Util/ServerPaths.h"
|
||||||
|
|
||||||
#include <boost/assert.hpp>
|
|
||||||
#include <boost/filesystem.hpp>
|
|
||||||
#include <boost/foreach.hpp>
|
|
||||||
#include <boost/interprocess/shared_memory_object.hpp>
|
|
||||||
#include <boost/interprocess/mapped_region.hpp>
|
|
||||||
#include <boost/interprocess/sync/scoped_lock.hpp>
|
|
||||||
#include <boost/noncopyable.hpp>
|
#include <boost/noncopyable.hpp>
|
||||||
#include <boost/shared_ptr.hpp>
|
|
||||||
#include <boost/thread.hpp>
|
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
class OSRM : boost::noncopyable {
|
class OSRM : boost::noncopyable {
|
||||||
private:
|
private:
|
||||||
|
@ -29,6 +29,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#define SERVERFACTORY_H_
|
#define SERVERFACTORY_H_
|
||||||
|
|
||||||
#include "Server.h"
|
#include "Server.h"
|
||||||
|
#include "../Util/OpenMPWrapper.h"
|
||||||
#include "../Util/SimpleLogger.h"
|
#include "../Util/SimpleLogger.h"
|
||||||
#include "../Util/StringUtil.h"
|
#include "../Util/StringUtil.h"
|
||||||
|
|
||||||
@ -45,7 +46,11 @@ struct ServerFactory : boost::noncopyable {
|
|||||||
|
|
||||||
std::stringstream port_stream;
|
std::stringstream port_stream;
|
||||||
port_stream << ip_port;
|
port_stream << ip_port;
|
||||||
return new Server( ip_address, port_stream.str(), std::min( omp_get_num_procs(), threads) );
|
return new Server(
|
||||||
|
ip_address,
|
||||||
|
port_stream.str(),
|
||||||
|
std::min( omp_get_num_procs(), threads)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -26,6 +26,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../Library/OSRM.h"
|
#include "../Library/OSRM.h"
|
||||||
|
#include "../Util/GitDescription.h"
|
||||||
|
#include "../Util/ProgramOptions.h"
|
||||||
#include "../Util/SimpleLogger.h"
|
#include "../Util/SimpleLogger.h"
|
||||||
|
|
||||||
#include <boost/property_tree/ptree.hpp>
|
#include <boost/property_tree/ptree.hpp>
|
||||||
|
@ -30,6 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#include "GitDescription.h"
|
#include "GitDescription.h"
|
||||||
#include "OSRMException.h"
|
#include "OSRMException.h"
|
||||||
|
#include "ServerPaths.h"
|
||||||
#include "SimpleLogger.h"
|
#include "SimpleLogger.h"
|
||||||
|
|
||||||
#include <boost/any.hpp>
|
#include <boost/any.hpp>
|
||||||
@ -42,10 +43,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
typedef boost::unordered_map<
|
|
||||||
const std::string,
|
|
||||||
boost::filesystem::path
|
|
||||||
> ServerPaths;
|
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace filesystem {
|
namespace filesystem {
|
||||||
|
41
Util/ServerPaths.h
Normal file
41
Util/ServerPaths.h
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright (c) 2013, Project OSRM, Dennis Luxen, others
|
||||||
|
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.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SERVER_PATH_H
|
||||||
|
#define SERVER_PATH_H
|
||||||
|
|
||||||
|
#include <boost/unordered_map.hpp>
|
||||||
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
typedef boost::unordered_map<
|
||||||
|
const std::string,
|
||||||
|
boost::filesystem::path
|
||||||
|
> ServerPaths;
|
||||||
|
|
||||||
|
#endif //SERVER_PATH_H
|
Loading…
Reference in New Issue
Block a user