summaryrefslogtreecommitdiff
path: root/navit/maptool/ch.c
blob: 29c3f81ee01c1d9df95e4f3333521f94e4f4dbcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2011 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

#include <math.h>
#include <stdlib.h>
#include "maptool.h"
#include "coord.h"
#include "file.h"
#include "debug.h"

#if GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 10
#define g_slice_alloc0 g_malloc0
#define g_slice_new(x) g_new(x,1)
#define g_slice_new0(x) g_new0(x,1)
#define g_slice_free(x,y) g_free(y)
#define g_slice_free1(x,y) g_free(y)
#endif

struct ch_edge {
    int flags;
    int weight;
    struct item_id target,middle;
};

struct node {
    int first_edge;
    int dummy;
} *nodes;
int node_count;

struct edge {
    unsigned target:26;
    unsigned scedge1:6;
    unsigned weight:28;
    unsigned type:2;
    unsigned flags:2;
    unsigned int edge_count;
    unsigned scedge2:6;
    unsigned scmiddle:26;
} *edges;

int edge_count;

struct newnode {
    int newnode;
} *newnodes;

int newnode_count;

GHashTable *newnode_hash;

struct edge_hash_item {
    int first,last;
};


GHashTable *edge_hash;

struct file *sgr,*ddsg_node_index;

struct coord *node_index;

GHashTable *sgr_nodes_hash;

static int ch_levels=14;

static int road_speed(enum item_type type) {
    switch (type) {
    case type_street_0:
    case type_street_1_city:
    case type_living_street:
    case type_street_service:
    case type_track_gravelled:
    case type_track_unpaved:
        return 10;
    case type_street_2_city:
    case type_track_paved:
        return 30;
    case type_street_3_city:
        return 40;
    case type_street_4_city:
        return 50;
    case type_highway_city:
        return 80;
    case type_street_1_land:
        return 60;
    case type_street_2_land:
        return 65;
    case type_street_3_land:
        return 70;
    case type_street_4_land:
        return 80;
    case type_street_n_lanes:
        return 120;
    case type_highway_land:
        return 120;
    case type_ramp:
        return 40;
    case type_roundabout:
        return 10;
    case type_ferry:
        return 40;
    default:
        return 0;
    }
}

static void coord_slice_free(void *data) {
    g_slice_free(struct coord, data);
}


static GHashTable *coord_hash_new(void) {
    return g_hash_table_new_full(coord_hash, coord_equal, coord_slice_free, NULL);
}

static void item_id_slice_free(void *data) {
    g_slice_free(struct item_id, data);
}

static void add_node_to_hash(FILE *idx, GHashTable *hash, struct coord *c, int *nodes) {
    if (! g_hash_table_lookup(hash, c)) {
        struct coord *ct=g_slice_new(struct coord);
        *ct=*c;
        fwrite(c, sizeof(*c), 1, idx);
        (*nodes)++;
        g_hash_table_insert(hash, ct, GINT_TO_POINTER(*nodes));
    }

}

static void edge_hash_slice_free(void *data) {
    g_slice_free(struct edge_hash_item, data);
}

static guint edge_hash_hash(gconstpointer key) {
    const struct edge_hash_item *itm=key;
    return itm->first*2654435761UL+itm->last;
}

static gboolean edge_hash_equal(gconstpointer a, gconstpointer b) {
    const struct edge_hash_item *itm_a=a;
    const struct edge_hash_item *itm_b=b;
    return (itm_a->first == itm_b->first && itm_a->last == itm_b->last);
}



