Routino SVN Repository Browser

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

ViewVC logotype

Contents of /trunk/src/waysx.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1151 - (show annotations) (download) (as text)
Sun Nov 18 17:24:50 2012 UTC (12 years, 4 months ago) by amb
File MIME type: text/x-chdr
File size: 4498 byte(s)
Using --parse-only and --preserve must sort the data so that it is ready to
apply the changes.

1 /***************************************
2 A header file for the extended Ways structure.
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 WAYSX_H
24 #define WAYSX_H /*+ To stop multiple inclusions. +*/
25
26 #include <stdint.h>
27
28 #include "types.h"
29
30 #include "typesx.h"
31 #include "ways.h"
32
33 #include "files.h"
34
35
36 /* Data structures */
37
38
39 /*+ An extended structure containing a single way. +*/
40 struct _WayX
41 {
42 way_t id; /*+ The way identifier; initially the OSM value, later the Way index. +*/
43
44 Way way; /*+ The real way data. +*/
45 };
46
47
48 /*+ A structure containing a set of ways (memory format). +*/
49 struct _WaysX
50 {
51 char *filename; /*+ The name of the intermediate file (for the WaysX). +*/
52 char *filename_tmp; /*+ The name of the temporary file (for the WaysX). +*/
53
54 int fd; /*+ The file descriptor of the open file (for the WaysX). +*/
55
56 index_t number; /*+ The number of extended ways still being considered. +*/
57
58 #if !SLIM
59
60 WayX *data; /*+ The extended ways data (when mapped into memory). +*/
61
62 #else
63
64 WayX cached[3]; /*+ Three cached extended ways read from the file in slim mode. +*/
65 index_t incache[3]; /*+ The indexes of the cached extended ways. +*/
66
67 #endif
68
69 index_t inumber; /*+ The number of extended way IDs in the idata array. +*/
70 way_t *idata; /*+ The extended way IDs (sorted by ID). +*/
71
72 index_t *cdata; /*+ The compacted way IDs (same order as sorted ways). +*/
73
74 char *nfilename_tmp; /*+ The name of the temporary file (for the WaysX names). +*/
75
76 int nfd; /*+ The file descriptor of the temporary file (for the WaysX names). +*/
77
78 uint32_t nlength; /*+ The length of the string of name entries. +*/
79 };
80
81
82 /* Functions in waysx.c */
83
84
85 WaysX *NewWayList(int append,int readonly,int index);
86 void FreeWayList(WaysX *waysx,int preserve);
87
88 void AppendWay(WaysX *waysx,way_t id,Way *way,const char *name);
89 void FinishWayList(WaysX *waysx);
90
91 void SaveWayList(WaysX *waysx,const char *filename);
92
93 index_t IndexWayX(WaysX *waysx,way_t id);
94
95 void SortWayList(WaysX *waysx);
96
97 void ExtractWayNames(WaysX *waysx,int preserve);
98
99 void CompactWayList(WaysX *waysx,SegmentsX *segmentsx);
100
101
102 /* Macros / inline functions */
103
104 #if !SLIM
105
106 #define LookupWayX(waysx,index,position) &(waysx)->data[index]
107
108 #define PutBackWayX(waysx,wayx) /* nop */
109
110 #else
111
112 static WayX *LookupWayX(WaysX *waysx,index_t index,int position);
113
114 static void PutBackWayX(WaysX *waysx,WayX *wayx);
115
116
117 /*++++++++++++++++++++++++++++++++++++++
118 Lookup a particular extended way with the specified id from the file on disk.
119
120 WayX *LookupWayX Returns a pointer to a cached copy of the extended way.
121
122 WaysX *waysx The set of ways to use.
123
124 index_t index The way index to look for.
125
126 int position The position in the cache to use.
127 ++++++++++++++++++++++++++++++++++++++*/
128
129 static inline WayX *LookupWayX(WaysX *waysx,index_t index,int position)
130 {
131 SeekReadFile(waysx->fd,&waysx->cached[position-1],sizeof(WayX),(off_t)index*sizeof(WayX));
132
133 waysx->incache[position-1]=index;
134
135 return(&waysx->cached[position-1]);
136 }
137
138
139 /*++++++++++++++++++++++++++++++++++++++
140 Put back an extended way's data into the file on disk.
141
142 WaysX *waysx The set of ways to use.
143
144 WayX *wayx The extended way to be put back.
145 ++++++++++++++++++++++++++++++++++++++*/
146
147 static inline void PutBackWayX(WaysX *waysx,WayX *wayx)
148 {
149 int position1=wayx-&waysx->cached[0];
150
151 SeekWriteFile(waysx->fd,&waysx->cached[position1],sizeof(WayX),(off_t)waysx->incache[position1]*sizeof(WayX));
152 }
153
154 #endif /* SLIM */
155
156
157 #endif /* WAYSX_H */

Properties

Name Value
cvs:description Extended ways header.