pdf.js/src/core/xfa/config.js

1927 lines
39 KiB
JavaScript
Raw Normal View History

/* Copyright 2021 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 { $buildXFAObject, NamespaceIds } from "./namespaces.js";
import {
2021-02-02 19:27:52 +09:00
$content,
$finalize,
ContentObject,
IntegerObject,
2021-02-02 19:27:52 +09:00
Option01,
Option10,
OptionObject,
StringObject,
XFAObject,
XFAObjectArray,
} from "./xfa_object.js";
2021-02-02 19:27:52 +09:00
import { getInteger, getStringOption } from "./utils.js";
import { shadow, warn } from "../../shared/util.js";
const CONFIG_NS_ID = NamespaceIds.config.id;
class Acrobat extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "acrobat", /* hasChildren = */ true);
this.acrobat7 = null;
this.autoSave = null;
this.common = null;
this.validate = null;
this.validateApprovalSignatures = null;
this.submitUrl = new XFAObjectArray();
}
}
class Acrobat7 extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "acrobat7", /* hasChildren = */ true);
this.dynamicRender = null;
}
}
2021-02-02 19:27:52 +09:00
class ADBE_JSConsole extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "ADBE_JSConsole", ["delegate", "Enable", "Disable"]);
}
}
class ADBE_JSDebugger extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "ADBE_JSDebugger", ["delegate", "Enable", "Disable"]);
}
}
class AddSilentPrint extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "addSilentPrint");
}
}
class AddViewerPreferences extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "addViewerPreferences");
}
}
class AdjustData extends Option10 {
constructor(attributes) {
super(CONFIG_NS_ID, "adjustData");
}
}
class AdobeExtensionLevel extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "adobeExtensionLevel", 0, n => n >= 1 && n <= 8);
}
}
2021-02-02 19:27:52 +09:00
class Agent extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "agent", /* hasChildren = */ true);
this.name = attributes.name ? attributes.name.trim() : "";
this.common = new XFAObjectArray();
}
}
class AlwaysEmbed extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "alwaysEmbed");
}
}
class Amd extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "amd");
}
}
class Area extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "area");
this.level = getInteger({
data: attributes.level,
defaultValue: 0,
2021-05-22 03:25:26 +09:00
validate: n => n >= 1 && n <= 3,
2021-02-02 19:27:52 +09:00
});
this.name = getStringOption(attributes.name, [
"",
"barcode",
"coreinit",
"deviceDriver",
"font",
"general",
"layout",
"merge",
"script",
"signature",
"sourceSet",
"templateCache",
]);
}
}
class Attributes extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "attributes", ["preserve", "delegate", "ignore"]);
}
}
class AutoSave extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "autoSave", ["disabled", "enabled"]);
}
}
2021-02-02 19:27:52 +09:00
class Base extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "base");
}
}
class BatchOutput extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "batchOutput");
this.format = getStringOption(attributes.format, [
"none",
"concat",
"zip",
"zipCompress",
]);
}
}
class BehaviorOverride extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "behaviorOverride");
}
[$finalize]() {
this[$content] = new Map(
this[$content]
.trim()
.split(/\s+/)
.filter(x => !!x && x.include(":"))
.map(x => x.split(":", 2))
);
}
}
class Cache extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "cache", /* hasChildren = */ true);
this.templateCache = null;
}
}
class Change extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "change");
}
}
class Common extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "common", /* hasChildren = */ true);
this.data = null;
this.locale = null;
this.localeSet = null;
this.messaging = null;
this.suppressBanner = null;
this.template = null;
this.validationMessaging = null;
this.versionControl = null;
this.log = new XFAObjectArray();
}
}
class Compress extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "compress");
this.scope = getStringOption(attributes.scope, ["imageOnly", "document"]);
}
}
class CompressLogicalStructure extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "compressLogicalStructure");
}
}
class CompressObjectStream extends Option10 {
constructor(attributes) {
super(CONFIG_NS_ID, "compressObjectStream");
}
}
class Compression extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "compression", /* hasChildren = */ true);
this.compressLogicalStructure = null;
this.compressObjectStream = null;
this.level = null;
this.type = null;
}
}
class Config extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "config", /* hasChildren = */ true);
this.acrobat = null;
this.present = null;
this.trace = null;
this.agent = new XFAObjectArray();
}
}
2021-02-02 19:27:52 +09:00
class Conformance extends OptionObject {
constructor(attributes) {
2021-02-02 19:27:52 +09:00
super(CONFIG_NS_ID, "conformance", ["A", "B"]);
}
}
2021-02-02 19:27:52 +09:00
class ContentCopy extends Option01 {
constructor(attributes) {
2021-02-02 19:27:52 +09:00
super(CONFIG_NS_ID, "contentCopy");
}
}
2021-02-02 19:27:52 +09:00
class Copies extends IntegerObject {
constructor(attributes) {
2021-02-02 19:27:52 +09:00
super(CONFIG_NS_ID, "copies", 1, n => n >= 1);
}
}
class Creator extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "creator");
}
}
class CurrentPage extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "currentPage", 0, n => n >= 0);
}
}
class Data extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "data", /* hasChildren = */ true);
this.adjustData = null;
this.attributes = null;
this.incrementalLoad = null;
this.outputXSL = null;
this.range = null;
this.record = null;
this.startNode = null;
this.uri = null;
this.window = null;
this.xsl = null;
this.excludeNS = new XFAObjectArray();
this.transform = new XFAObjectArray();
}
}
class Debug extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "debug", /* hasChildren = */ true);
this.uri = null;
}
}
class DefaultTypeface extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "defaultTypeface");
this.writingScript = getStringOption(attributes.writingScript, [
"*",
"Arabic",
"Cyrillic",
"EastEuropeanRoman",
"Greek",
"Hebrew",
"Japanese",
"Korean",
"Roman",
"SimplifiedChinese",
"Thai",
"TraditionalChinese",
"Vietnamese",
]);
}
}
class Destination extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "destination", [
"pdf",
"pcl",
"ps",
"webClient",
"zpl",
]);
}
}
class DocumentAssembly extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "documentAssembly");
}
}
class Driver extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "driver", /* hasChildren = */ true);
this.name = attributes.name ? attributes.name.trim() : "";
this.fontInfo = null;
this.xdc = null;
}
}
2021-02-02 19:27:52 +09:00
class DuplexOption extends OptionObject {
constructor(attributes) {
2021-02-02 19:27:52 +09:00
super(CONFIG_NS_ID, "duplexOption", [
"simplex",
"duplexFlipLongEdge",
"duplexFlipShortEdge",
]);
}
}
2021-02-02 19:27:52 +09:00
class DynamicRender extends OptionObject {
constructor(attributes) {
2021-02-02 19:27:52 +09:00
super(CONFIG_NS_ID, "dynamicRender", ["forbidden", "required"]);
}
}
2021-02-02 19:27:52 +09:00
class Embed extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "embed");
}
}
class Encrypt extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "encrypt");
}
}
class Encryption extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "encryption", /* hasChildren = */ true);
this.encrypt = null;
this.encryptionLevel = null;
this.permissions = null;
}
}
class EncryptionLevel extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "encryptionLevel", ["40bit", "128bit"]);
}
}
class Enforce extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "enforce");
}
}
class Equate extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "equate");
this.force = getInteger({
data: attributes.force,
defaultValue: 1,
2021-05-22 03:25:26 +09:00
validate: n => n === 0,
2021-02-02 19:27:52 +09:00
});
this.from = attributes.from || "";
this.to = attributes.to || "";
}
}
class EquateRange extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "equateRange");
this.from = attributes.from || "";
this.to = attributes.to || "";
this._unicodeRange = attributes.unicodeRange || "";
}
get unicodeRange() {
const ranges = [];
const unicodeRegex = /U\+([0-9a-fA-F]+)/;
const unicodeRange = this._unicodeRange;
for (let range of unicodeRange
.split(",")
.map(x => x.trim())
.filter(x => !!x)) {
range = range.split("-", 2).map(x => {
const found = x.match(unicodeRegex);
if (!found) {
return 0;
}
return parseInt(found[1], 16);
});
if (range.length === 1) {
range.push(range[0]);
}
ranges.push(range);
}
2021-02-02 19:27:52 +09:00
return shadow(this, "unicodeRange", ranges);
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class Exclude extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "exclude");
}
2021-02-02 19:27:52 +09:00
[$finalize]() {
this[$content] = this[$content]
.trim()
.split(/\s+/)
.filter(
x =>
x &&
[
"calculate",
"close",
"enter",
"exit",
"initialize",
"ready",
"validate",
].includes(x)
);
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class ExcludeNS extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "excludeNS");
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class FlipLabel extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "flipLabel", ["usePrinterSetting", "on", "off"]);
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class FontInfo extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "fontInfo", /* hasChildren = */ true);
this.embed = null;
this.map = null;
this.subsetBelow = null;
this.alwaysEmbed = new XFAObjectArray();
this.defaultTypeface = new XFAObjectArray();
this.neverEmbed = new XFAObjectArray();
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class FormFieldFilling extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "formFieldFilling");
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class GroupParent extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "groupParent");
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class IfEmpty extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "ifEmpty", [
"dataValue",
"dataGroup",
"ignore",
"remove",
]);
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class IncludeXDPContent extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "includeXDPContent");
}
2021-02-02 19:27:52 +09:00
}
2021-02-02 19:27:52 +09:00
class IncrementalLoad extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "incrementalLoad", ["none", "forwardOnly"]);
}
}
class IncrementalMerge extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "incrementalMerge");
}
}
class Interactive extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "interactive");
}
}
class Jog extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "jog", ["usePrinterSetting", "none", "pageSet"]);
}
}
class LabelPrinter extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "labelPrinter", /* hasChildren = */ true);
this.name = getStringOption(attributes.name, ["zpl", "dpl", "ipl", "tcpl"]);
this.batchOutput = null;
this.flipLabel = null;
this.fontInfo = null;
this.xdc = null;
}
}
class Layout extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "layout", ["paginate", "panel"]);
}
}
class Level extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "level", 0, n => n > 0);
}
}
class Linearized extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "linearized");
}
}
class Locale extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "locale");
}
}
class LocaleSet extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "localeSet");
}
}
class Log extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "log", /* hasChildren = */ true);
this.mode = null;
this.threshold = null;
this.to = null;
this.uri = null;
}
}
// Renamed in MapElement to avoid confusion with usual js Map.
class MapElement extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "map", /* hasChildren = */ true);
this.equate = new XFAObjectArray();
this.equateRange = new XFAObjectArray();
}
}
class MediumInfo extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "mediumInfo", /* hasChildren = */ true);
this.map = null;
}
}
class Message extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "message", /* hasChildren = */ true);
this.msgId = null;
this.severity = null;
}
}
class Messaging extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "messaging", /* hasChildren = */ true);
this.message = new XFAObjectArray();
}
}
class Mode extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "mode", ["append", "overwrite"]);
}
}
class ModifyAnnots extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "modifyAnnots");
}
}
class MsgId extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "msgId", 1, n => n >= 1);
}
}
class NameAttr extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "nameAttr");
}
}
class NeverEmbed extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "neverEmbed");
}
}
class NumberOfCopies extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "numberOfCopies", null, n => n >= 2 && n <= 5);
}
}
class OpenAction extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "openAction", /* hasChildren = */ true);
this.destination = null;
}
}
class Output extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "output", /* hasChildren = */ true);
this.to = null;
this.type = null;
this.uri = null;
}
}
class OutputBin extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "outputBin");
}
}
class OutputXSL extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "outputXSL", /* hasChildren = */ true);
this.uri = null;
}
}
class Overprint extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "overprint", ["none", "both", "draw", "field"]);
}
}
class Packets extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "packets");
}
[$finalize]() {
if (this[$content] === "*") {
return;
}
this[$content] = this[$content]
.trim()
.split(/\s+/)
.filter(x =>
["config", "datasets", "template", "xfdf", "xslt"].includes(x)
);
}
}
class PageOffset extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pageOffset");
this.x = getInteger({
data: attributes.x,
defaultValue: "useXDCSetting",
2021-05-22 03:25:26 +09:00
validate: n => true,
2021-02-02 19:27:52 +09:00
});
this.y = getInteger({
data: attributes.y,
defaultValue: "useXDCSetting",
2021-05-22 03:25:26 +09:00
validate: n => true,
2021-02-02 19:27:52 +09:00
});
}
}
class PageRange extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pageRange");
}
[$finalize]() {
const numbers = this[$content]
.trim()
.split(/\s+/)
.map(x => parseInt(x, 10));
const ranges = [];
for (let i = 0, ii = numbers.length; i < ii; i += 2) {
ranges.push(numbers.slice(i, i + 2));
}
this[$content] = ranges;
}
}
class Pagination extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pagination", [
"simplex",
"duplexShortEdge",
"duplexLongEdge",
]);
}
}
class PaginationOverride extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "paginationOverride", [
"none",
"forceDuplex",
"forceDuplexLongEdge",
"forceDuplexShortEdge",
"forceSimplex",
]);
}
}
class Part extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "part", 1, n => false);
}
}
class Pcl extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pcl", /* hasChildren = */ true);
this.name = attributes.name || "";
this.batchOutput = null;
this.fontInfo = null;
this.jog = null;
this.mediumInfo = null;
this.outputBin = null;
this.pageOffset = null;
this.staple = null;
this.xdc = null;
}
}
class Pdf extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pdf", /* hasChildren = */ true);
this.name = attributes.name || "";
this.adobeExtensionLevel = null;
this.batchOutput = null;
this.compression = null;
this.creator = null;
this.encryption = null;
this.fontInfo = null;
this.interactive = null;
this.linearized = null;
this.openAction = null;
this.pdfa = null;
this.producer = null;
this.renderPolicy = null;
this.scriptModel = null;
this.silentPrint = null;
this.submitFormat = null;
this.tagged = null;
this.version = null;
this.viewerPreferences = null;
this.xdc = null;
}
}
class Pdfa extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "pdfa", /* hasChildren = */ true);
this.amd = null;
this.conformance = null;
this.includeXDPContent = null;
this.part = null;
}
}
class Permissions extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "permissions", /* hasChildren = */ true);
this.accessibleContent = null;
this.change = null;
this.contentCopy = null;
this.documentAssembly = null;
this.formFieldFilling = null;
this.modifyAnnots = null;
this.plaintextMetadata = null;
this.print = null;
this.printHighQuality = null;
}
}
class PickTrayByPDFSize extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "pickTrayByPDFSize");
}
}
class Picture extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "picture");
}
// TODO: check the validity of the picture clause.
// See page 1150 in the spec.
}
class PlaintextMetadata extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "plaintextMetadata");
}
}
class Presence extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "presence", [
"preserve",
"dissolve",
"dissolveStructure",
"ignore",
"remove",
]);
}
}
class Present extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "present", /* hasChildren = */ true);
this.behaviorOverride = null;
this.cache = null;
this.common = null;
this.copies = null;
this.destination = null;
this.incrementalMerge = null;
this.layout = null;
this.output = null;
this.overprint = null;
this.pagination = null;
this.paginationOverride = null;
this.script = null;
this.validate = null;
this.xdp = null;
this.driver = new XFAObjectArray();
this.labelPrinter = new XFAObjectArray();
this.pcl = new XFAObjectArray();
this.pdf = new XFAObjectArray();
this.ps = new XFAObjectArray();
this.submitUrl = new XFAObjectArray();
this.webClient = new XFAObjectArray();
this.zpl = new XFAObjectArray();
}
}
class Print extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "print");
}
}
class PrintHighQuality extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "printHighQuality");
}
}
class PrintScaling extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "printScaling", ["appdefault", "noScaling"]);
}
}
class PrinterName extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "printerName");
}
}
class Producer extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "producer");
}
}
class Ps extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "ps", /* hasChildren = */ true);
this.name = attributes.name || "";
this.batchOutput = null;
this.fontInfo = null;
this.jog = null;
this.mediumInfo = null;
this.outputBin = null;
this.staple = null;
this.xdc = null;
}
}
class Range extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "range");
}
[$finalize]() {
this[$content] = this[$content]
.trim()
.split(/\s*,\s*/, 2)
.map(range => range.split("-").map(x => parseInt(x.trim(), 10)))
.filter(range => range.every(x => !isNaN(x)))
.map(range => {
if (range.length === 1) {
range.push(range[0]);
}
return range;
});
}
}
class Record extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "record");
}
[$finalize]() {
this[$content] = this[$content].trim();
const n = parseInt(this[$content], 10);
if (!isNaN(n) && n >= 0) {
this[$content] = n;
}
}
}
class Relevant extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "relevant");
}
[$finalize]() {
this[$content] = this[$content].trim().split(/\s+/);
}
}
class Rename extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "rename");
}
[$finalize]() {
this[$content] = this[$content].trim();
// String must be a XFA name: same as XML one except that there
// is no colon.
if (
this[$content].toLowerCase().startsWith("xml") ||
this[$content].match(new RegExp("[\\p{L}_][\\p{L}\\d._\\p{M}-]*", "u"))
) {
warn("XFA - Rename: invalid XFA name");
}
}
}
class RenderPolicy extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "renderPolicy", ["server", "client"]);
}
}
class RunScripts extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "runScripts", ["both", "client", "none", "server"]);
}
}
class Script extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "script", /* hasChildren = */ true);
this.currentPage = null;
this.exclude = null;
this.runScripts = null;
}
}
class ScriptModel extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "scriptModel", ["XFA", "none"]);
}
}
class Severity extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "severity", [
"ignore",
"error",
"information",
"trace",
"warning",
]);
}
}
class SilentPrint extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "silentPrint", /* hasChildren = */ true);
this.addSilentPrint = null;
this.printerName = null;
}
}
class Staple extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "staple");
this.mode = getStringOption(attributes.mode, [
"usePrinterSetting",
"on",
"off",
]);
}
}
class StartNode extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "startNode");
}
}
class StartPage extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "startPage", 0, n => true);
}
}
class SubmitFormat extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "submitFormat", [
"html",
"delegate",
"fdf",
"xml",
"pdf",
]);
}
}
class SubmitUrl extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "submitUrl");
}
}
class SubsetBelow extends IntegerObject {
constructor(attributes) {
super(CONFIG_NS_ID, "subsetBelow", 100, n => n >= 0 && n <= 100);
}
}
class SuppressBanner extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "suppressBanner");
}
}
class Tagged extends Option01 {
constructor(attributes) {
super(CONFIG_NS_ID, "tagged");
}
}
class Template extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "template", /* hasChildren = */ true);
this.base = null;
this.relevant = null;
this.startPage = null;
this.uri = null;
this.xsl = null;
}
}
class Threshold extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "threshold", [
"trace",
"error",
"information",
"warning",
]);
}
}
class To extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "to", [
"null",
"memory",
"stderr",
"stdout",
"system",
"uri",
]);
}
}
class TemplateCache extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "templateCache");
this.maxEntries = getInteger({
data: attributes.maxEntries,
defaultValue: 5,
2021-05-22 03:25:26 +09:00
validate: n => n >= 0,
2021-02-02 19:27:52 +09:00
});
}
}
class Trace extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "trace", /* hasChildren = */ true);
this.area = new XFAObjectArray();
}
}
class Transform extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "transform", /* hasChildren = */ true);
this.groupParent = null;
this.ifEmpty = null;
this.nameAttr = null;
this.picture = null;
this.presence = null;
this.rename = null;
this.whitespace = null;
}
}
class Type extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "type", [
"none",
"ascii85",
"asciiHex",
"ccittfax",
"flate",
"lzw",
"runLength",
"native",
"xdp",
"mergedXDP",
]);
}
}
class Uri extends StringObject {
constructor(attributes) {
super(CONFIG_NS_ID, "uri");
}
}
class Validate extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "validate", [
"preSubmit",
"prePrint",
"preExecute",
"preSave",
]);
}
}
class ValidateApprovalSignatures extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "validateApprovalSignatures");
}
[$finalize]() {
this[$content] = this[$content]
.trim()
.split(/\s+/)
.filter(x => ["docReady", "postSign"].includes(x));
}
}
class ValidationMessaging extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "validationMessaging", [
"allMessagesIndividually",
"allMessagesTogether",
"firstMessageOnly",
"noMessages",
]);
}
}
class Version extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "version", ["1.7", "1.6", "1.5", "1.4", "1.3", "1.2"]);
}
}
class VersionControl extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "VersionControl");
this.outputBelow = getStringOption(attributes.outputBelow, [
"warn",
"error",
"update",
]);
this.sourceAbove = getStringOption(attributes.sourceAbove, [
"warn",
"error",
]);
this.sourceBelow = getStringOption(attributes.sourceBelow, [
"update",
"maintain",
]);
}
}
class ViewerPreferences extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "viewerPreferences", /* hasChildren = */ true);
this.ADBE_JSConsole = null;
this.ADBE_JSDebugger = null;
this.addViewerPreferences = null;
this.duplexOption = null;
this.enforce = null;
this.numberOfCopies = null;
this.pageRange = null;
this.pickTrayByPDFSize = null;
this.printScaling = null;
}
}
class WebClient extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "webClient", /* hasChildren = */ true);
this.name = attributes.name ? attributes.name.trim() : "";
this.fontInfo = null;
this.xdc = null;
}
}
class Whitespace extends OptionObject {
constructor(attributes) {
super(CONFIG_NS_ID, "whitespace", [
"preserve",
"ltrim",
"normalize",
"rtrim",
"trim",
]);
}
}
class Window extends ContentObject {
constructor(attributes) {
super(CONFIG_NS_ID, "window");
}
[$finalize]() {
const pair = this[$content]
.trim()
.split(/\s*,\s*/, 2)
.map(x => parseInt(x, 10));
if (pair.some(x => isNaN(x))) {
this[$content] = [0, 0];
return;
}
if (pair.length === 1) {
pair.push(pair[0]);
}
this[$content] = pair;
}
}
class Xdc extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "xdc", /* hasChildren = */ true);
this.uri = new XFAObjectArray();
this.xsl = new XFAObjectArray();
}
}
class Xdp extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "xdp", /* hasChildren = */ true);
this.packets = null;
}
}
class Xsl extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "xsl", /* hasChildren = */ true);
this.debug = null;
this.uri = null;
}
}
class Zpl extends XFAObject {
constructor(attributes) {
super(CONFIG_NS_ID, "zpl", /* hasChildren = */ true);
this.name = attributes.name ? attributes.name.trim() : "";
this.batchOutput = null;
this.flipLabel = null;
this.fontInfo = null;
this.xdc = null;
}
}
class ConfigNamespace {
static [$buildXFAObject](name, attributes) {
if (ConfigNamespace.hasOwnProperty(name)) {
return ConfigNamespace[name](attributes);
}
return undefined;
}
static acrobat(attrs) {
return new Acrobat(attrs);
}
static acrobat7(attrs) {
return new Acrobat7(attrs);
}
static ADBE_JSConsole(attrs) {
return new ADBE_JSConsole(attrs);
}
static ADBE_JSDebugger(attrs) {
return new ADBE_JSDebugger(attrs);
}
static addSilentPrint(attrs) {
return new AddSilentPrint(attrs);
}
static addViewerPreferences(attrs) {
return new AddViewerPreferences(attrs);
}
static adjustData(attrs) {
return new AdjustData(attrs);
}
static adobeExtensionLevel(attrs) {
return new AdobeExtensionLevel(attrs);
}
static agent(attrs) {
return new Agent(attrs);
}
static alwaysEmbed(attrs) {
return new AlwaysEmbed(attrs);
}
static amd(attrs) {
return new Amd(attrs);
}
static area(attrs) {
return new Area(attrs);
}
static attributes(attrs) {
return new Attributes(attrs);
}
static autoSave(attrs) {
return new AutoSave(attrs);
}
static base(attrs) {
return new Base(attrs);
}
static batchOutput(attrs) {
return new BatchOutput(attrs);
}
static behaviorOverride(attrs) {
return new BehaviorOverride(attrs);
}
static cache(attrs) {
return new Cache(attrs);
}
static change(attrs) {
return new Change(attrs);
}
static common(attrs) {
return new Common(attrs);
}
static compress(attrs) {
return new Compress(attrs);
}
static compressLogicalStructure(attrs) {
return new CompressLogicalStructure(attrs);
}
static compressObjectStream(attrs) {
return new CompressObjectStream(attrs);
}
static compression(attrs) {
return new Compression(attrs);
}
static config(attrs) {
return new Config(attrs);
}
static conformance(attrs) {
return new Conformance(attrs);
}
static contentCopy(attrs) {
return new ContentCopy(attrs);
}
static copies(attrs) {
return new Copies(attrs);
}
static creator(attrs) {
return new Creator(attrs);
}
static currentPage(attrs) {
return new CurrentPage(attrs);
}
static data(attrs) {
return new Data(attrs);
}
static debug(attrs) {
return new Debug(attrs);
}
static defaultTypeface(attrs) {
return new DefaultTypeface(attrs);
}
static destination(attrs) {
return new Destination(attrs);
}
static documentAssembly(attrs) {
return new DocumentAssembly(attrs);
}
static driver(attrs) {
return new Driver(attrs);
}
static duplexOption(attrs) {
return new DuplexOption(attrs);
}
static dynamicRender(attrs) {
return new DynamicRender(attrs);
}
static embed(attrs) {
return new Embed(attrs);
}
static encrypt(attrs) {
return new Encrypt(attrs);
}
static encryption(attrs) {
return new Encryption(attrs);
}
static encryptionLevel(attrs) {
return new EncryptionLevel(attrs);
}
static enforce(attrs) {
return new Enforce(attrs);
}
static equate(attrs) {
return new Equate(attrs);
}
static equateRange(attrs) {
return new EquateRange(attrs);
}
static exclude(attrs) {
return new Exclude(attrs);
}
static excludeNS(attrs) {
return new ExcludeNS(attrs);
}
static flipLabel(attrs) {
return new FlipLabel(attrs);
}
static fontInfo(attrs) {
return new FontInfo(attrs);
}
static formFieldFilling(attrs) {
return new FormFieldFilling(attrs);
}
static groupParent(attrs) {
return new GroupParent(attrs);
}
static ifEmpty(attrs) {
return new IfEmpty(attrs);
}
static includeXDPContent(attrs) {
return new IncludeXDPContent(attrs);
}
static incrementalLoad(attrs) {
return new IncrementalLoad(attrs);
}
static incrementalMerge(attrs) {
return new IncrementalMerge(attrs);
}
static interactive(attrs) {
return new Interactive(attrs);
}
static jog(attrs) {
return new Jog(attrs);
}
static labelPrinter(attrs) {
return new LabelPrinter(attrs);
}
static layout(attrs) {
return new Layout(attrs);
}
static level(attrs) {
return new Level(attrs);
}
static linearized(attrs) {
return new Linearized(attrs);
}
static locale(attrs) {
return new Locale(attrs);
}
static localeSet(attrs) {
return new LocaleSet(attrs);
}
static log(attrs) {
return new Log(attrs);
}
static map(attrs) {
return new MapElement(attrs);
}
static mediumInfo(attrs) {
return new MediumInfo(attrs);
}
static message(attrs) {
return new Message(attrs);
}
static messaging(attrs) {
return new Messaging(attrs);
}
static mode(attrs) {
return new Mode(attrs);
}
static modifyAnnots(attrs) {
return new ModifyAnnots(attrs);
}
static msgId(attrs) {
return new MsgId(attrs);
}
static nameAttr(attrs) {
return new NameAttr(attrs);
}
static neverEmbed(attrs) {
return new NeverEmbed(attrs);
}
static numberOfCopies(attrs) {
return new NumberOfCopies(attrs);
}
static openAction(attrs) {
return new OpenAction(attrs);
}
static output(attrs) {
return new Output(attrs);
}
static outputBin(attrs) {
return new OutputBin(attrs);
}
static outputXSL(attrs) {
return new OutputXSL(attrs);
}
static overprint(attrs) {
return new Overprint(attrs);
}
static packets(attrs) {
return new Packets(attrs);
}
static pageOffset(attrs) {
return new PageOffset(attrs);
}
static pageRange(attrs) {
return new PageRange(attrs);
}
static pagination(attrs) {
return new Pagination(attrs);
}
static paginationOverride(attrs) {
return new PaginationOverride(attrs);
}
static part(attrs) {
return new Part(attrs);
}
static pcl(attrs) {
return new Pcl(attrs);
}
static pdf(attrs) {
return new Pdf(attrs);
}
static pdfa(attrs) {
return new Pdfa(attrs);
}
static permissions(attrs) {
return new Permissions(attrs);
}
static pickTrayByPDFSize(attrs) {
return new PickTrayByPDFSize(attrs);
}
static picture(attrs) {
return new Picture(attrs);
}
static plaintextMetadata(attrs) {
return new PlaintextMetadata(attrs);
}
static presence(attrs) {
return new Presence(attrs);
}
static present(attrs) {
return new Present(attrs);
}
static print(attrs) {
return new Print(attrs);
}
static printHighQuality(attrs) {
return new PrintHighQuality(attrs);
}
static printScaling(attrs) {
return new PrintScaling(attrs);
}
static printerName(attrs) {
return new PrinterName(attrs);
}
static producer(attrs) {
return new Producer(attrs);
}
static ps(attrs) {
return new Ps(attrs);
}
static range(attrs) {
return new Range(attrs);
}
static record(attrs) {
return new Record(attrs);
}
static relevant(attrs) {
return new Relevant(attrs);
}
static rename(attrs) {
return new Rename(attrs);
}
static renderPolicy(attrs) {
return new RenderPolicy(attrs);
}
static runScripts(attrs) {
return new RunScripts(attrs);
}
static script(attrs) {
return new Script(attrs);
}
static scriptModel(attrs) {
return new ScriptModel(attrs);
}
static severity(attrs) {
return new Severity(attrs);
}
static silentPrint(attrs) {
return new SilentPrint(attrs);
}
static staple(attrs) {
return new Staple(attrs);
}
static startNode(attrs) {
return new StartNode(attrs);
}
static startPage(attrs) {
return new StartPage(attrs);
}
static submitFormat(attrs) {
return new SubmitFormat(attrs);
}
static submitUrl(attrs) {
return new SubmitUrl(attrs);
}
static subsetBelow(attrs) {
return new SubsetBelow(attrs);
}
static suppressBanner(attrs) {
return new SuppressBanner(attrs);
}
static tagged(attrs) {
return new Tagged(attrs);
}
static template(attrs) {
return new Template(attrs);
}
static templateCache(attrs) {
return new TemplateCache(attrs);
}
static threshold(attrs) {
return new Threshold(attrs);
}
static to(attrs) {
return new To(attrs);
}
static trace(attrs) {
return new Trace(attrs);
}
static transform(attrs) {
return new Transform(attrs);
}
static type(attrs) {
return new Type(attrs);
}
static uri(attrs) {
return new Uri(attrs);
}
static validate(attrs) {
return new Validate(attrs);
}
static validateApprovalSignatures(attrs) {
return new ValidateApprovalSignatures(attrs);
}
static validationMessaging(attrs) {
return new ValidationMessaging(attrs);
}
static version(attrs) {
return new Version(attrs);
}
static versionControl(attrs) {
return new VersionControl(attrs);
}
static viewerPreferences(attrs) {
return new ViewerPreferences(attrs);
}
static webClient(attrs) {
return new WebClient(attrs);
}
static whitespace(attrs) {
return new Whitespace(attrs);
}
static window(attrs) {
return new Window(attrs);
}
static xdc(attrs) {
return new Xdc(attrs);
}
static xdp(attrs) {
return new Xdp(attrs);
}
static xsl(attrs) {
return new Xsl(attrs);
}
static zpl(attrs) {
return new Zpl(attrs);
}
}
export { ConfigNamespace };