static void ch_generate_ddsg(FILE *in, FILE *ref, FILE *idx, FILE *ddsg) {
    GHashTable *hash=coord_hash_new();
    struct item_bin *ib;
    int nodes=0,edges=0;

    while ((ib=read_item(in))) {
        int ccount=ib->clen/2;
        struct coord *c=(struct coord *)(ib+1);
        if (road_speed(ib->type)) {
            add_node_to_hash(idx, hash, &c[0], &nodes);
            add_node_to_hash(idx, hash, &c[ccount-1], &nodes);
            edges++;
        }
    }
    edge_hash=g_hash_table_new_full(edge_hash_hash, edge_hash_equal, edge_hash_slice_free, item_id_slice_free);
    fseek(in, 0, SEEK_SET);
    fprintf(ddsg,"d\n");
    fprintf(ddsg,"%d %d\n", nodes, edges);
    while ((ib=read_item(in))) {
        int i,ccount=ib->clen/2;
        struct coord *c=(struct coord *)(ib+1);
        int n1,n2,speed=road_speed(ib->type);
        struct item_id road_id;
        double l;

        if (fread(&road_id, sizeof(road_id), 1, ref) == 0) {
            dbg(lvl_warning, "fread failed");
            continue;
        }
        if (speed) {
            struct edge_hash_item *hi=g_slice_new(struct edge_hash_item);
            struct item_id *id=g_slice_new(struct item_id);
            *id=road_id;
            dbg_assert((n1=GPOINTER_TO_INT(g_hash_table_lookup(hash, &c[0]))) != 0);
            dbg_assert((n2=GPOINTER_TO_INT(g_hash_table_lookup(hash, &c[ccount-1]))) != 0);
            l=0;
            for (i = 0 ; i < ccount-1 ; i++) {
                l+=sqrt(sq(c[i+1].x-c[i].x)+sq(c[i+1].y-c[i].y));
            }
            fprintf(ddsg,"%d %d %d 0\n", n1-1, n2-1, (int)(l*36/speed));
            hi->first=n1-1;
            hi->last=n2-1;
            g_hash_table_insert(edge_hash, hi, id);
        }
    }
    g_hash_table_destroy(hash);
}

static void ch_generate_sgr(char *suffix) {
#ifndef HAVE_API_WIN32_CE
    char command[1024];
    int system_result;
    sprintf(command,
            "./contraction-hierarchies-20080621/main -s -p -f ddsg_%s.tmp -o hcn_%s.tmp -l hcn_log_%s.tmp -x 190 -y 1 -e 600 -p 1000 -k 1,3.3,2,10,3,10,5",
            suffix,suffix,suffix);
    printf("%s\n",command);
    system_result = system(command);
    if (system_result == -1) {
        dbg(lvl_warning, "Running main failed");
    }
    sprintf(command,
            "./contraction-hierarchies-20080621/main -c -f ddsg_%s.tmp -h hcn_%s.tmp -k 1,3.3,2,10,3,10,5 -C ch_%s.tmp -O 1 -z sgr_%s.tmp",
            suffix,suffix,suffix,suffix);
    printf("%s\n",command);
    system_result = system(command);
    if (system_result == -1) {
        dbg(lvl_warning, "Running main failed");
    }
#endif
}

static void ch_process_node(FILE *out, int node, int resolve) {
    int first_edge_id=nodes[node].first_edge;
    int last_edge_id=nodes[node+1].first_edge;
    int edge_id;
    struct ch_edge ch_edge;
    struct item_bin *item_bin;
    struct edge_hash_item fwd,rev;
    int oldnode;
    memset(&ch_edge, 0, sizeof(ch_edge));
    item_bin=init_item(type_ch_node);
    oldnode=GPOINTER_TO_INT(g_hash_table_lookup(newnode_hash, GINT_TO_POINTER(node)));
    item_bin_add_coord(item_bin, &node_index[oldnode], 1);
    fwd.first=oldnode;
    rev.last=oldnode;
    for (edge_id = first_edge_id ; edge_id < last_edge_id ; edge_id++) {
        if (resolve)  {
            struct edge *edge=&edges[edge_id];
            int oldnode=GPOINTER_TO_INT(g_hash_table_lookup(newnode_hash, GINT_TO_POINTER((int)edge->target)));
            struct item_id *id;
            ch_edge.weight=edge->weight;
            fwd.last=oldnode;
            rev.first=oldnode;
            ch_edge.flags=edge->flags & 3;
            if (edge->scmiddle == 67108863) {
                id=g_hash_table_lookup(edge_hash, &fwd);
                if (!id) {
                    ch_edge.flags|=8;
                    id=g_hash_table_lookup(edge_hash, &rev);
                }
                if (id == NULL) {
                    fprintf(stderr,"Shortcut %d Weight %d\n",edge->scmiddle,edge->weight);
                    fprintf(stderr,"Neither %d-%d nor %d-%d exists\n",fwd.first,fwd.last,rev.first,rev.last);
                    exit(1);
                } else {
                    ch_edge.middle=*id;
                }
            } else {
                ch_edge.flags|=4;
                id=g_hash_table_lookup(sgr_nodes_hash, GINT_TO_POINTER((int)edge->scmiddle));
                dbg_assert(id != NULL);
                ch_edge.middle=*id;
            }
            id=g_hash_table_lookup(sgr_nodes_hash, GINT_TO_POINTER((int)edge->target));
            if (id == NULL) {
                fprintf(stderr,"Failed to look up target %d\n",edge->target);
            } else {
                ch_edge.target=*id;
            }
        }
        item_bin_add_attr_data(item_bin,attr_ch_edge,&ch_edge,sizeof(ch_edge));
    }
    item_bin_write(item_bin, out);
}

