forked from microsoft/napajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphone-book.js
40 lines (32 loc) · 1.01 KB
/
phone-book.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
const napa = require("napajs");
const store = napa.store.getOrCreate('my-phone-book');
const initialize = function () {
store.set('_loadLock', napa.sync.createLock());
}
const load_data = function () {
// load data. This function should run only once.
console.log('[load_data] loading...');
const fs = require('fs');
let phoneBookData = JSON.parse(fs.readFileSync('./phone-book-data.json').toString());
for (let name in phoneBookData) {
store.set(name, phoneBookData[name]);
}
store.set('_loaded', true);
}
let loaded = false;
const lookup = function (name) {
if (!loaded) {
const lock = store.get('_loadLock');
lock.guardSync(function() {
if (!store.get('_loaded')) {
load_data();
}
});
loaded = true;
}
return store.get(name);
};
module.exports.initialize = initialize;
module.exports.lookup = lookup;