This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
file_data_source.js
192 lines (170 loc) · 5.49 KB
/
file_data_source.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
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
const fs = require('fs'),
dataKind = require('./versioned_data_kind'),
loggers = require('./loggers');
let yamlAvailable;
let yamlParser;
/*
FileDataSource provides a way to use local files as a source of feature flag state, instead of
connecting to LaunchDarkly. This would typically be used in a test environment.
See documentation in index.d.ts.
*/
function FileDataSource(options) {
if (yamlAvailable === undefined) {
try {
const yaml = require('yaml');
yamlAvailable = true;
yamlParser = yaml.parse;
} catch (err) {
yamlAvailable = false;
}
}
// If the yaml package is available, we can use its parser for all files because
// every valid JSON document is also a valid YAML document.
const parseData = yamlAvailable ? yamlParser : JSON.parse;
const paths = (options && options.paths) || [];
const autoUpdate = !!options.autoUpdate;
return config => {
const logger = options.logger || config.logger || loggers.nullLogger();
const featureStore = config.featureStore;
const timestamps = {};
let watchers = [];
let pendingUpdate = false;
let inited = false;
function getFileTimestampPromise(path) {
return new Promise((resolve, reject) => {
fs.stat(path, (err, stat) => {
if (err) {
reject(err);
} else {
resolve(stat.mtimeMs || stat.mtime); // mtimeMs isn't always available; either of these values will work for us
}
});
});
}
function loadFilePromise(path, allDataIn) {
const allData = allDataIn;
return new Promise((resolve, reject) =>
fs.readFile(path, 'utf8', (err, data) => (err ? reject(err) : resolve(data)))
)
.then(data => {
const parsed = parseData(data) || {};
const addItem = (kind, item) => {
if (!allData[kind.namespace]) {
allData[kind.namespace] = {};
}
if (allData[kind.namespace][item.key]) {
throw new Error('found duplicate key: "' + item.key + '"');
} else {
allData[kind.namespace][item.key] = item;
}
};
Object.keys(parsed.flags || {}).forEach(key => {
addItem(dataKind.features, parsed.flags[key]);
});
Object.keys(parsed.flagValues || {}).forEach(key => {
addItem(dataKind.features, makeFlagWithValue(key, parsed.flagValues[key]));
});
Object.keys(parsed.segments || {}).forEach(key => {
addItem(dataKind.segments, parsed.segments[key]);
});
logger.info('Loaded flags from ' + path);
})
.then(() => getFileTimestampPromise(path))
.then(timestamp => {
timestamps[path] = timestamp;
});
}
function loadAllPromise() {
pendingUpdate = false;
const allData = {};
let p = Promise.resolve();
for (let i = 0; i < paths.length; i++) {
(path => {
p = p
.then(() => loadFilePromise(path, allData))
.catch(e => {
throw new Error('Unable to load flags: ' + e + ' [' + path + ']');
});
})(paths[i]);
}
return p.then(() => initStorePromise(allData));
}
function initStorePromise(data) {
return new Promise(resolve =>
featureStore.init(data, () => {
inited = true;
resolve();
})
);
}
function makeFlagWithValue(key, value) {
return {
key: key,
on: true,
fallthrough: { variation: 0 },
variations: [value],
};
}
function maybeReloadForPath(path) {
if (pendingUpdate) {
return; // coalesce updates so we don't do multiple reloads if a whole set of files was just updated
}
const reload = () => {
loadAllPromise()
.then(() => {
logger.warn('Reloaded flags from file data');
})
.catch(() => {});
};
getFileTimestampPromise(path)
.then(timestamp => {
// We do this check of the modified time because there's a known issue with fs.watch()
// reporting multiple changes when really the file has only changed once.
if (timestamp !== timestamps[path]) {
pendingUpdate = true;
setTimeout(reload, 10);
// The 10ms delay above is arbitrary - we just don't want to have the number be zero,
// because in a case where multiple fs.watch events are fired off one after another,
// we want the reload to happen only after all of the event handlers have executed.
}
})
.catch(() => {
logger.warn('Unexpected error trying to get timestamp of file: ' + path);
});
}
function startWatching() {
paths.forEach(path => {
const watcher = fs.watch(path, { persistent: false }, () => {
maybeReloadForPath(path);
});
watchers.push(watcher);
});
}
function stopWatching() {
watchers.forEach(w => w.close());
watchers = [];
}
const fds = {};
fds.start = fn => {
const cb = fn || (() => {});
if (autoUpdate) {
startWatching();
}
loadAllPromise().then(
() => cb(),
err => cb(err)
);
};
fds.stop = () => {
if (autoUpdate) {
stopWatching();
}
};
fds.initialized = () => inited;
fds.close = () => {
fds.stop();
};
return fds;
};
}
module.exports = FileDataSource;