Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/src/nodesx.h
Parent Directory
|
Revision Log
Revision 1098 -
(show annotations)
(download)
(as text)
Sat Oct 20 12:52:01 2012 UTC (12 years, 4 months ago) by amb
File MIME type: text/x-chdr
File size: 4905 byte(s)
Sat Oct 20 12:52:01 2012 UTC (12 years, 4 months ago) by amb
File MIME type: text/x-chdr
File size: 4905 byte(s)
Delete the pruned nodes before searching for super-nodes etc.
1 | /*************************************** |
2 | A header file for the extended nodes. |
3 | |
4 | Part of the Routino routing software. |
5 | ******************/ /****************** |
6 | This file Copyright 2008-2012 Andrew M. Bishop |
7 | |
8 | This program is free software: you can redistribute it and/or modify |
9 | it under the terms of the GNU Affero General Public License as published by |
10 | the Free Software Foundation, either version 3 of the License, or |
11 | (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public License |
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 | ***************************************/ |
21 | |
22 | |
23 | #ifndef NODESX_H |
24 | #define NODESX_H /*+ To stop multiple inclusions. +*/ |
25 | |
26 | #include <stdint.h> |
27 | |
28 | #include "types.h" |
29 | #include "nodes.h" |
30 | |
31 | #include "typesx.h" |
32 | |
33 | #include "files.h" |
34 | |
35 | |
36 | /* Data structures */ |
37 | |
38 | |
39 | /*+ An extended structure used for processing. +*/ |
40 | struct _NodeX |
41 | { |
42 | node_t id; /*+ The node identifier; initially the OSM value, later the Node index, finally the first segment. +*/ |
43 | |
44 | latlong_t latitude; /*+ The node latitude. +*/ |
45 | latlong_t longitude; /*+ The node longitude. +*/ |
46 | |
47 | transports_t allow; /*+ The node allowed traffic. +*/ |
48 | |
49 | uint16_t flags; /*+ The node flags. +*/ |
50 | }; |
51 | |
52 | /*+ A structure containing a set of nodes (memory format). +*/ |
53 | struct _NodesX |
54 | { |
55 | char *filename; /*+ The name of the temporary file. +*/ |
56 | int fd; /*+ The file descriptor of the temporary file. +*/ |
57 | |
58 | index_t number; /*+ The number of extended nodes still being considered. +*/ |
59 | |
60 | #if !SLIM |
61 | |
62 | NodeX *data; /*+ The extended node data (when mapped into memory). +*/ |
63 | |
64 | #else |
65 | |
66 | NodeX cached[3]; /*+ Three cached extended nodes read from the file in slim mode. +*/ |
67 | index_t incache[3]; /*+ The indexes of the cached extended nodes. +*/ |
68 | |
69 | #endif |
70 | |
71 | node_t *idata; /*+ The extended node IDs (sorted by ID). +*/ |
72 | |
73 | index_t *pdata; /*+ The node indexes after pruning. +*/ |
74 | |
75 | index_t *gdata; /*+ The final node indexes (sorted geographically). +*/ |
76 | |
77 | BitMask *super; /*+ A bit-mask marker for super nodes (same order as sorted nodes). +*/ |
78 | |
79 | index_t latbins; /*+ The number of bins containing latitude. +*/ |
80 | index_t lonbins; /*+ The number of bins containing longitude. +*/ |
81 | |
82 | ll_bin_t latzero; /*+ The bin number of the furthest south bin. +*/ |
83 | ll_bin_t lonzero; /*+ The bin number of the furthest west bin. +*/ |
84 | }; |
85 | |
86 | |
87 | /* Functions in nodesx.c */ |
88 | |
89 | NodesX *NewNodeList(int append); |
90 | void FreeNodeList(NodesX *nodesx,int keep); |
91 | |
92 | void SaveNodeList(NodesX *nodesx,const char *filename); |
93 | |
94 | index_t IndexNodeX(NodesX *nodesx,node_t id); |
95 | |
96 | void AppendNode(NodesX *nodesx,node_t id,double latitude,double longitude,transports_t allow,uint16_t flags); |
97 | |
98 | void SortNodeList(NodesX *nodesx); |
99 | |
100 | void SortNodeListGeographically(NodesX *nodesx); |
101 | |
102 | void RemoveNonHighwayNodes(NodesX *nodesx,SegmentsX *segmentsx); |
103 | |
104 | void RemovePrunedNodes(NodesX *nodesx,SegmentsX *segmentsx); |
105 | |
106 | void UpdateNodes(NodesX *nodesx,SegmentsX *segmentsx); |
107 | |
108 | |
109 | /* Macros and inline functions */ |
110 | |
111 | #if !SLIM |
112 | |
113 | #define LookupNodeX(nodesx,index,position) &(nodesx)->data[index] |
114 | |
115 | #define PutBackNodeX(nodesx,nodex) /* nop */ |
116 | |
117 | #else |
118 | |
119 | static NodeX *LookupNodeX(NodesX *nodesx,index_t index,int position); |
120 | |
121 | static void PutBackNodeX(NodesX *nodesx,NodeX *nodex); |
122 | |
123 | |
124 | /*++++++++++++++++++++++++++++++++++++++ |
125 | Lookup a particular extended node with the specified id from the file on disk. |
126 | |
127 | NodeX *LookupNodeX Returns a pointer to a cached copy of the extended node. |
128 | |
129 | NodesX *nodesx The set of nodes to use. |
130 | |
131 | index_t index The node index to look for. |
132 | |
133 | int position The position in the cache to use. |
134 | ++++++++++++++++++++++++++++++++++++++*/ |
135 | |
136 | static inline NodeX *LookupNodeX(NodesX *nodesx,index_t index,int position) |
137 | { |
138 | SeekReadFile(nodesx->fd,&nodesx->cached[position-1],sizeof(NodeX),(off_t)index*sizeof(NodeX)); |
139 | |
140 | nodesx->incache[position-1]=index; |
141 | |
142 | return(&nodesx->cached[position-1]); |
143 | } |
144 | |
145 | |
146 | /*++++++++++++++++++++++++++++++++++++++ |
147 | Put back an extended node's data into the file on disk. |
148 | |
149 | NodesX *nodesx The set of nodes to modify. |
150 | |
151 | NodeX *nodex The extended node to be put back. |
152 | ++++++++++++++++++++++++++++++++++++++*/ |
153 | |
154 | static inline void PutBackNodeX(NodesX *nodesx,NodeX *nodex) |
155 | { |
156 | int position1=nodex-&nodesx->cached[0]; |
157 | |
158 | SeekWriteFile(nodesx->fd,&nodesx->cached[position1],sizeof(NodeX),(off_t)nodesx->incache[position1]*sizeof(NodeX)); |
159 | } |
160 | |
161 | #endif /* SLIM */ |
162 | |
163 | |
164 | #endif /* NODESX_H */ |
Properties
Name | Value |
---|---|
cvs:description | Extended nodes header. |