-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
138 lines (122 loc) · 4.3 KB
/
index.js
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
const AStarPath = require('./astar');
const betterSqlite3 = require('better-sqlite3');
const fs = require('fs');
const { pathToGeoJson, pathTo, getLineString, nodeToGeoJsonFeaturePoint, graphToGeoJson } = require('./path-geojson-utils');
const perf = require('execution-time')(console.log);
const Graph = require('./graph');
const NodeFactoryDB = require('./nodefactory-db');
const NodeFactory = require('./nodefactory');
const readline = require('readline');
const Node = require('./node');
(async () => {
function progressChecker(currentNode){
alternatives.push(getLineString(pathTo(currentNode)));
}
/*Database Instance, Graph and NodeFactory*/
console.log('Loading DB');
perf.start();
const partialGraph = new Graph();
const db = betterSqlite3('./database.sqlite');
const nodeFactoryDB = new NodeFactoryDB(partialGraph, db);//*/
perf.stop();
let startingNodeId = 240949599;
let uabCRMNodeId = 319306117;
let sevillaNodeId = 195977239;
console.log('Start node to UAB CRM');
perf.start();
let alternatives = [];
let path1 = AStarPath(
startingNodeId,
uabCRMNodeId,
nodeFactoryDB,
progressChecker
);
perf.stop();
/* Graph from file Solution*/
//const graph = await retrieveGraphFromFile(/*'./nodes.json'*/);
console.log('Loading bin File');
perf.start();
const graph = await retrieveGraphFromBinaryFile('./nodes.bin');
const nodeFactory = new NodeFactory(graph);//*/
perf.stop();
writeResults(path1, alternatives);
console.log('Start node to Sevilla');
perf.start();
alternatives = [];
let path2 = AStarPath(
startingNodeId,
sevillaNodeId,
nodeFactory,
progressChecker
);
perf.stop();
writeResults(path2, /*alternatives*/);
})();
function writeResults(path, alternatives, graph){
let nameResult = new Date().toISOString()+'.json';
fs.writeFileSync("./runs/" + nameResult, JSON.stringify(pathToGeoJson(path, alternatives),null,4));
//fs.writeFileSync("./runs/graph" + nameResult, JSON.stringify(graphToGeoJson(graph), null, 4));
}
async function retrieveGraphFromFile(file) {
const nodes = [];
const fileStream = fs.createReadStream(file);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity
});
for await (const line of rl) {
// Each line in input.txt will be successively available here as `line`.
let record = JSON.parse(line);
nodes.push(new Node(record.id, record.name, record.latitude, record.longitude, record.successors));
}
return nodes;
}
function retrieveGraphFromBinaryFile(file){
return new Promise((resolve, reject) => {
fs.readFile(file, function(err, data) {
let offset = 0;
let graph = [];
for ( let j = 0; j <= 23895680; j++ ){
let read = nodeFromBuffer(data, offset);
offset = read.offset;
graph.push(read.node);
}
resolve(graph);
});
});
}
function nodeFromBuffer(buffer, offset = 0){
let localOffset = 13;
let id = buffer.readUInt32BE(offset);
let name = null;
let latitude = buffer.readFloatBE(offset +4);
let longitude = buffer.readFloatBE(offset + 8);
let sc = buffer.readUInt8(offset + 12);
let successors = [...Array(sc).keys()].map( i => buffer.readUInt32BE( offset+ i * 4 + localOffset));
return {
node: new Node(id, name, latitude, longitude, successors),
offset: offset + localOffset + sc * 4
};
}
function retrieveGraphFromFile(file) {
const nodes = [];
const fileStream = fs.createReadStream(file);
const es = require('event-stream');
return new Promise((resolve, reject)=> {
fileStream
.pipe(es.split())
.pipe(es.mapSync((line) => {
if (line.length){
let record = JSON.parse(line);
nodes.push(new Node(record.id, record.name, record.latitude, record.longitude, record.successors));
}
}))
.on('error', function(err) {
console.log('Error while reading file.', err);
reject();
})
.on('end', function() {
resolve(nodes);
})
});
}