-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In order to simplify m-c code, move some in pdf.js
* move set/clear|Timeout/Interval and crackURL code in pdf.js * remove the "backdoor" in the proxy (used to dispatch event) and so return the dispatch function in the initializer * remove listeners if an error occured during sandbox initialization * add support for alert and prompt in the sandbox * add a function to eval in the global scope
- Loading branch information
1 parent
00b4f86
commit e9898ad
Showing
15 changed files
with
457 additions
and
251 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
/* Copyright 2020 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. | ||
*/ | ||
|
||
// In mozilla-central, this file is loaded as non-module script, | ||
// so it mustn't have any dependencies. | ||
|
||
class SandboxSupportBase { | ||
/** | ||
* @param {DOMWindow} - win | ||
*/ | ||
constructor(win) { | ||
this.win = win; | ||
this.timeoutIds = new Map(); | ||
|
||
// Will be assigned after the sandbox is initialized | ||
this.commFun = null; | ||
} | ||
|
||
destroy() { | ||
this.commFunc = null; | ||
this.timeoutIds.forEach(([_, id]) => this.win.clearTimeout(id)); | ||
this.timeoutIds = null; | ||
} | ||
|
||
/** | ||
* @param {Object} val - Export a value in the sandbox. | ||
*/ | ||
exportValueToSandbox(val) { | ||
throw new Error("Not implemented"); | ||
} | ||
|
||
/** | ||
* @param {Object} val - Import a value from the sandbox. | ||
*/ | ||
importValueFromSandbox(val) { | ||
throw new Error("Not implemented"); | ||
} | ||
|
||
/** | ||
* @param {Object} err - Report an error. | ||
*/ | ||
reportError(err) { | ||
throw new Error("Not implemented"); | ||
} | ||
|
||
/** | ||
* @param {Object} val - Import a value from the sandbox. | ||
*/ | ||
callSandboxFunction(name, args) { | ||
try { | ||
args = this.exportValueToSandbox(args); | ||
this.commFun(name, args); | ||
} catch (e) { | ||
this.reportError(e); | ||
} | ||
} | ||
|
||
createSandboxExternals() { | ||
// All the functions in externals object are called | ||
// from the sandbox. | ||
const externals = { | ||
setTimeout: (callbackId, nMilliseconds) => { | ||
if ( | ||
typeof callbackId !== "number" || | ||
typeof nMilliseconds !== "number" | ||
) { | ||
return; | ||
} | ||
const id = this.win.setTimeout(() => { | ||
this.timeoutIds.delete(callbackId); | ||
this.callSandboxFunction("timeoutCb", { | ||
callbackId, | ||
interval: false, | ||
}); | ||
}, nMilliseconds); | ||
this.timeoutIds.set(callbackId, id); | ||
}, | ||
clearTimeout: id => { | ||
this.win.clearTimeout(this.timeoutIds.get(id)); | ||
this.timeoutIds.delete(id); | ||
}, | ||
setInterval: (callbackId, nMilliseconds) => { | ||
if ( | ||
typeof callbackId !== "number" || | ||
typeof nMilliseconds !== "number" | ||
) { | ||
return; | ||
} | ||
const id = this.win.setInterval(() => { | ||
this.callSandboxFunction("timeoutCb", { | ||
callbackId, | ||
interval: true, | ||
}); | ||
}, nMilliseconds); | ||
this.timeoutIds.set(callbackId, id); | ||
}, | ||
clearInterval: id => { | ||
this.win.clearInterval(this.timeoutIds.get(id)); | ||
this.timeoutIds.delete(id); | ||
}, | ||
alert: cMsg => { | ||
if (typeof cMsg !== "string") { | ||
return; | ||
} | ||
this.win.alert(cMsg); | ||
}, | ||
prompt: (cQuestion, cDefault) => { | ||
if (typeof cQuestion !== "string" || typeof cDefault !== "string") { | ||
return null; | ||
} | ||
return this.win.prompt(cQuestion, cDefault); | ||
}, | ||
parseURL: cUrl => { | ||
const url = new this.win.URL(cUrl); | ||
const props = [ | ||
"hash", | ||
"host", | ||
"hostname", | ||
"href", | ||
"origin", | ||
"password", | ||
"pathname", | ||
"port", | ||
"protocol", | ||
"search", | ||
"searchParams", | ||
"username", | ||
]; | ||
|
||
return Object.fromEntries( | ||
props.map(name => [name, url[name].toString()]) | ||
); | ||
}, | ||
send: data => { | ||
if (!data) { | ||
return; | ||
} | ||
const event = new this.win.CustomEvent("updateFromSandbox", { | ||
detail: this.importValueFromSandbox(data), | ||
}); | ||
this.win.dispatchEvent(event); | ||
}, | ||
}; | ||
Object.setPrototypeOf(externals, null); | ||
|
||
return (name, args) => { | ||
let result; | ||
try { | ||
result = externals[name](...args); | ||
} catch (err) { | ||
console.log(err); | ||
result = { error: err.message }; | ||
} | ||
|
||
return this.exportValueToSandbox(result); | ||
}; | ||
} | ||
} | ||
|
||
if (typeof PDFJSDev === "undefined" || !PDFJSDev.test("MOZCENTRAL")) { | ||
exports.SandboxSupportBase = SandboxSupportBase; | ||
} else { | ||
/* eslint-disable-next-line no-unused-vars, no-var */ | ||
var EXPORTED_SYMBOLS = ["SandboxSupportBase"]; | ||
} |
Oops, something went wrong.