These `getAll` methods are not used anywhere within the PDF.js code-base, outside of tests, and were mostly added (speculatively) for third-party users. To still allow access to the same data we instead introduce iterators on these classes, which (slightly) shortens the code and allows us to remove the `objectFromMap` helper function. A summary of the changes in this patch: - Replace the `getAll` methods with iterators in the following classes: `AnnotationStorage`, `Metadata`, and `OptionalContentGroup`. - Change, and also re-name, `AnnotationStorage.prototype.setAll` into a test-only method since it's not used elsewhere. - Remove the `Metadata.prototype.has` method, since it's only used in tests and can be trivially replaced by calling `Metadata.prototype.get` and checking if the returned value is `null`.
40 lines
920 B
JavaScript
40 lines
920 B
JavaScript
/* Copyright 2012 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.
|
|
*/
|
|
|
|
class Metadata {
|
|
#map;
|
|
|
|
#data;
|
|
|
|
constructor({ parsedData, rawData }) {
|
|
this.#map = parsedData;
|
|
this.#data = rawData;
|
|
}
|
|
|
|
getRaw() {
|
|
return this.#data;
|
|
}
|
|
|
|
get(name) {
|
|
return this.#map.get(name) ?? null;
|
|
}
|
|
|
|
[Symbol.iterator]() {
|
|
return this.#map.entries();
|
|
}
|
|
}
|
|
|
|
export { Metadata };
|