static void ch_process_nodes(FILE *out, int pos, int count, int resolve) {
    int i;
    printf("count %d sum=%d newnode_count=%d\n",count,pos,newnode_count);
    for (i = 0 ; i < count ; i++)
        ch_process_node(out, pos+i, resolve);
}


static void ch_process(FILE **files, int depth, int resolve) {
    int count=newnode_count;
    int pos=0;

    while (depth > 0 && pos < newnode_count) {
        count=(count+1)/2;
        ch_process_nodes(files[depth], pos, count, resolve);
        pos+=count;
        depth--;
    }
    ch_process_nodes(files[depth], pos, newnode_count-pos, resolve);
}

static void ch_setup(char *suffix) {
    int i;
    if (!sgr) {
        int *data,size,offset=0;
        char *filename=tempfile_name(suffix,"sgr");
        printf("filename=%s\n",filename);
        sgr=file_create(filename,0);
        g_free(filename);
        dbg_assert(sgr != NULL);
        file_mmap(sgr);

        size=sizeof(int);
        data=(int *)file_data_read(sgr, offset, size);
        node_count=*data;
        offset+=size;

        size=node_count*sizeof(struct node);
        nodes=(struct node *)file_data_read(sgr, offset, size);
        offset+=size;

        size=sizeof(int);
        data=(int *)file_data_read(sgr, offset, size);
        edge_count=*data;
        offset+=size;

        size=edge_count*sizeof(struct edge);
        edges=(struct edge *)file_data_read(sgr, offset, size);
        offset+=size;

        size=sizeof(int);
        data=(int *)file_data_read(sgr, offset, size);
        newnode_count=*data;
        offset+=size;

        size=edge_count*sizeof(struct newnode);
        newnodes=(struct newnode *)file_data_read(sgr, offset, size);
        offset+=size;

        newnode_hash=g_hash_table_new(NULL, NULL);

        for (i = 0 ; i < newnode_count ; i++) {
            g_hash_table_insert(newnode_hash, GINT_TO_POINTER(newnodes[i].newnode), GINT_TO_POINTER(i));
        }
    }
    if (!ddsg_node_index) {
        char *filename=tempfile_name(suffix,"ddsg_coords");
        ddsg_node_index=file_create(filename,0);
        g_free(filename);
        dbg_assert(ddsg_node_index != NULL);
        file_mmap(ddsg_node_index);
        node_index=(struct coord *)file_data_read(ddsg_node_index, 0, file_size(ddsg_node_index));
    }
}

static void ch_create_tempfiles(char *suffix, FILE **files, int count, int mode) {
    char name[256];
    int i;

    for (i = 0 ; i <= count ; i++) {
        sprintf(name,"graph_%d",i);
        files[i]=tempfile(suffix, name, mode);
    }
}

static void ch_close_tempfiles(FILE **files, int count) {
    int i;

    for (i = 0 ; i <= count ; i++) {
        fclose(files[i]);
    }
}

#if 0
static void ch_remove_tempfiles(char *suffix, int count) {
    char name[256];
    int i;

    for (i = 0 ; i <= count ; i++) {
        sprintf(name,"graph_%d",i);
        tempfile_unlink(suffix, name);
    }
}
#endif

