@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
120 lines (119 loc) • 4.92 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const ElectronFolder_1 = __importDefault(require("./ElectronFolder"));
const StorageBase_1 = __importDefault(require("./../storage/StorageBase"));
const Log_1 = __importDefault(require("../core/Log"));
const AppServiceProxy_1 = __importStar(require("../core/AppServiceProxy"));
const StorageUtilities_1 = __importDefault(require("../storage/StorageUtilities"));
class ElectronStorage extends StorageBase_1.default {
path;
name;
rootFolder;
static folderDelimiter = "/";
static electronStorages = {};
constructor(path, name) {
super();
this.path = path;
Log_1.default.assert(this.path.length > 4 && this.path.startsWith("<"), "Path is not expected:" + path);
ElectronStorage.electronStorages[this.path] = this;
this.name = name;
this.rootFolder = new ElectronFolder_1.default(this, null, path, name);
}
static async processLocalFileUpdate(path) {
for (const esPath in ElectronStorage.electronStorages) {
if (StorageUtilities_1.default.canonicalizePath(path).startsWith(StorageUtilities_1.default.canonicalizePath(esPath))) {
const es = ElectronStorage.electronStorages[esPath];
if (es) {
await es.notifyPathWasUpdatedExternal(path);
}
}
}
}
/**
* Called when a new file is detected by the Electron file watcher.
* Routes to the appropriate ElectronStorage instance.
*/
static async processLocalFileAdded(path) {
for (const esPath in ElectronStorage.electronStorages) {
if (StorageUtilities_1.default.canonicalizePath(path).startsWith(StorageUtilities_1.default.canonicalizePath(esPath))) {
const es = ElectronStorage.electronStorages[esPath];
if (es) {
await es.notifyPathWasAddedExternal(path);
}
}
}
}
/**
* Called when a file is removed by the Electron file watcher.
* Routes to the appropriate ElectronStorage instance.
*/
static async processLocalFileRemoved(path) {
for (const esPath in ElectronStorage.electronStorages) {
if (StorageUtilities_1.default.canonicalizePath(path).startsWith(StorageUtilities_1.default.canonicalizePath(esPath))) {
const es = ElectronStorage.electronStorages[esPath];
if (es) {
await es.notifyPathWasRemovedExternal(path);
}
}
}
}
async getAvailable() {
if (this.available === undefined) {
const result = await AppServiceProxy_1.default.sendAsync(AppServiceProxy_1.AppServiceProxyCommands.fsRootStorageExists, this.path);
this.available = result === "true";
}
return this.available;
}
joinPath(pathA, pathB) {
let fullPath = pathA;
if (!fullPath.endsWith(ElectronStorage.folderDelimiter)) {
fullPath += ElectronStorage.folderDelimiter;
}
fullPath += pathB;
return fullPath;
}
static getParentFolderPath(path) {
const lastDelim = path.lastIndexOf(this.folderDelimiter);
if (lastDelim < 0) {
return path;
}
return path.substring(0, lastDelim);
}
}
exports.default = ElectronStorage;