-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlisting-8.2.js
54 lines (48 loc) · 1.46 KB
/
listing-8.2.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
"use strict";
const openCsvInputStream = require('./toolkit/open-csv-input-stream');
const openMongodbOutputStream = require('./toolkit/open-mongodb-output-stream');
const MongoClient = require('mongodb').MongoClient;
const hostName = "mongodb://127.0.0.1:6000";
const databaseName = "weather_stations";
const collectionName = "daily_readings";
const inputFilePath = "./data/weather-stations.csv";
//
// Open the connection to the database.
//
function openDatabase () {
return MongoClient.connect(hostName)
.then(client => {
const db = client.db(databaseName);
const collection = db.collection(collectionName);
return {
collection: collection,
close: () => {
return client.close();
},
};
});
};
function streamData (inputFilePath, dbCollection) {
return new Promise((resolve, reject) => {
openCsvInputStream(inputFilePath)
.pipe(openMongodbOutputStream(dbCollection))
.on("finish", () => {
resolve();
})
.on("error", err => {
reject(err);
});
});
}
openDatabase()
.then(client => {
return streamData(inputFilePath, client.collection)
.then(() => client.close());
})
.then(() => {
console.log("Done");
})
.catch(err => {
console.error("An error occurred.");
console.error(err);
});