72bf4547d4
* Clean up workbench and integrate initialization data * Uncomment Electron fill * Run server & client together * Clean up Electron fill & patch * Bind fs methods This makes them usable with the promise form: `promisify(access)(...)`. * Add space between tag and title to browser logger * Add typescript dep to server and default __dirname for path * Serve web files from server * Adjust some dev options * Rework workbench a bit to use a class and catch unexpected errors * No mkdirs for now, fix util fill, use bash with exec * More fills, make general client abstract * More fills * Fix cp.exec * Fix require calls in fs fill being aliased * Create data and storage dir * Implement fs.watch Using exec for now. * Implement storage database fill * Fix os export and homedir * Add comment to use navigator.sendBeacon * Fix fs callbacks (some args are optional) * Make sure data directory exists when passing it back * Update patch * Target es5 * More fills * Add APIs required for bootstrap-fork to function (#15) * Add bootstrap-fork execution * Add createConnection * Bundle bootstrap-fork into cli * Remove .node directory created from spdlog * Fix npm start * Remove unnecessary comment * Add webpack-hot-middleware if CLI env is not set * Add restarting to shared process * Fix starting with yarn
79 lines
2.0 KiB
TypeScript
79 lines
2.0 KiB
TypeScript
import { readFile, writeFile } from "fs";
|
|
import { promisify } from "util";
|
|
import { Event } from "vs/base/common/event";
|
|
import * as storage from "vs/base/node/storage";
|
|
|
|
export class StorageDatabase implements storage.IStorageDatabase {
|
|
|
|
public readonly onDidChangeItemsExternal = Event.None;
|
|
private items = new Map<string, string>();
|
|
private fetched: boolean = false;
|
|
|
|
public constructor(private readonly path: string) {
|
|
window.addEventListener("unload", () => {
|
|
if (!navigator.sendBeacon) {
|
|
throw new Error("cannot save state");
|
|
}
|
|
// TODO: Need to use navigator.sendBeacon instead of the web socket, or we
|
|
// need to save when there is a change. Should we save as a sqlite3
|
|
// database instead of JSON? Could send to the server the way the global
|
|
// storage works. Or maybe fill `vscode-sqlite3` to do that.
|
|
this.save();
|
|
});
|
|
}
|
|
|
|
public async getItems(): Promise<Map<string, string>> {
|
|
if (this.fetched) {
|
|
return this.items;
|
|
}
|
|
try {
|
|
const contents = await promisify(readFile)(this.path, "utf8");
|
|
const json = JSON.parse(contents);
|
|
Object.keys(json).forEach((key) => {
|
|
this.items.set(key, json[key]);
|
|
});
|
|
} catch (error) {
|
|
if (error.code && error.code !== "ENOENT") {
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
this.fetched = true;
|
|
|
|
return this.items;
|
|
}
|
|
|
|
public updateItems(request: storage.IUpdateRequest): Promise<void> {
|
|
if (request.insert) {
|
|
request.insert.forEach((value, key) => this.items.set(key, value));
|
|
}
|
|
|
|
if (request.delete) {
|
|
request.delete.forEach(key => this.items.delete(key));
|
|
}
|
|
|
|
return Promise.resolve();
|
|
}
|
|
|
|
public close(): Promise<void> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
public checkIntegrity(): Promise<string> {
|
|
return Promise.resolve("ok");
|
|
}
|
|
|
|
private save(): Promise<void> {
|
|
const json: { [key: string]: string } = {};
|
|
this.items.forEach((value, key) => {
|
|
json[key] = value;
|
|
});
|
|
|
|
return promisify(writeFile)(this.path, JSON.stringify(json));
|
|
}
|
|
|
|
}
|
|
|
|
// @ts-ignore
|
|
storage.SQLiteStorageDatabase = StorageDatabase;
|