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/filedumper.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 449 - (hide annotations) (download) (as text)
Mon Jul 12 17:59:42 2010 UTC (14 years, 8 months ago) by amb
File MIME type: text/x-csrc
File size: 22841 byte(s)
Create a files.h header and put some of the most heavily used files.c functions
into it and make them inline.

1 amb 2 /***************************************
2 amb 449 $Header: /home/amb/CVS/routino/src/filedumper.c,v 1.44 2010-07-12 17:59:41 amb Exp $
3 amb 2
4     Memory file dumper.
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 107 #include <string.h>
28 amb 185 #include <sys/stat.h>
29     #include <sys/time.h>
30     #include <time.h>
31 amb 2
32 amb 97 #include "types.h"
33     #include "nodes.h"
34     #include "segments.h"
35     #include "ways.h"
36 amb 449
37     #include "files.h"
38     #include "visualiser.h"
39 amb 405 #include "xmlparse.h"
40 amb 2
41 amb 405
42 amb 185 /* Local functions */
43 amb 2
44 amb 202 static void print_node(Nodes* nodes,index_t item);
45     static void print_segment(Segments *segments,index_t item);
46     static void print_way(Ways *ways,index_t item);
47 amb 185
48 amb 405 static void print_head_osm(void);
49     static void print_node_osm(Nodes* nodes,index_t item);
50     static void print_segment_osm(Segments *segments,index_t item,Ways *ways);
51     static void print_tail_osm(void);
52    
53     static char *RFC822Date(time_t t);
54    
55 amb 342 static void print_usage(int detail);
56    
57    
58     /*++++++++++++++++++++++++++++++++++++++
59 amb 405 The main program for the file dumper.
60 amb 342 ++++++++++++++++++++++++++++++++++++++*/
61    
62 amb 2 int main(int argc,char** argv)
63     {
64 amb 26 Nodes *OSMNodes;
65 amb 66 Segments *OSMSegments;
66 amb 26 Ways *OSMWays;
67 amb 405 int arg;
68     char *dirname=NULL,*prefix=NULL;
69     char *nodes_filename,*segments_filename,*ways_filename;
70     int option_statistics=0;
71     int option_visualiser=0,coordcount=0;
72     double latmin=0,latmax=0,lonmin=0,lonmax=0;
73     char *option_data=NULL;
74     int option_dump=0;
75 amb 413 int option_dump_osm=0,option_no_super=0;
76 amb 13
77 amb 107 /* Parse the command line arguments */
78    
79 amb 202 for(arg=1;arg<argc;arg++)
80 amb 107 {
81 amb 202 if(!strcmp(argv[arg],"--help"))
82 amb 342 print_usage(1);
83 amb 202 else if(!strncmp(argv[arg],"--dir=",6))
84     dirname=&argv[arg][6];
85     else if(!strncmp(argv[arg],"--prefix=",9))
86     prefix=&argv[arg][9];
87 amb 405 else if(!strcmp(argv[arg],"--statistics"))
88 amb 185 option_statistics=1;
89 amb 405 else if(!strcmp(argv[arg],"--visualiser"))
90 amb 185 option_visualiser=1;
91 amb 405 else if(!strcmp(argv[arg],"--dump"))
92 amb 202 option_dump=1;
93 amb 405 else if(!strcmp(argv[arg],"--dump-osm"))
94     option_dump_osm=1;
95 amb 202 else if(!strncmp(argv[arg],"--latmin",8) && argv[arg][8]=='=')
96     {latmin=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
97     else if(!strncmp(argv[arg],"--latmax",8) && argv[arg][8]=='=')
98     {latmax=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
99     else if(!strncmp(argv[arg],"--lonmin",8) && argv[arg][8]=='=')
100     {lonmin=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
101     else if(!strncmp(argv[arg],"--lonmax",8) && argv[arg][8]=='=')
102     {lonmax=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
103     else if(!strncmp(argv[arg],"--data",6) && argv[arg][6]=='=')
104     option_data=&argv[arg][7];
105 amb 413 else if(!strcmp(argv[arg],"--no-super"))
106     option_no_super=1;
107 amb 202 else if(!strncmp(argv[arg],"--node=",7))
108     ;
109     else if(!strncmp(argv[arg],"--segment=",10))
110     ;
111     else if(!strncmp(argv[arg],"--way=",6))
112     ;
113 amb 107 else
114 amb 342 print_usage(0);
115 amb 107 }
116    
117 amb 405 if(!option_statistics && !option_visualiser && !option_dump && !option_dump_osm)
118 amb 342 print_usage(0);
119 amb 2
120 amb 329 /* Load in the data - Note: No error checking because Load*List() will call exit() in case of an error. */
121 amb 2
122 amb 185 OSMNodes=LoadNodeList(nodes_filename=FileName(dirname,prefix,"nodes.mem"));
123 amb 6
124 amb 185 OSMSegments=LoadSegmentList(segments_filename=FileName(dirname,prefix,"segments.mem"));
125 amb 99
126 amb 185 OSMWays=LoadWayList(ways_filename=FileName(dirname,prefix,"ways.mem"));
127 amb 66
128 amb 185 /* Write out the visualiser data */
129 amb 66
130 amb 185 if(option_visualiser)
131     {
132     if(coordcount!=4)
133     {
134     fprintf(stderr,"The --visualiser option must have --latmin, --latmax, --lonmin, --lonmax.\n");
135     exit(1);
136     }
137 amb 66
138 amb 185 if(!option_data)
139     {
140     fprintf(stderr,"The --visualiser option must have --data.\n");
141     exit(1);
142     }
143 amb 2
144 amb 185 if(!strcmp(option_data,"junctions"))
145     OutputJunctions(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
146     else if(!strcmp(option_data,"super"))
147     OutputSuper(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
148     else if(!strcmp(option_data,"oneway"))
149     OutputOneway(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
150     else if(!strcmp(option_data,"speed"))
151     OutputSpeedLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
152     else if(!strcmp(option_data,"weight"))
153     OutputWeightLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
154     else if(!strcmp(option_data,"height"))
155     OutputHeightLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
156     else if(!strcmp(option_data,"width"))
157     OutputWidthLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
158     else if(!strcmp(option_data,"length"))
159     OutputLengthLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
160     else
161     {
162     fprintf(stderr,"Unrecognised data option '%s' with --visualiser.\n",option_data);
163     exit(1);
164     }
165     }
166 amb 6
167 amb 185 /* Print out statistics */
168 amb 6
169 amb 185 if(option_statistics)
170     {
171     struct stat buf;
172 amb 6
173 amb 185 /* Examine the files */
174    
175     printf("Files\n");
176     printf("-----\n");
177     printf("\n");
178    
179     stat(nodes_filename,&buf);
180    
181 amb 384 printf("'%s%snodes.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
182 amb 185 printf("%s\n",RFC822Date(buf.st_mtime));
183     printf("\n");
184    
185     stat(segments_filename,&buf);
186    
187 amb 384 printf("'%s%ssegments.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
188 amb 185 printf("%s\n",RFC822Date(buf.st_mtime));
189     printf("\n");
190    
191     stat(ways_filename,&buf);
192    
193 amb 384 printf("'%s%sways.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
194 amb 185 printf("%s\n",RFC822Date(buf.st_mtime));
195     printf("\n");
196    
197     /* Examine the nodes */
198    
199     printf("Nodes\n");
200     printf("-----\n");
201     printf("\n");
202    
203 amb 232 printf("sizeof(Node) =%9d Bytes\n",sizeof(Node));
204     printf("Number =%9d\n",OSMNodes->number);
205     printf("Number(super)=%9d\n",OSMNodes->snumber);
206 amb 185 printf("\n");
207    
208     printf("Lat bins= %4d\n",OSMNodes->latbins);
209     printf("Lon bins= %4d\n",OSMNodes->lonbins);
210     printf("\n");
211    
212 amb 223 printf("Lat zero=%5d (%8.4f deg)\n",OSMNodes->latzero,radians_to_degrees(latlong_to_radians(bin_to_latlong(OSMNodes->latzero))));
213     printf("Lon zero=%5d (%8.4f deg)\n",OSMNodes->lonzero,radians_to_degrees(latlong_to_radians(bin_to_latlong(OSMNodes->lonzero))));
214 amb 185
215     /* Examine the segments */
216    
217     printf("\n");
218     printf("Segments\n");
219     printf("--------\n");
220     printf("\n");
221    
222     printf("sizeof(Segment)=%9d Bytes\n",sizeof(Segment));
223 amb 232 printf("Number(total) =%9d\n",OSMSegments->number);
224     printf("Number(super) =%9d\n",OSMSegments->snumber);
225     printf("Number(normal) =%9d\n",OSMSegments->nnumber);
226 amb 185
227     /* Examine the ways */
228    
229     printf("\n");
230     printf("Ways\n");
231     printf("----\n");
232     printf("\n");
233    
234 amb 232 printf("sizeof(Way) =%9d Bytes\n",sizeof(Way));
235     printf("Number(compacted)=%9d\n",OSMWays->number);
236     printf("Number(original) =%9d\n",OSMWays->onumber);
237 amb 202 printf("\n");
238    
239 amb 384 printf("Total names =%9ld Bytes\n",(long)buf.st_size-sizeof(Ways)-OSMWays->number*sizeof(Way));
240 amb 307 printf("\n");
241    
242     printf("Included transports: %s\n",AllowedNameList(OSMWays->allow));
243     printf("Included properties: %s\n",PropertiesNameList(OSMWays->props));
244 amb 185 }
245    
246 amb 202 /* Print out internal data */
247    
248     if(option_dump)
249     {
250     index_t item;
251    
252     for(arg=1;arg<argc;arg++)
253 amb 254 if(!strcmp(argv[arg],"--node=all"))
254 amb 202 {
255 amb 254 for(item=0;item<OSMNodes->number;item++)
256     print_node(OSMNodes,item);
257     }
258     else if(!strncmp(argv[arg],"--node=",7))
259     {
260 amb 202 item=atoi(&argv[arg][7]);
261    
262 amb 301 if(item>=0 && item<OSMNodes->number)
263     print_node(OSMNodes,item);
264     else
265     printf("Invalid node number; minimum=0, maximum=%d.\n",OSMNodes->number-1);
266 amb 202 }
267 amb 254 else if(!strcmp(argv[arg],"--segment=all"))
268     {
269     for(item=0;item<OSMSegments->number;item++)
270     print_segment(OSMSegments,item);
271     }
272 amb 202 else if(!strncmp(argv[arg],"--segment=",10))
273     {
274     item=atoi(&argv[arg][10]);
275    
276 amb 301 if(item>=0 && item<OSMSegments->number)
277     print_segment(OSMSegments,item);
278     else
279     printf("Invalid segment number; minimum=0, maximum=%d.\n",OSMSegments->number-1);
280 amb 202 }
281 amb 254 else if(!strcmp(argv[arg],"--way=all"))
282     {
283     for(item=0;item<OSMWays->number;item++)
284     print_way(OSMWays,item);
285     }
286 amb 202 else if(!strncmp(argv[arg],"--way=",6))
287     {
288     item=atoi(&argv[arg][6]);
289    
290 amb 301 if(item>=0 && item<OSMWays->number)
291     print_way(OSMWays,item);
292     else
293     printf("Invalid way number; minimum=0, maximum=%d.\n",OSMWays->number-1);
294 amb 202 }
295     }
296    
297 amb 405 /* Print out internal data in XML format */
298    
299     if(option_dump_osm)
300     {
301 amb 413 if(coordcount>0 && coordcount!=4)
302     {
303     fprintf(stderr,"The --dump-osm option must have all of --latmin, --latmax, --lonmin, --lonmax or none.\n");
304     exit(1);
305     }
306 amb 405
307     print_head_osm();
308    
309 amb 413 if(coordcount)
310     {
311     int32_t latminbin=latlong_to_bin(radians_to_latlong(latmin))-OSMNodes->latzero;
312     int32_t latmaxbin=latlong_to_bin(radians_to_latlong(latmax))-OSMNodes->latzero;
313     int32_t lonminbin=latlong_to_bin(radians_to_latlong(lonmin))-OSMNodes->lonzero;
314     int32_t lonmaxbin=latlong_to_bin(radians_to_latlong(lonmax))-OSMNodes->lonzero;
315     int latb,lonb,llbin;
316     index_t node;
317 amb 405
318 amb 413 /* Loop through all of the nodes. */
319 amb 405
320 amb 413 for(latb=latminbin;latb<=latmaxbin;latb++)
321     for(lonb=lonminbin;lonb<=lonmaxbin;lonb++)
322     {
323     llbin=lonb*OSMNodes->latbins+latb;
324    
325     if(llbin<0 || llbin>(OSMNodes->latbins*OSMNodes->lonbins))
326     continue;
327    
328     for(node=OSMNodes->offsets[llbin];node<OSMNodes->offsets[llbin+1];node++)
329     {
330     double lat=latlong_to_radians(bin_to_latlong(OSMNodes->latzero+latb)+off_to_latlong(OSMNodes->nodes[node].latoffset));
331     double lon=latlong_to_radians(bin_to_latlong(OSMNodes->lonzero+lonb)+off_to_latlong(OSMNodes->nodes[node].lonoffset));
332    
333     if(lat>latmin && lat<latmax && lon>lonmin && lon<lonmax)
334     {
335     Segment *segment;
336    
337     print_node_osm(OSMNodes,node);
338    
339     segment=FirstSegment(OSMSegments,OSMNodes,node);
340    
341     while(segment)
342     {
343     if(node>OtherNode(segment,node))
344     if(!option_no_super || IsNormalSegment(segment))
345     print_segment_osm(OSMSegments,IndexSegment(OSMSegments,segment),OSMWays);
346    
347     segment=NextSegment(OSMSegments,segment,node);
348     }
349     }
350     }
351     }
352     }
353     else
354     {
355     index_t item;
356    
357     for(item=0;item<OSMNodes->number;item++)
358     print_node_osm(OSMNodes,item);
359    
360     for(item=0;item<OSMSegments->number;item++)
361     if(!option_no_super || IsNormalSegment(LookupSegment(OSMSegments,item)))
362     print_segment_osm(OSMSegments,item,OSMWays);
363     }
364    
365 amb 405 print_tail_osm();
366     }
367    
368 amb 2 return(0);
369     }
370 amb 185
371    
372 amb 202 /*++++++++++++++++++++++++++++++++++++++
373     Print out the contents of a node from the routing database.
374    
375     Nodes *nodes The set of nodes to use.
376    
377     index_t item The node index to print.
378     ++++++++++++++++++++++++++++++++++++++*/
379    
380     static void print_node(Nodes* nodes,index_t item)
381     {
382     Node *node=LookupNode(nodes,item);
383 amb 219 double latitude,longitude;
384 amb 202
385     GetLatLong(nodes,item,&latitude,&longitude);
386    
387     printf("Node %d\n",item);
388 amb 235 printf(" firstseg=%d\n",SEGMENT(node->firstseg));
389 amb 227 printf(" latoffset=%d lonoffset=%d (latitude=%.6f longitude=%.6f)\n",node->latoffset,node->lonoffset,radians_to_degrees(latitude),radians_to_degrees(longitude));
390 amb 202 if(IsSuperNode(nodes,item))
391     printf(" Super-Node\n");
392     }
393    
394    
395     /*++++++++++++++++++++++++++++++++++++++
396     Print out the contents of a segment from the routing database.
397    
398     Segments *segments The set of segments to use.
399    
400     index_t item The segment index to print.
401     ++++++++++++++++++++++++++++++++++++++*/
402    
403     static void print_segment(Segments *segments,index_t item)
404     {
405     Segment *segment=LookupSegment(segments,item);
406    
407     printf("Segment %d\n",item);
408 amb 208 printf(" node1=%d node2=%d\n",segment->node1,segment->node2);
409 amb 202 printf(" next2=%d\n",segment->next2);
410     printf(" way=%d\n",segment->way);
411     printf(" distance=%d (%.3f km)\n",DISTANCE(segment->distance),distance_to_km(DISTANCE(segment->distance)));
412     if(IsSuperSegment(segment) && IsNormalSegment(segment))
413     printf(" Super-Segment AND normal Segment\n");
414     else if(IsSuperSegment(segment) && !IsNormalSegment(segment))
415     printf(" Super-Segment\n");
416     if(IsOnewayTo(segment,segment->node1))
417     printf(" One-Way from node2 to node1\n");
418     if(IsOnewayTo(segment,segment->node2))
419     printf(" One-Way from node1 to node2\n");
420     }
421    
422    
423     /*++++++++++++++++++++++++++++++++++++++
424     Print out the contents of a way from the routing database.
425    
426     Ways *ways The set of ways to use.
427    
428     index_t item The way index to print.
429     ++++++++++++++++++++++++++++++++++++++*/
430    
431     static void print_way(Ways *ways,index_t item)
432     {
433     Way *way=LookupWay(ways,item);
434    
435     printf("Way %d\n",item);
436 amb 411 printf(" name=%s\n",WayNameHighway(ways,way));
437 amb 202 printf(" type=%02x (%s%s%s)\n",way->type,HighwayName(HIGHWAY(way->type)),way->type&Way_OneWay?",One-Way":"",way->type&Way_Roundabout?",Roundabout":"");
438 amb 298 printf(" allow=%02x (%s)\n",way->allow,AllowedNameList(way->allow));
439     if(way->props)
440     printf(" props=%02x (%s)\n",way->props,PropertiesNameList(way->props));
441 amb 202 if(way->speed)
442     printf(" speed=%d (%d km/hr)\n",way->speed,speed_to_kph(way->speed));
443     if(way->weight)
444 amb 227 printf(" weight=%d (%.1f tonnes)\n",way->weight,weight_to_tonnes(way->weight));
445 amb 202 if(way->height)
446 amb 227 printf(" height=%d (%.1f m)\n",way->height,height_to_metres(way->height));
447 amb 202 if(way->width)
448 amb 227 printf(" width=%d (%.1f m)\n",way->width,width_to_metres(way->width));
449 amb 202 if(way->length)
450 amb 227 printf(" length=%d (%.1f m)\n",way->length,length_to_metres(way->length));
451 amb 202 }
452    
453    
454 amb 405 /*++++++++++++++++++++++++++++++++++++++
455     Print out a header in OSM XML format.
456     ++++++++++++++++++++++++++++++++++++++*/
457    
458     static void print_head_osm(void)
459     {
460     printf("<?xml version='1.0' encoding='UTF-8'?>\n");
461     printf("<osm version='0.6' generator='JOSM'>\n");
462     }
463    
464    
465     /*++++++++++++++++++++++++++++++++++++++
466     Print out the contents of a node from the routing database in OSM XML format.
467    
468     Nodes *nodes The set of nodes to use.
469    
470     index_t item The node index to print.
471     ++++++++++++++++++++++++++++++++++++++*/
472    
473     static void print_node_osm(Nodes* nodes,index_t item)
474     {
475     double latitude,longitude;
476    
477     GetLatLong(nodes,item,&latitude,&longitude);
478    
479     if(IsSuperNode(nodes,item))
480     {
481     printf(" <node id='%lu' lat='%.7f' lon='%.7f' version='1'>\n",(unsigned long)item+1,radians_to_degrees(latitude),radians_to_degrees(longitude));
482     printf(" <tag k='routino:super' v='yes' />\n");
483     printf(" </node>\n");
484     }
485     else
486     printf(" <node id='%lu' lat='%.7f' lon='%.7f' version='1' />\n",(unsigned long)item+1,radians_to_degrees(latitude),radians_to_degrees(longitude));
487     }
488    
489    
490     /*++++++++++++++++++++++++++++++++++++++
491     Print out the contents of a segment from the routing database as a way in OSM XML format.
492    
493     Segments *segments The set of segments to use.
494    
495     index_t item The segment index to print.
496    
497     Ways *ways The set of ways to use.
498     ++++++++++++++++++++++++++++++++++++++*/
499    
500     static void print_segment_osm(Segments *segments,index_t item,Ways *ways)
501     {
502     Segment *segment=LookupSegment(segments,item);
503     Way *way=LookupWay(ways,segment->way);
504     int i;
505    
506     printf(" <way id='%lu' version='1'>\n",(unsigned long)item+1);
507    
508     if(IsOnewayTo(segment,segment->node1))
509     {
510     printf(" <nd ref='%lu' />\n",(unsigned long)segment->node2+1);
511     printf(" <nd ref='%lu' />\n",(unsigned long)segment->node1+1);
512     }
513     else
514     {
515     printf(" <nd ref='%lu' />\n",(unsigned long)segment->node1+1);
516     printf(" <nd ref='%lu' />\n",(unsigned long)segment->node2+1);
517     }
518    
519     if(IsSuperSegment(segment))
520     printf(" <tag k='routino:super' v='yes' />\n");
521     if(IsNormalSegment(segment))
522     printf(" <tag k='routino:normal' v='yes' />\n");
523    
524     if(way->type & Way_OneWay)
525     printf(" <tag k='oneway' v='yes' />\n");
526     if(way->type & Way_Roundabout)
527     printf(" <tag k='junction' v='roundabout' />\n");
528    
529     printf(" <tag k='highway' v='%s' />\n",HighwayName(HIGHWAY(way->type)));
530    
531 amb 411 if(IsNormalSegment(segment) && WayNamed(ways,way))
532     printf(" <tag k='name' v='%s' />\n",ParseXML_Encode_Safe_XML(WayNameHighway(ways,way)));
533 amb 405
534     for(i=1;i<Transport_Count;i++)
535     if(way->allow & ALLOWED(i))
536     printf(" <tag k='%s' v='yes' />\n",TransportName(i));
537    
538     for(i=1;i<Property_Count;i++)
539     if(way->props & PROPERTIES(i))
540     printf(" <tag k='%s' v='yes' />\n",PropertyName(i));
541    
542     if(way->speed)
543     printf(" <tag k='maxspeed' v='%d' />\n",speed_to_kph(way->speed));
544    
545     if(way->weight)
546     printf(" <tag k='maxweight' v='%.1f' />\n",weight_to_tonnes(way->weight));
547     if(way->height)
548     printf(" <tag k='maxheight' v='%.1f' />\n",height_to_metres(way->height));
549     if(way->width)
550     printf(" <tag k='maxwidth' v='%.1f' />\n",width_to_metres(way->width));
551     if(way->length)
552     printf(" <tag k='maxlength' v='%.1f' />\n",length_to_metres(way->length));
553    
554     printf(" </way>\n");
555     }
556    
557    
558     /*++++++++++++++++++++++++++++++++++++++
559     Print out a tail in OSM XML format.
560     ++++++++++++++++++++++++++++++++++++++*/
561    
562     static void print_tail_osm(void)
563     {
564     printf("</osm>\n");
565     }
566    
567    
568     /*+ Conversion from time_t to date string (day of week). +*/
569 amb 185 static const char* const weekdays[7]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
570    
571 amb 405 /*+ Conversion from time_t to date string (month of year). +*/
572 amb 185 static const char* const months[12]={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
573    
574    
575     /*++++++++++++++++++++++++++++++++++++++
576     Convert the time into an RFC 822 compliant date.
577    
578     char *RFC822Date Returns a pointer to a fixed string containing the date.
579    
580     time_t t The time.
581     ++++++++++++++++++++++++++++++++++++++*/
582    
583     static char *RFC822Date(time_t t)
584     {
585     static char value[32];
586     char weekday[4];
587     char month[4];
588     struct tm *tim;
589    
590     tim=gmtime(&t);
591    
592     strcpy(weekday,weekdays[tim->tm_wday]);
593     strcpy(month,months[tim->tm_mon]);
594    
595     /* Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123 */
596    
597     sprintf(value,"%3s, %02d %3s %4d %02d:%02d:%02d %s",
598     weekday,
599     tim->tm_mday,
600     month,
601     tim->tm_year+1900,
602     tim->tm_hour,
603     tim->tm_min,
604     tim->tm_sec,
605     "GMT"
606     );
607    
608     return(value);
609     }
610 amb 342
611    
612     /*++++++++++++++++++++++++++++++++++++++
613     Print out the usage information.
614    
615     int detail The level of detail to use - 0 = low, 1 = high.
616     ++++++++++++++++++++++++++++++++++++++*/
617    
618     static void print_usage(int detail)
619     {
620     fprintf(stderr,
621     "Usage: filedumper [--help]\n"
622     " [--dir=<dirname>] [--prefix=<name>]\n"
623     " [--statistics]\n"
624     " [--visualiser --latmin=<latmin> --latmax=<latmax>\n"
625     " --lonmin=<lonmin> --lonmax=<lonmax>\n"
626     " --data=<data-type>]\n"
627     " [--dump [--node=<node> ...]\n"
628     " [--segment=<segment> ...]\n"
629 amb 405 " [--way=<way> ...]]\n"
630 amb 413 " [--dump-osm [--no-super]\n"
631     " [--latmin=<latmin> --latmax=<latmax>\n"
632     " --lonmin=<lonmin> --lonmax=<lonmax>]]\n");
633 amb 342
634     if(detail)
635     fprintf(stderr,
636     "\n"
637     "--help Prints this information.\n"
638     "\n"
639     "--dir=<dirname> The directory containing the routing database.\n"
640     "--prefix=<name> The filename prefix for the routing database.\n"
641     "\n"
642     "--statistics Print statistics about the routing database.\n"
643     "\n"
644     "--visualiser Extract selected data from the routing database:\n"
645     " --latmin=<latmin> * the minimum latitude (degrees N).\n"
646     " --latmax=<latmax> * the maximum latitude (degrees N).\n"
647     " --lonmin=<lonmin> * the minimum longitude (degrees E).\n"
648     " --lonmax=<lonmax> * the maximum longitude (degrees E).\n"
649     " --data=<data-type> * the type of data to select.\n"
650     "\n"
651     " <data-type> can be selected from:\n"
652     " junctions = segment count at each junction.\n"
653     " super = super-node and super-segments.\n"
654     " oneway = oneway segments.\n"
655     " speed = speed limits.\n"
656     " weight = weight limits.\n"
657     " height = height limits.\n"
658     " width = width limits.\n"
659     " length = length limits.\n"
660     "\n"
661     "--dump Dump selected contents of the database.\n"
662     " --node=<node> * the node with the selected number.\n"
663     " --segment=<segment> * the segment with the selected number.\n"
664 amb 405 " --way=<way> * the way with the selected number.\n"
665     " Use 'all' instead of a number to get all of them.\n"
666     "\n"
667 amb 413 "--dump-osm Dump all or part of the database as an XML file.\n"
668     " --no-super * exclude the super-segments.\n"
669     " --latmin=<latmin> * the minimum latitude (degrees N).\n"
670     " --latmax=<latmax> * the maximum latitude (degrees N).\n"
671     " --lonmin=<lonmin> * the minimum longitude (degrees E).\n"
672     " --lonmax=<lonmax> * the maximum longitude (degrees E).\n");
673 amb 342
674     exit(!detail);
675     }

Properties

Name Value
cvs:description Test program for mmap files.