|
@@ -20,10 +20,10 @@ const serializableTypes = [
|
|
|
Date,
|
|
|
Error,
|
|
|
RegExp,
|
|
|
- ArrayBuffer,
|
|
|
- NativeImage
|
|
|
+ ArrayBuffer
|
|
|
];
|
|
|
|
|
|
+// https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm#Supported_types
|
|
|
export function isSerializableObject (value: any) {
|
|
|
return value === null || ArrayBuffer.isView(value) || serializableTypes.some(type => value instanceof type);
|
|
|
}
|
|
@@ -34,18 +34,55 @@ const objectMap = function (source: Object, mapper: (value: any) => any) {
|
|
|
return Object.fromEntries(targetEntries);
|
|
|
};
|
|
|
|
|
|
-export function serialize (value: any): any {
|
|
|
- if (value instanceof NativeImage) {
|
|
|
- const representations = [];
|
|
|
- for (const scaleFactor of value.getScaleFactors()) {
|
|
|
- const size = value.getSize(scaleFactor);
|
|
|
- const dataURL = value.toDataURL({ scaleFactor });
|
|
|
+function serializeNativeImage (image: any) {
|
|
|
+ const representations = [];
|
|
|
+ const scaleFactors = image.getScaleFactors();
|
|
|
+
|
|
|
+ // Use Buffer when there's only one representation for better perf.
|
|
|
+ // This avoids compressing to/from PNG where it's not necessary to
|
|
|
+ // ensure uniqueness of dataURLs (since there's only one).
|
|
|
+ if (scaleFactors.length === 1) {
|
|
|
+ const scaleFactor = scaleFactors[0];
|
|
|
+ const size = image.getSize(scaleFactor);
|
|
|
+ const buffer = image.toBitmap({ scaleFactor });
|
|
|
+ representations.push({ scaleFactor, size, buffer });
|
|
|
+ } else {
|
|
|
+ // Construct from dataURLs to ensure that they are not lost in creation.
|
|
|
+ for (const scaleFactor of scaleFactors) {
|
|
|
+ const size = image.getSize(scaleFactor);
|
|
|
+ const dataURL = image.toDataURL({ scaleFactor });
|
|
|
representations.push({ scaleFactor, size, dataURL });
|
|
|
}
|
|
|
- return { __ELECTRON_SERIALIZED_NativeImage__: true, representations };
|
|
|
- } else if (value instanceof Buffer) {
|
|
|
- return { __ELECTRON_SERIALIZED_Buffer__: true, data: value };
|
|
|
- } else if (Array.isArray(value)) {
|
|
|
+ }
|
|
|
+ return { __ELECTRON_SERIALIZED_NativeImage__: true, representations };
|
|
|
+}
|
|
|
+
|
|
|
+function deserializeNativeImage (value: any) {
|
|
|
+ const image = nativeImage.createEmpty();
|
|
|
+
|
|
|
+ // Use Buffer when there's only one representation for better perf.
|
|
|
+ // This avoids compressing to/from PNG where it's not necessary to
|
|
|
+ // ensure uniqueness of dataURLs (since there's only one).
|
|
|
+ if (value.representations.length === 1) {
|
|
|
+ const { buffer, size, scaleFactor } = value.representations[0];
|
|
|
+ const { width, height } = size;
|
|
|
+ image.addRepresentation({ buffer, scaleFactor, width, height });
|
|
|
+ } else {
|
|
|
+ // Construct from dataURLs to ensure that they are not lost in creation.
|
|
|
+ for (const rep of value.representations) {
|
|
|
+ const { dataURL, size, scaleFactor } = rep;
|
|
|
+ const { width, height } = size;
|
|
|
+ image.addRepresentation({ dataURL, scaleFactor, width, height });
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return image;
|
|
|
+}
|
|
|
+
|
|
|
+export function serialize (value: any): any {
|
|
|
+ if (value instanceof NativeImage) {
|
|
|
+ return serializeNativeImage(value);
|
|
|
+ } if (Array.isArray(value)) {
|
|
|
return value.map(serialize);
|
|
|
} else if (isSerializableObject(value)) {
|
|
|
return value;
|
|
@@ -58,16 +95,7 @@ export function serialize (value: any): any {
|
|
|
|
|
|
export function deserialize (value: any): any {
|
|
|
if (value && value.__ELECTRON_SERIALIZED_NativeImage__) {
|
|
|
- const image = nativeImage.createEmpty();
|
|
|
- for (const rep of value.representations) {
|
|
|
- const { size, scaleFactor, dataURL } = rep;
|
|
|
- const { width, height } = size;
|
|
|
- image.addRepresentation({ dataURL, scaleFactor, width, height });
|
|
|
- }
|
|
|
- return image;
|
|
|
- } else if (value && value.__ELECTRON_SERIALIZED_Buffer__) {
|
|
|
- const { buffer, byteOffset, byteLength } = value.data;
|
|
|
- return Buffer.from(buffer, byteOffset, byteLength);
|
|
|
+ return deserializeNativeImage(value);
|
|
|
} else if (Array.isArray(value)) {
|
|
|
return value.map(deserialize);
|
|
|
} else if (isSerializableObject(value)) {
|