Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Annotation of /trunk/src/planetsplitter.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 452 - (hide annotations) (download) (as text)
Wed Jul 14 18:00:10 2010 UTC (14 years, 8 months ago) by amb
File MIME type: text/x-csrc
File size: 10799 byte(s)
Replaced the runtime selection of slim mode / non-slim mode with compile time
selection that gives no runtime overhead but gives two executables.

1 amb 2 /***************************************
2 amb 452 $Header: /home/amb/CVS/routino/src/planetsplitter.c,v 1.75 2010-07-14 18:00:09 amb Exp $
3 amb 2
4     OSM planet file splitter.
5 amb 151
6     Part of the Routino routing software.
7 amb 2 ******************/ /******************
8 amb 326 This file Copyright 2008-2010 Andrew M. Bishop
9 amb 2
10 amb 151 This program is free software: you can redistribute it and/or modify
11     it under the terms of the GNU Affero General Public License as published by
12     the Free Software Foundation, either version 3 of the License, or
13     (at your option) any later version.
14    
15     This program is distributed in the hope that it will be useful,
16     but WITHOUT ANY WARRANTY; without even the implied warranty of
17     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18     GNU Affero General Public License for more details.
19    
20     You should have received a copy of the GNU Affero General Public License
21     along with this program. If not, see <http://www.gnu.org/licenses/>.
22 amb 2 ***************************************/
23    
24    
25     #include <stdio.h>
26     #include <stdlib.h>
27 amb 60 #include <string.h>
28 amb 330 #include <errno.h>
29 amb 2
30 amb 449 #include "types.h"
31     #include "ways.h"
32    
33 amb 199 #include "typesx.h"
34 amb 109 #include "nodesx.h"
35     #include "segmentsx.h"
36     #include "waysx.h"
37     #include "superx.h"
38 amb 449
39     #include "files.h"
40     #include "functions.h"
41     #include "functionsx.h"
42 amb 395 #include "tagging.h"
43 amb 2
44    
45 amb 395 /* Global variables */
46 amb 284
47 amb 256 /*+ The name of the temporary directory. +*/
48 amb 284 char *option_tmpdirname=NULL;
49 amb 249
50 amb 358 /*+ The amount of RAM to use for filesorting. +*/
51     size_t option_filesort_ramsize=0;
52 amb 284
53 amb 358
54 amb 342 /* Local functions */
55    
56     static void print_usage(int detail);
57    
58    
59     /*++++++++++++++++++++++++++++++++++++++
60 amb 395 The main program for the planetsplitter.
61 amb 342 ++++++++++++++++++++++++++++++++++++++*/
62    
63 amb 2 int main(int argc,char** argv)
64     {
65 amb 327 NodesX *Nodes;
66 amb 256 SegmentsX *Segments,*SuperSegments=NULL,*MergedSegments=NULL;
67 amb 327 WaysX *Ways;
68     int iteration=0,quit=0;
69     int max_iterations=10;
70 amb 395 char *dirname=NULL,*prefix=NULL,*tagging=NULL;
71 amb 327 int option_parse_only=0,option_process_only=0;
72     int option_filenames=0;
73 amb 398 int arg;
74 amb 26
75 amb 82 /* Parse the command line arguments */
76    
77 amb 327 for(arg=1;arg<argc;arg++)
78 amb 60 {
79 amb 327 if(!strcmp(argv[arg],"--help"))
80 amb 342 print_usage(1);
81 amb 358 else if(!strncmp(argv[arg],"--sort-ram-size=",16))
82     option_filesort_ramsize=atoi(&argv[arg][16]);
83 amb 327 else if(!strncmp(argv[arg],"--dir=",6))
84     dirname=&argv[arg][6];
85     else if(!strncmp(argv[arg],"--tmpdir=",9))
86     option_tmpdirname=&argv[arg][9];
87     else if(!strncmp(argv[arg],"--prefix=",9))
88     prefix=&argv[arg][9];
89     else if(!strcmp(argv[arg],"--parse-only"))
90 amb 326 option_parse_only=1;
91 amb 327 else if(!strcmp(argv[arg],"--process-only"))
92 amb 326 option_process_only=1;
93 amb 327 else if(!strncmp(argv[arg],"--max-iterations=",17))
94     max_iterations=atoi(&argv[arg][17]);
95 amb 395 else if(!strncmp(argv[arg],"--tagging=",10))
96     tagging=&argv[arg][10];
97 amb 327 else if(argv[arg][0]=='-' && argv[arg][1]=='-')
98 amb 342 print_usage(0);
99 amb 327 else
100     option_filenames++;
101 amb 60 }
102 amb 26
103 amb 395 /* Check the specified command line options */
104    
105 amb 326 if(option_parse_only && option_process_only)
106 amb 342 print_usage(0);
107 amb 326
108 amb 327 if(option_filenames && option_process_only)
109 amb 342 print_usage(0);
110 amb 327
111 amb 358 if(!option_filesort_ramsize)
112     {
113 amb 452 #if SLIM
114 amb 358 option_filesort_ramsize=64*1024*1024;
115 amb 452 #else
116 amb 358 option_filesort_ramsize=256*1024*1024;
117 amb 452 #endif
118 amb 358 }
119     else
120     option_filesort_ramsize*=1024*1024;
121    
122 amb 284 if(!option_tmpdirname)
123 amb 252 {
124     if(!dirname)
125 amb 284 option_tmpdirname=".";
126 amb 252 else
127 amb 284 option_tmpdirname=dirname;
128 amb 252 }
129    
130 amb 395 if(tagging && ExistsFile(tagging))
131     ;
132     else if(!tagging && ExistsFile(FileName(dirname,prefix,"tagging.xml")))
133     tagging=FileName(dirname,prefix,"tagging.xml");
134    
135     if(tagging && ParseXMLTaggingRules(tagging))
136     {
137     fprintf(stderr,"Error: Cannot read the tagging rules in the file '%s'.\n",tagging);
138     return(1);
139     }
140    
141     if(!tagging)
142     {
143     fprintf(stderr,"Error: Cannot run without reading some tagging rules.\n");
144     return(1);
145     }
146    
147 amb 275 /* Create new node, segment and way variables */
148 amb 82
149 amb 326 Nodes=NewNodeList(option_parse_only||option_process_only);
150 amb 275
151 amb 326 Segments=NewSegmentList(option_parse_only||option_process_only);
152 amb 275
153 amb 326 Ways=NewWayList(option_parse_only||option_process_only);
154 amb 26
155 amb 89 /* Parse the file */
156 amb 2
157 amb 327 if(option_filenames)
158 amb 326 {
159 amb 327 for(arg=1;arg<argc;arg++)
160     {
161     FILE *file;
162    
163     if(argv[arg][0]=='-' && argv[arg][1]=='-')
164     continue;
165    
166     file=fopen(argv[arg],"rb");
167    
168     if(!file)
169     {
170 amb 330 fprintf(stderr,"Cannot open file '%s' for reading [%s].\n",argv[arg],strerror(errno));
171 amb 327 exit(EXIT_FAILURE);
172     }
173    
174     printf("\nParse OSM Data [%s]\n==============\n\n",argv[arg]);
175     fflush(stdout);
176    
177 amb 398 if(ParseOSM(file,Nodes,Segments,Ways))
178 amb 395 exit(EXIT_FAILURE);
179 amb 327
180     fclose(file);
181     }
182     }
183     else if(!option_process_only)
184     {
185 amb 326 printf("\nParse OSM Data\n==============\n\n");
186     fflush(stdout);
187 amb 2
188 amb 398 if(ParseOSM(stdin,Nodes,Segments,Ways))
189 amb 395 exit(EXIT_FAILURE);
190 amb 326 }
191 amb 80
192 amb 326 if(option_parse_only)
193     {
194     FreeNodeList(Nodes,1);
195     FreeSegmentList(Segments,1);
196     FreeWayList(Ways,1);
197    
198     return(0);
199     }
200    
201 amb 229 /* Process the data */
202    
203     printf("\nProcess OSM Data\n================\n\n");
204 amb 227 fflush(stdout);
205 amb 8
206 amb 275 /* Sort the nodes, segments and ways */
207 amb 263
208     SortNodeList(Nodes);
209    
210 amb 275 SortSegmentList(Segments);
211 amb 80
212 amb 256 SortWayList(Ways);
213 amb 87
214 amb 279 /* Remove bad segments (must be after sorting the nodes and segments) */
215 amb 247
216 amb 256 RemoveBadSegments(Nodes,Segments);
217 amb 87
218 amb 247 /* Remove non-highway nodes (must be after removing the bad segments) */
219 amb 66
220 amb 256 RemoveNonHighwayNodes(Nodes,Segments);
221 amb 247
222 amb 279 /* Measure the segments and replace node/way id with index (must be after removing non-highway nodes) */
223 amb 247
224 amb 279 UpdateSegments(Segments,Nodes,Ways);
225 amb 66
226    
227 amb 258 /* Repeated iteration on Super-Nodes and Super-Segments */
228 amb 58
229     do
230     {
231 amb 229 printf("\nProcess Super-Data (iteration %d)\n================================%s\n\n",iteration,iteration>9?"=":"");
232 amb 227 fflush(stdout);
233 amb 80
234 amb 90 if(iteration==0)
235     {
236     /* Select the super-nodes */
237 amb 58
238 amb 256 ChooseSuperNodes(Nodes,Segments,Ways);
239 amb 58
240 amb 90 /* Select the super-segments */
241 amb 58
242 amb 256 SuperSegments=CreateSuperSegments(Nodes,Segments,Ways,iteration);
243 amb 90 }
244     else
245     {
246 amb 97 SegmentsX *SuperSegments2;
247 amb 58
248 amb 90 /* Select the super-nodes */
249    
250 amb 256 ChooseSuperNodes(Nodes,SuperSegments,Ways);
251 amb 90
252     /* Select the super-segments */
253    
254 amb 256 SuperSegments2=CreateSuperSegments(Nodes,SuperSegments,Ways,iteration);
255 amb 90
256 amb 282 if(SuperSegments->xnumber==SuperSegments2->xnumber)
257 amb 104 quit=1;
258    
259 amb 326 FreeSegmentList(SuperSegments,0);
260 amb 90
261 amb 97 SuperSegments=SuperSegments2;
262 amb 90 }
263    
264 amb 275 /* Sort the super-segments */
265 amb 58
266 amb 275 SortSegmentList(SuperSegments);
267 amb 58
268 amb 229 /* Remove duplicated super-segments */
269    
270 amb 279 DeduplicateSegments(SuperSegments,Nodes,Ways);
271 amb 229
272 amb 89 iteration++;
273 amb 58
274 amb 89 if(iteration>max_iterations)
275     quit=1;
276     }
277     while(!quit);
278 amb 58
279 amb 229 /* Combine the super-segments */
280    
281     printf("\nCombine Segments and Super-Segments\n===================================\n\n");
282 amb 227 fflush(stdout);
283 amb 58
284 amb 104 /* Merge the super-segments */
285    
286 amb 256 MergedSegments=MergeSuperSegments(Segments,SuperSegments);
287 amb 104
288 amb 326 FreeSegmentList(Segments,0);
289 amb 256
290 amb 326 FreeSegmentList(SuperSegments,0);
291 amb 58
292 amb 256 Segments=MergedSegments;
293 amb 90
294 amb 275 /* Rotate segments so that node1<node2 */
295 amb 256
296 amb 275 RotateSegments(Segments);
297 amb 256
298 amb 275 /* Sort the segments */
299 amb 258
300 amb 275 SortSegmentList(Segments);
301 amb 258
302 amb 275 /* Remove duplicated segments */
303    
304 amb 279 DeduplicateSegments(Segments,Nodes,Ways);
305 amb 275
306 amb 229 /* Cross reference the nodes and segments */
307 amb 90
308 amb 229 printf("\nCross-Reference Nodes and Segments\n==================================\n\n");
309     fflush(stdout);
310 amb 90
311 amb 212 /* Sort the node list geographically */
312 amb 209
313 amb 256 SortNodeListGeographically(Nodes);
314 amb 212
315     /* Create the real segments and nodes */
316    
317 amb 256 CreateRealNodes(Nodes,iteration);
318 amb 212
319 amb 256 CreateRealSegments(Segments,Ways);
320 amb 209
321 amb 104 /* Fix the segment and node indexes */
322    
323 amb 256 IndexNodes(Nodes,Segments);
324 amb 104
325 amb 256 IndexSegments(Segments,Nodes);
326 amb 104
327 amb 229 /* Output the results */
328    
329     printf("\nWrite Out Database Files\n========================\n\n");
330     fflush(stdout);
331    
332 amb 89 /* Write out the nodes */
333 amb 58
334 amb 256 SaveNodeList(Nodes,FileName(dirname,prefix,"nodes.mem"));
335 amb 95
336 amb 326 FreeNodeList(Nodes,0);
337 amb 226
338 amb 89 /* Write out the segments */
339 amb 58
340 amb 256 SaveSegmentList(Segments,FileName(dirname,prefix,"segments.mem"));
341 amb 58
342 amb 326 FreeSegmentList(Segments,0);
343 amb 226
344 amb 89 /* Write out the ways */
345 amb 58
346 amb 398 SaveWayList(Ways,FileName(dirname,prefix,"ways.mem"));
347 amb 58
348 amb 326 FreeWayList(Ways,0);
349 amb 226
350 amb 2 return(0);
351     }
352 amb 342
353    
354     /*++++++++++++++++++++++++++++++++++++++
355     Print out the usage information.
356    
357     int detail The level of detail to use - 0 = low, 1 = high.
358     ++++++++++++++++++++++++++++++++++++++*/
359    
360     static void print_usage(int detail)
361     {
362     fprintf(stderr,
363     "Usage: planetsplitter [--help]\n"
364     " [--dir=<dirname>] [--prefix=<name>]\n"
365 amb 452 " [--sort-ram-size=<size>]\n"
366 amb 358 " [--tmpdir=<dirname>]\n"
367 amb 342 " [--parse-only | --process-only]\n"
368     " [--max-iterations=<number>]\n"
369 amb 395 " [--tagging=<filename>]\n"
370 amb 342 " [<filename.osm> ...]\n");
371    
372     if(detail)
373     fprintf(stderr,
374     "\n"
375     "--help Prints this information.\n"
376     "\n"
377     "--dir=<dirname> The directory containing the routing database.\n"
378     "--prefix=<name> The filename prefix for the routing database.\n"
379     "\n"
380 amb 358 "--sort-ram-size=<size> The amount of RAM (in MB) to use for data sorting\n"
381 amb 452 #if SLIM
382     " (defaults to 64MB otherwise.)\n"
383     #else
384     " (defaults to 256MB otherwise.)\n"
385     #endif
386 amb 342 "--tmpdir=<dirname> The directory name for temporary files.\n"
387 amb 358 " (defaults to the '--dir' option directory.)\n"
388 amb 342 "\n"
389     "--parse-only Parse the input OSM files and store the results.\n"
390     "--process-only Process the stored results from previous option.\n"
391     "\n"
392     "--max-iterations=<number> The number of iterations for finding super-nodes.\n"
393     "\n"
394 amb 395 "--tagging=<filename> The name of the XML file containing the tagging rules\n"
395     " (defaults to 'tagging.xml' with '--dirname' and\n"
396     " '--prefix' options).\n"
397     "\n"
398 amb 358 "<filename.osm> ... The name(s) of the file(s) to process (by default\n"
399     " data is read from standard input).\n"
400 amb 342 "\n"
401     "<transport> defaults to all but can be set to:\n"
402     "%s"
403     "\n"
404     "<highway> can be selected from:\n"
405     "%s"
406     "\n"
407     "<property> can be selected from:\n"
408     "%s",
409     TransportList(),HighwayList(),PropertyList());
410    
411     exit(!detail);
412     }

Properties

Name Value
cvs:description Planet file splitter.