7adcb90a2d
Originally the default preferences were defined in a JSON-file checked into the repository, which was loaded using SystemJS in development mode. Over the years a number of changes have been made to this code, most notably: - The preferences JSON-file is now generated automatically, during building, from the `AppOptions` abstraction. - All SystemJS usage has been removed from the development viewer. Hence the default preferences are now available *synchronously* even in the development viewer, and it's thus no longer necessary to defer to the microtask queue (since `getDefaultPreferences` is async) just to get the default preferences. While the effect of these changes is quite small, it *does* reduces the time it takes for the preferences to be fully initialized. Given the amount of asynchronous code during viewer initialization, every bit of time that we can save should thus help.
164 lines
5.3 KiB
JavaScript
164 lines
5.3 KiB
JavaScript
/* Copyright 2013 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { AppOptions, OptionKind } from "./app_options.js";
|
|
|
|
/**
|
|
* BasePreferences - Abstract base class for storing persistent settings.
|
|
* Used for settings that should be applied to all opened documents,
|
|
* or every time the viewer is loaded.
|
|
*/
|
|
class BasePreferences {
|
|
constructor() {
|
|
if (this.constructor === BasePreferences) {
|
|
throw new Error("Cannot initialize BasePreferences.");
|
|
}
|
|
Object.defineProperty(this, "defaults", {
|
|
value: Object.freeze(
|
|
typeof PDFJSDev === "undefined" || !PDFJSDev.test("PRODUCTION")
|
|
? AppOptions.getAll(OptionKind.PREFERENCE)
|
|
: PDFJSDev.json("$ROOT/build/default_preferences.json")
|
|
),
|
|
writable: false,
|
|
enumerable: true,
|
|
configurable: false,
|
|
});
|
|
this.prefs = Object.assign(Object.create(null), this.defaults);
|
|
|
|
this._initializedPromise = this._readFromStorage(this.defaults).then(
|
|
prefs => {
|
|
if (!prefs) {
|
|
return;
|
|
}
|
|
for (const name in prefs) {
|
|
const defaultValue = this.defaults[name],
|
|
prefValue = prefs[name];
|
|
// Ignore preferences not present in, or whose types don't match,
|
|
// the default values.
|
|
if (
|
|
defaultValue === undefined ||
|
|
typeof prefValue !== typeof defaultValue
|
|
) {
|
|
continue;
|
|
}
|
|
this.prefs[name] = prefValue;
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Stub function for writing preferences to storage.
|
|
* @param {Object} prefObj The preferences that should be written to storage.
|
|
* @returns {Promise} A promise that is resolved when the preference values
|
|
* have been written.
|
|
*/
|
|
async _writeToStorage(prefObj) {
|
|
throw new Error("Not implemented: _writeToStorage");
|
|
}
|
|
|
|
/**
|
|
* Stub function for reading preferences from storage.
|
|
* @param {Object} prefObj The preferences that should be read from storage.
|
|
* @returns {Promise} A promise that is resolved with an {Object} containing
|
|
* the preferences that have been read.
|
|
*/
|
|
async _readFromStorage(prefObj) {
|
|
throw new Error("Not implemented: _readFromStorage");
|
|
}
|
|
|
|
/**
|
|
* Reset the preferences to their default values and update storage.
|
|
* @returns {Promise} A promise that is resolved when the preference values
|
|
* have been reset.
|
|
*/
|
|
async reset() {
|
|
await this._initializedPromise;
|
|
this.prefs = Object.assign(Object.create(null), this.defaults);
|
|
return this._writeToStorage(this.defaults);
|
|
}
|
|
|
|
/**
|
|
* Set the value of a preference.
|
|
* @param {string} name The name of the preference that should be changed.
|
|
* @param {boolean|number|string} value The new value of the preference.
|
|
* @returns {Promise} A promise that is resolved when the value has been set,
|
|
* provided that the preference exists and the types match.
|
|
*/
|
|
async set(name, value) {
|
|
await this._initializedPromise;
|
|
const defaultValue = this.defaults[name];
|
|
|
|
if (defaultValue === undefined) {
|
|
throw new Error(`Set preference: "${name}" is undefined.`);
|
|
} else if (value === undefined) {
|
|
throw new Error("Set preference: no value is specified.");
|
|
}
|
|
const valueType = typeof value;
|
|
const defaultType = typeof defaultValue;
|
|
|
|
if (valueType !== defaultType) {
|
|
if (valueType === "number" && defaultType === "string") {
|
|
value = value.toString();
|
|
} else {
|
|
throw new Error(
|
|
`Set preference: "${value}" is a ${valueType}, ` +
|
|
`expected a ${defaultType}.`
|
|
);
|
|
}
|
|
} else {
|
|
if (valueType === "number" && !Number.isInteger(value)) {
|
|
throw new Error(`Set preference: "${value}" must be an integer.`);
|
|
}
|
|
}
|
|
this.prefs[name] = value;
|
|
return this._writeToStorage(this.prefs);
|
|
}
|
|
|
|
/**
|
|
* Get the value of a preference.
|
|
* @param {string} name The name of the preference whose value is requested.
|
|
* @returns {Promise} A promise resolved with a {boolean|number|string}
|
|
* containing the value of the preference.
|
|
*/
|
|
async get(name) {
|
|
await this._initializedPromise;
|
|
const defaultValue = this.defaults[name];
|
|
|
|
if (defaultValue === undefined) {
|
|
throw new Error(`Get preference: "${name}" is undefined.`);
|
|
} else {
|
|
const prefValue = this.prefs[name];
|
|
|
|
if (prefValue !== undefined) {
|
|
return prefValue;
|
|
}
|
|
}
|
|
return defaultValue;
|
|
}
|
|
|
|
/**
|
|
* Get the values of all preferences.
|
|
* @returns {Promise} A promise that is resolved with an {Object} containing
|
|
* the values of all preferences.
|
|
*/
|
|
async getAll() {
|
|
await this._initializedPromise;
|
|
return Object.assign(Object.create(null), this.defaults, this.prefs);
|
|
}
|
|
}
|
|
|
|
export { BasePreferences };
|