static void ch_copy_to_tiles(char *suffix, int count, struct tile_info *info, FILE *ref) {
    char name[256];
    int i;
    FILE *f;
    struct item_bin *item_bin;

    for (i = count ; i >= 0 ; i--) {
        sprintf(name,"graph_%d",i);
        f=tempfile(suffix, name, 0);
        while ((item_bin = read_item(f))) {
            tile_write_item_minmax(info, item_bin, ref, i, i);
        }
        fclose(f);
    }
}

void ch_generate_tiles(char *map_suffix, char *suffix, FILE *tilesdir_out, struct zip_info *zip_info) {
    struct tile_info info;
    FILE *in,*ref,*ddsg_coords,*ddsg;
    FILE **graphfiles;
    info.write=0;
    info.maxlen=0;
    info.suffix=suffix;
    info.tiles_list=NULL;
    info.tilesdir_out=tilesdir_out;
    graphfiles=g_alloca(sizeof(FILE*)*(ch_levels+1));

    ch_create_tempfiles(suffix, graphfiles, ch_levels, 1);
    in=tempfile(map_suffix,"ways_split",0);
    ref=tempfile(map_suffix,"ways_split_ref",0);
    ddsg_coords=tempfile(suffix,"ddsg_coords",1);
    ddsg=tempfile(suffix,"ddsg",1);
    ch_generate_ddsg(in, ref, ddsg_coords, ddsg);
    fclose(in);
    fclose(ref);
    fclose(ddsg_coords);
    fclose(ddsg);
    ch_generate_sgr(suffix);
    ch_setup(suffix);
    ch_process(graphfiles, ch_levels, 0);
    ch_close_tempfiles(graphfiles, ch_levels);

    tile_hash=g_hash_table_new(g_str_hash, g_str_equal);
    ch_copy_to_tiles(suffix, ch_levels, &info, NULL);
    merge_tiles(&info);

    write_tilesdir(&info, zip_info, tilesdir_out);
}

void ch_assemble_map(char *map_suffix, char *suffix, struct zip_info *zip_info) {
    struct tile_info info;
    struct tile_head *th;
    FILE **graphfiles=g_alloca(sizeof(FILE*)*(ch_levels+1));
    FILE *ref;
    struct item_id id;
    int nodeid=0;

    info.write=1;
    info.maxlen=zip_get_maxnamelen(zip_info);
    info.suffix=suffix;
    info.tiles_list=NULL;
    info.tilesdir_out=NULL;
    ref=tempfile(suffix,"sgr_ref",1);

    create_tile_hash();

    th=tile_head_root;
    while (th) {
        th->zip_data=NULL;
        th->process=1;
        th=th->next;
    }

    ch_setup(suffix);
    ch_copy_to_tiles(suffix, ch_levels, &info, ref);
    fclose(ref);
    ref=tempfile(suffix,"sgr_ref",0);
    sgr_nodes_hash=g_hash_table_new_full(NULL, NULL, NULL, item_id_slice_free);
    while (fread(&id, sizeof(id), 1, ref)) {
        struct item_id *id2=g_slice_new(struct item_id);
        *id2=id;
        g_hash_table_insert(sgr_nodes_hash, GINT_TO_POINTER(nodeid), id2);
        nodeid++;
    }
    th=tile_head_root;
    while (th) {
        th->zip_data=g_malloc(th->total_size);
        th->total_size_used=0;
        th=th->next;
    }
    ch_create_tempfiles(suffix, graphfiles, ch_levels, 1);
    ch_process(graphfiles, ch_levels, 1);
    ch_close_tempfiles(graphfiles, ch_levels);

    g_hash_table_destroy(newnode_hash);
    g_hash_table_destroy(edge_hash);
    g_hash_table_destroy(sgr_nodes_hash);

    ch_copy_to_tiles(suffix, ch_levels, &info, NULL);
    write_tilesdir(&info, zip_info, NULL);

    th=tile_head_root;
    while (th) {
        if (th->name[0]) {
            if (th->total_size != th->total_size_used) {
                fprintf(stderr,"Size error '%s': %d vs %d\n", th->name, th->total_size, th->total_size_used);
                exit(1);
            }
            write_zipmember(zip_info, th->name, zip_get_maxnamelen(zip_info), th->zip_data, th->total_size);
        } else {
            fwrite(th->zip_data, th->total_size, 1, zip_get_index(zip_info));
        }
        g_free(th->zip_data);
        th=th->next;
    }
}