Skip to content

Commit

Permalink
move includes to include/osrm
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisOSRM committed Dec 20, 2013
1 parent a26d982 commit 41f3f53
Show file tree
Hide file tree
Showing 35 changed files with 398 additions and 36 deletions.
2 changes: 1 addition & 1 deletion Algorithms/DouglasPeucker.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "../DataStructures/SegmentInformation.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/assert.hpp>

Expand Down
2 changes: 1 addition & 1 deletion Algorithms/StronglyConnectedComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "../Util/SimpleLogger.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/assert.hpp>
#include <boost/filesystem.hpp>
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Coordinate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <Coordinate.h>
#include <osrm/Coordinate.h>
#include "../Util/StringUtil.h"

#include <boost/assert.hpp>
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/EdgeBasedNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "../Util/MercatorUtil.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

struct EdgeBasedNode {

Expand Down
2 changes: 1 addition & 1 deletion DataStructures/HilbertValue.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef HILBERTVALUE_H_
#define HILBERTVALUE_H_

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/integer.hpp>
#include <boost/noncopyable.hpp>
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/PhantomNodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef PHANTOMNODES_H_
#define PHANTOMNODES_H_

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include "../typedefs.h"

Expand Down
2 changes: 1 addition & 1 deletion DataStructures/QueryNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/assert.hpp>

Expand Down
2 changes: 1 addition & 1 deletion DataStructures/RawRouteData.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../DataStructures/PhantomNodes.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <limits>

Expand Down
2 changes: 1 addition & 1 deletion DataStructures/SearchEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/StringUtil.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/assert.hpp>

Expand Down
2 changes: 1 addition & 1 deletion DataStructures/SegmentInformation.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

// Struct fits everything in one cache line
struct SegmentInformation {
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/StaticRTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/TimingUtil.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/assert.hpp>
#include <boost/bind.hpp>
Expand Down
2 changes: 1 addition & 1 deletion Descriptors/BaseDescriptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/StringUtil.h"
#include "../typedefs.h"

#include <Reply.h>
#include <osrm/Reply.h>

#include <cmath>
#include <cstdio>
Expand Down
2 changes: 1 addition & 1 deletion Descriptors/DescriptionFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/SimpleLogger.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <limits>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion Extractor/ExtractorCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "ExtractionHelperFunctions.h"
#include "ExtractorCallbacks.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <cfloat>

Expand Down
2 changes: 1 addition & 1 deletion Extractor/ExtractorStructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../DataStructures/Restriction.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/regex.hpp>
Expand Down
2 changes: 1 addition & 1 deletion Extractor/PBFParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/SimpleLogger.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/foreach.hpp>
#include <boost/make_shared.hpp>
Expand Down
2 changes: 1 addition & 1 deletion Extractor/XMLParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/StringUtil.h"
#include "../typedefs.h"

#include <Coordinate.h>
#include <osrm/Coordinate.h>

#include <boost/ref.hpp>

Expand Down
84 changes: 84 additions & 0 deletions Include/osrm/Coordinate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
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 FIXED_POINT_COORDINATE_H_
#define FIXED_POINT_COORDINATE_H_

#include <iostream>

static const double COORDINATE_PRECISION = 1000000.;

struct FixedPointCoordinate {
int lat;
int lon;

FixedPointCoordinate();
explicit FixedPointCoordinate (int lat, int lon);
void Reset();
bool isSet() const;
bool isValid() const;
bool operator==(const FixedPointCoordinate & other) const;

static double ApproximateDistance(
const int lat1,
const int lon1,
const int lat2,
const int lon2
);

static double ApproximateDistance(
const FixedPointCoordinate & c1,
const FixedPointCoordinate & c2
);

static double ApproximateEuclideanDistance(
const FixedPointCoordinate & c1,
const FixedPointCoordinate & c2
);

static void convertInternalLatLonToString(
const int value,
std::string & output
);

static void convertInternalCoordinateToString(
const FixedPointCoordinate & coord,
std::string & output
);

static void convertInternalReversedCoordinateToString(
const FixedPointCoordinate & coord,
std::string & output
);
};

inline std::ostream & operator<<(std::ostream & out, const FixedPointCoordinate & c){
out << "(" << c.lat << "," << c.lon << ")";
return out;
}

#endif /* FIXED_POINT_COORDINATE_H_ */
45 changes: 45 additions & 0 deletions Include/osrm/Header.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
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 HTTP_HEADER_H
#define HTTP_HEADER_H

#include <string>

namespace http {

struct Header {
std::string name;
std::string value;
void Clear() {
name.clear();
value.clear();
}
};
}

#endif //HTTP_HEADER_H
71 changes: 71 additions & 0 deletions Include/osrm/Reply.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
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 REPLY_H
#define REPLY_H

#include "Header.h"

#include <boost/asio.hpp>

#include <vector>

namespace http {

const char okHTML[] = "";
const char badRequestHTML[] = "<html><head><title>Bad Request</title></head><body><h1>400 Bad Request</h1></body></html>";
const char internalServerErrorHTML[] = "<html><head><title>Internal Server Error</title></head><body><h1>500 Internal Server Error</h1></body></html>";
const char seperators[] = { ':', ' ' };
const char crlf[] = { '\r', '\n' };
const std::string okString = "HTTP/1.0 200 OK\r\n";
const std::string badRequestString = "HTTP/1.0 400 Bad Request\r\n";
const std::string internalServerErrorString = "HTTP/1.0 500 Internal Server Error\r\n";

class Reply {
public:
enum status_type {
ok = 200,
badRequest = 400,
internalServerError = 500
} status;


std::vector<Header> headers;
std::vector<boost::asio::const_buffer> toBuffers();
std::vector<boost::asio::const_buffer> HeaderstoBuffers();
std::vector<std::string> content;
static Reply StockReply(status_type status);
void setSize(const unsigned size);
Reply();
private:
static std::string ToString(Reply::status_type status);
boost::asio::const_buffer ToBuffer(Reply::status_type status);
};

}

#endif //REPLY_H
Loading

0 comments on commit 41f3f53

Please sign in to comment.