@triniwiz/nativescript-masonkit 1.0.0-alpha.5 → 1.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common.d.ts +7 -9
- package/common.js +277 -552
- package/common.js.map +1 -1
- package/helpers.d.ts +32 -10
- package/helpers.js +772 -286
- package/helpers.js.map +1 -1
- package/index.android.d.ts +6 -2
- package/index.android.js +21 -3
- package/index.android.js.map +1 -1
- package/index.d.ts +64 -7
- package/index.ios.d.ts +9 -6
- package/index.ios.js +39 -25
- package/index.ios.js.map +1 -1
- package/package.json +1 -1
- package/platforms/android/include.gradle +18 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +108 -64
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +7002 -1194
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +216 -128
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +7002 -1194
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +7002 -1194
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +43 -43
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/build.xcconfig +1 -2
- package/platforms/ios/src/MasonV8Module.h +583 -0
- package/platforms/ios/src/MasonV8Module.mm +1005 -0
- package/platforms/ios/src/{include → cpp/include}/mason_native.h +47 -20
- package/platforms/ios/src/cpp/include/robin_hood.h +2544 -0
- package/platforms/ios/src/module.modulemap +2 -2
- package/platforms/new_native_src/cpp/Caches.cpp +36 -0
- package/platforms/new_native_src/cpp/Caches.h +42 -0
- package/platforms/new_native_src/cpp/Common.h +34 -0
- package/platforms/new_native_src/cpp/ConcurrentMap.h +57 -0
- package/platforms/new_native_src/cpp/Helpers.cpp +101 -0
- package/platforms/new_native_src/cpp/Helpers.h +364 -0
- package/platforms/new_native_src/cpp/MasonImpl.cpp +68 -0
- package/platforms/new_native_src/cpp/MasonImpl.h +40 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.cpp +89 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.h +47 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.cpp +2181 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.h +420 -0
- package/platforms/{ios/Mason.xcframework/ios-arm64/Mason.framework/PrivateHeaders → new_native_src/cpp/include}/mason_native.h +464 -168
- package/platforms/new_native_src/cpp/include/robin_hood.h +2544 -0
- package/pods/Headers/include/APIDesign.md +72 -0
- package/pods/Headers/include/DEPS +10 -0
- package/pods/Headers/include/DIR_METADATA +11 -0
- package/pods/Headers/include/OWNERS +23 -0
- package/pods/Headers/include/cppgc/DEPS +8 -0
- package/pods/Headers/include/cppgc/OWNERS +2 -0
- package/pods/Headers/include/cppgc/README.md +133 -0
- package/pods/Headers/include/cppgc/allocation.h +310 -0
- package/pods/Headers/include/cppgc/common.h +29 -0
- package/pods/Headers/include/cppgc/cross-thread-persistent.h +465 -0
- package/pods/Headers/include/cppgc/custom-space.h +97 -0
- package/pods/Headers/include/cppgc/default-platform.h +67 -0
- package/pods/Headers/include/cppgc/ephemeron-pair.h +30 -0
- package/pods/Headers/include/cppgc/explicit-management.h +100 -0
- package/pods/Headers/include/cppgc/garbage-collected.h +106 -0
- package/pods/Headers/include/cppgc/heap-consistency.h +266 -0
- package/pods/Headers/include/cppgc/heap-state.h +82 -0
- package/pods/Headers/include/cppgc/heap-statistics.h +120 -0
- package/pods/Headers/include/cppgc/heap.h +206 -0
- package/pods/Headers/include/cppgc/internal/api-constants.h +55 -0
- package/pods/Headers/include/cppgc/internal/atomic-entry-flag.h +48 -0
- package/pods/Headers/include/cppgc/internal/caged-heap-local-data.h +79 -0
- package/pods/Headers/include/cppgc/internal/compiler-specific.h +38 -0
- package/pods/Headers/include/cppgc/internal/finalizer-trait.h +93 -0
- package/pods/Headers/include/cppgc/internal/gc-info.h +156 -0
- package/pods/Headers/include/cppgc/internal/logging.h +50 -0
- package/pods/Headers/include/cppgc/internal/name-trait.h +122 -0
- package/pods/Headers/include/cppgc/internal/persistent-node.h +216 -0
- package/pods/Headers/include/cppgc/internal/pointer-policies.h +186 -0
- package/pods/Headers/include/cppgc/internal/write-barrier.h +435 -0
- package/pods/Headers/include/cppgc/liveness-broker.h +77 -0
- package/pods/Headers/include/cppgc/macros.h +26 -0
- package/pods/Headers/include/cppgc/member.h +291 -0
- package/pods/Headers/include/cppgc/name-provider.h +65 -0
- package/pods/Headers/include/cppgc/object-size-trait.h +58 -0
- package/pods/Headers/include/cppgc/persistent.h +370 -0
- package/pods/Headers/include/cppgc/platform.h +156 -0
- package/pods/Headers/include/cppgc/prefinalizer.h +75 -0
- package/pods/Headers/include/cppgc/process-heap-statistics.h +36 -0
- package/pods/Headers/include/cppgc/sentinel-pointer.h +32 -0
- package/pods/Headers/include/cppgc/source-location.h +92 -0
- package/pods/Headers/include/cppgc/testing.h +106 -0
- package/pods/Headers/include/cppgc/trace-trait.h +116 -0
- package/pods/Headers/include/cppgc/type-traits.h +240 -0
- package/pods/Headers/include/cppgc/visitor.h +379 -0
- package/pods/Headers/include/js_protocol-1.2.json +936 -0
- package/pods/Headers/include/js_protocol-1.3.json +1112 -0
- package/pods/Headers/include/js_protocol.pdl +1709 -0
- package/pods/Headers/include/libffi/arm64/ffi.h +524 -0
- package/pods/Headers/include/libffi/arm64/ffitarget.h +92 -0
- package/pods/Headers/include/libffi/x86_64/ffi.h +524 -0
- package/pods/Headers/include/libffi/x86_64/ffitarget.h +147 -0
- package/pods/Headers/include/libffi.h +12 -0
- package/pods/Headers/include/libplatform/DEPS +9 -0
- package/pods/Headers/include/libplatform/libplatform-export.h +29 -0
- package/pods/Headers/include/libplatform/libplatform.h +106 -0
- package/pods/Headers/include/libplatform/v8-tracing.h +333 -0
- package/pods/Headers/include/v8-array-buffer.h +433 -0
- package/pods/Headers/include/v8-callbacks.h +397 -0
- package/pods/Headers/include/v8-container.h +129 -0
- package/pods/Headers/include/v8-context.h +407 -0
- package/pods/Headers/include/v8-cppgc.h +215 -0
- package/pods/Headers/include/v8-data.h +80 -0
- package/pods/Headers/include/v8-date.h +43 -0
- package/pods/Headers/include/v8-debug.h +168 -0
- package/pods/Headers/include/v8-embedder-heap.h +218 -0
- package/pods/Headers/include/v8-embedder-state-scope.h +51 -0
- package/pods/Headers/include/v8-exception.h +217 -0
- package/pods/Headers/include/v8-extension.h +62 -0
- package/pods/Headers/include/v8-external.h +37 -0
- package/pods/Headers/include/v8-fast-api-calls.h +939 -0
- package/pods/Headers/include/v8-forward.h +81 -0
- package/pods/Headers/include/v8-function-callback.h +475 -0
- package/pods/Headers/include/v8-function.h +125 -0
- package/pods/Headers/include/v8-initialization.h +315 -0
- package/pods/Headers/include/v8-inspector-protocol.h +13 -0
- package/pods/Headers/include/v8-inspector.h +376 -0
- package/pods/Headers/include/v8-internal.h +661 -0
- package/pods/Headers/include/v8-isolate.h +1709 -0
- package/pods/Headers/include/v8-json.h +47 -0
- package/pods/Headers/include/v8-local-handle.h +455 -0
- package/pods/Headers/include/v8-locker.h +149 -0
- package/pods/Headers/include/v8-maybe.h +137 -0
- package/pods/Headers/include/v8-memory-span.h +43 -0
- package/pods/Headers/include/v8-message.h +216 -0
- package/pods/Headers/include/v8-metrics.h +255 -0
- package/pods/Headers/include/v8-microtask-queue.h +152 -0
- package/pods/Headers/include/v8-microtask.h +28 -0
- package/pods/Headers/include/v8-object.h +775 -0
- package/pods/Headers/include/v8-persistent-handle.h +590 -0
- package/pods/Headers/include/v8-platform.h +1092 -0
- package/pods/Headers/include/v8-primitive-object.h +118 -0
- package/pods/Headers/include/v8-primitive.h +866 -0
- package/pods/Headers/include/v8-profiler.h +1198 -0
- package/pods/Headers/include/v8-promise.h +174 -0
- package/pods/Headers/include/v8-proxy.h +50 -0
- package/pods/Headers/include/v8-regexp.h +105 -0
- package/pods/Headers/include/v8-script.h +748 -0
- package/pods/Headers/include/v8-snapshot.h +196 -0
- package/pods/Headers/include/v8-statistics.h +217 -0
- package/pods/Headers/include/v8-template.h +1079 -0
- package/pods/Headers/include/v8-traced-handle.h +420 -0
- package/pods/Headers/include/v8-typed-array.h +282 -0
- package/pods/Headers/include/v8-unwinder-state.h +31 -0
- package/pods/Headers/include/v8-unwinder.h +132 -0
- package/pods/Headers/include/v8-util.h +658 -0
- package/pods/Headers/include/v8-value-serializer-version.h +24 -0
- package/pods/Headers/include/v8-value-serializer.h +279 -0
- package/pods/Headers/include/v8-value.h +526 -0
- package/pods/Headers/include/v8-version-string.h +38 -0
- package/pods/Headers/include/v8-version.h +20 -0
- package/pods/Headers/include/v8-wasm-trap-handler-posix.h +31 -0
- package/pods/Headers/include/v8-wasm-trap-handler-win.h +28 -0
- package/pods/Headers/include/v8-wasm.h +257 -0
- package/pods/Headers/include/v8-weak-callback-info.h +86 -0
- package/pods/Headers/include/v8.h +88 -0
- package/pods/Headers/include/v8config.h +605 -0
- package/pods/Headers/inspector/InspectorServer.h +20 -0
- package/pods/Headers/inspector/JsV8InspectorClient.h +66 -0
- package/pods/Headers/inspector/base/trace_event/common/trace_event_common.h +1123 -0
- package/pods/Headers/inspector/base64.h +9 -0
- package/pods/Headers/inspector/src/base/address-region.h +95 -0
- package/pods/Headers/inspector/src/base/atomic-utils.h +219 -0
- package/pods/Headers/inspector/src/base/atomicops.h +332 -0
- package/pods/Headers/inspector/src/base/atomicops_internals_atomicword_compat.h +89 -0
- package/pods/Headers/inspector/src/base/base-export.h +31 -0
- package/pods/Headers/inspector/src/base/bits.h +343 -0
- package/pods/Headers/inspector/src/base/build_config.h +234 -0
- package/pods/Headers/inspector/src/base/compiler-specific.h +136 -0
- package/pods/Headers/inspector/src/base/export-template.h +163 -0
- package/pods/Headers/inspector/src/base/flags.h +130 -0
- package/pods/Headers/inspector/src/base/immediate-crash.h +162 -0
- package/pods/Headers/inspector/src/base/lazy-instance.h +258 -0
- package/pods/Headers/inspector/src/base/logging.h +417 -0
- package/pods/Headers/inspector/src/base/macros.h +423 -0
- package/pods/Headers/inspector/src/base/memory.h +89 -0
- package/pods/Headers/inspector/src/base/once.h +108 -0
- package/pods/Headers/inspector/src/base/optional.h +882 -0
- package/pods/Headers/inspector/src/base/platform/mutex.h +370 -0
- package/pods/Headers/inspector/src/base/platform/platform.h +476 -0
- package/pods/Headers/inspector/src/base/platform/semaphore.h +108 -0
- package/pods/Headers/inspector/src/base/platform/v8-time.h +513 -0
- package/pods/Headers/inspector/src/base/platform/wrappers.h +73 -0
- package/pods/Headers/inspector/src/base/safe_conversions.h +389 -0
- package/pods/Headers/inspector/src/base/safe_conversions_impl.h +822 -0
- package/pods/Headers/inspector/src/base/template-utils.h +113 -0
- package/pods/Headers/inspector/src/base/v8-fallthrough.h +21 -0
- package/pods/Headers/inspector/src/common/checks.h +38 -0
- package/pods/Headers/inspector/src/common/globals.h +1842 -0
- package/pods/Headers/inspector/src/debug/debug-interface.h +667 -0
- package/pods/Headers/inspector/src/debug/interface-types.h +175 -0
- package/pods/Headers/inspector/src/init/v8.h +52 -0
- package/pods/Headers/inspector/src/inspector/custom-preview.h +24 -0
- package/pods/Headers/inspector/src/inspector/injected-script.h +251 -0
- package/pods/Headers/inspector/src/inspector/inspected-context.h +79 -0
- package/pods/Headers/inspector/src/inspector/protocol/CSS.h +2148 -0
- package/pods/Headers/inspector/src/inspector/protocol/Console.h +211 -0
- package/pods/Headers/inspector/src/inspector/protocol/DOM.h +1008 -0
- package/pods/Headers/inspector/src/inspector/protocol/Debugger.h +892 -0
- package/pods/Headers/inspector/src/inspector/protocol/Forward.h +75 -0
- package/pods/Headers/inspector/src/inspector/protocol/HeapProfiler.h +346 -0
- package/pods/Headers/inspector/src/inspector/protocol/Log.h +342 -0
- package/pods/Headers/inspector/src/inspector/protocol/Network.h +2528 -0
- package/pods/Headers/inspector/src/inspector/protocol/Overlay.h +281 -0
- package/pods/Headers/inspector/src/inspector/protocol/Page.h +1189 -0
- package/pods/Headers/inspector/src/inspector/protocol/Profiler.h +1001 -0
- package/pods/Headers/inspector/src/inspector/protocol/Protocol.h +617 -0
- package/pods/Headers/inspector/src/inspector/protocol/Runtime.h +1696 -0
- package/pods/Headers/inspector/src/inspector/protocol/Schema.h +146 -0
- package/pods/Headers/inspector/src/inspector/protocol/Security.h +793 -0
- package/pods/Headers/inspector/src/inspector/remote-object-id.h +54 -0
- package/pods/Headers/inspector/src/inspector/search-util.h +26 -0
- package/pods/Headers/inspector/src/inspector/string-16.h +180 -0
- package/pods/Headers/inspector/src/inspector/string-util.h +128 -0
- package/pods/Headers/inspector/src/inspector/v8-console-agent-impl.h +48 -0
- package/pods/Headers/inspector/src/inspector/v8-console-message.h +147 -0
- package/pods/Headers/inspector/src/inspector/v8-console.h +173 -0
- package/pods/Headers/inspector/src/inspector/v8-css-agent-impl.h +62 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-agent-impl.h +248 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-id.h +44 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-script.h +123 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger.h +257 -0
- package/pods/Headers/inspector/src/inspector/v8-dom-agent-impl.h +91 -0
- package/pods/Headers/inspector/src/inspector/v8-heap-profiler-agent-impl.h +80 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-impl.h +191 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-session-impl.h +156 -0
- package/pods/Headers/inspector/src/inspector/v8-log-agent-impl.h +34 -0
- package/pods/Headers/inspector/src/inspector/v8-network-agent-impl.h +71 -0
- package/pods/Headers/inspector/src/inspector/v8-ns-debugger-agent-impl.h +24 -0
- package/pods/Headers/inspector/src/inspector/v8-overlay-agent-impl.h +70 -0
- package/pods/Headers/inspector/src/inspector/v8-page-agent-impl.h +88 -0
- package/pods/Headers/inspector/src/inspector/v8-profiler-agent-impl.h +104 -0
- package/pods/Headers/inspector/src/inspector/v8-regex.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-runtime-agent-impl.h +157 -0
- package/pods/Headers/inspector/src/inspector/v8-schema-agent-impl.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-stack-trace-impl.h +164 -0
- package/pods/Headers/inspector/src/inspector/v8-string-conversions.h +17 -0
- package/pods/Headers/inspector/src/inspector/v8-value-utils.h +23 -0
- package/pods/Headers/inspector/src/inspector/value-mirror.h +87 -0
- package/pods/Headers/inspector/src/libplatform/default-platform.h +92 -0
- package/pods/Headers/inspector/src/logging/tracing-flags.h +50 -0
- package/pods/Headers/inspector/src/numbers/conversions.h +183 -0
- package/pods/Headers/inspector/src/tracing/trace-event.h +664 -0
- package/pods/Headers/inspector/src/utils/allocation.h +367 -0
- package/pods/Headers/inspector/src/utils/vector.h +324 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/cbor.h +305 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/dispatch.h +314 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/error_support.h +62 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/export.h +6 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/find_by_first.h +58 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/frontend_channel.h +47 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/glue.h +80 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json.h +52 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json_platform.h +26 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/maybe.h +104 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/parser_handler.h +39 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/protocol_core.h +406 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializable.h +32 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializer_traits.h +158 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/span.h +99 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/status.h +139 -0
- package/pods/Headers/inspector/utils.h +32 -0
- package/pods/Headers/inspector/v8-inspector-platform.h +44 -0
- package/pods/Headers/jsi/decorator.h +762 -0
- package/pods/Headers/jsi/instrumentation.h +117 -0
- package/pods/Headers/jsi/jsi-inl.h +322 -0
- package/pods/Headers/jsi/jsi.h +1387 -0
- package/pods/Headers/jsi/jsilib.h +59 -0
- package/pods/Headers/jsi/threadsafe.h +79 -0
- package/pods/Headers/runtime/ArgConverter.h +61 -0
- package/pods/Headers/runtime/ArrayAdapter.h +13 -0
- package/pods/Headers/runtime/Caches.h +98 -0
- package/pods/Headers/runtime/ClassBuilder.h +61 -0
- package/pods/Headers/runtime/Common.h +9 -0
- package/pods/Headers/runtime/ConcurrentMap.h +55 -0
- package/pods/Headers/runtime/ConcurrentQueue.h +28 -0
- package/pods/Headers/runtime/Console.h +27 -0
- package/pods/Headers/runtime/Constants.h +15 -0
- package/pods/Headers/runtime/DataWrapper.h +671 -0
- package/pods/Headers/runtime/DictionaryAdapter.h +13 -0
- package/pods/Headers/runtime/ExtVector.h +21 -0
- package/pods/Headers/runtime/FFICall.h +105 -0
- package/pods/Headers/runtime/FastEnumerationAdapter.h +13 -0
- package/pods/Headers/runtime/FunctionReference.h +18 -0
- package/pods/Headers/runtime/Helpers.h +84 -0
- package/pods/Headers/runtime/InlineFunctions.h +16 -0
- package/pods/Headers/runtime/Interop.h +202 -0
- package/pods/Headers/runtime/KnownUnknownClassPair.h +35 -0
- package/pods/Headers/runtime/Metadata.h +981 -0
- package/pods/Headers/runtime/MetadataBuilder.h +72 -0
- package/pods/Headers/runtime/MetadataInlines.h +157 -0
- package/pods/Headers/runtime/ModuleInternal.h +59 -0
- package/pods/Headers/runtime/NSDataAdapter.h +13 -0
- package/pods/Headers/runtime/NativeScriptException.h +27 -0
- package/pods/Headers/runtime/ObjectManager.h +31 -0
- package/pods/Headers/runtime/OneByteStringResource.h +21 -0
- package/pods/Headers/runtime/Pointer.h +26 -0
- package/pods/Headers/runtime/PromiseProxy.h +15 -0
- package/pods/Headers/runtime/Reference.h +38 -0
- package/pods/Headers/runtime/Runtime.h +67 -0
- package/pods/Headers/runtime/RuntimeConfig.h +17 -0
- package/pods/Headers/runtime/SetTimeout.h +34 -0
- package/pods/Headers/runtime/SimpleAllocator.h +23 -0
- package/pods/Headers/runtime/StringHasher.h +315 -0
- package/pods/Headers/runtime/SymbolIterator.h +18 -0
- package/pods/Headers/runtime/SymbolLoader.h +27 -0
- package/pods/Headers/runtime/TNSDerivedClass.h +8 -0
- package/pods/Headers/runtime/TSHelpers.h +15 -0
- package/pods/Headers/runtime/Tasks.h +19 -0
- package/pods/Headers/runtime/UnmanagedType.h +21 -0
- package/pods/Headers/runtime/WeakRef.h +15 -0
- package/pods/Headers/runtime/Worker.h +26 -0
- package/pods/Headers/runtime/robin_hood.h +2184 -0
- package/pods/Headers/v8runtime/HostProxy.h +71 -0
- package/pods/Headers/v8runtime/JSIV8ValueConverter.h +70 -0
- package/pods/Headers/v8runtime/V8PointerValue.h +44 -0
- package/pods/Headers/v8runtime/V8Runtime.h +215 -0
- package/pods/Headers/v8runtime/V8RuntimeConfig.h +26 -0
- package/pods/Headers/v8runtime/V8RuntimeFactory.h +21 -0
- package/pods/NativeScript.podspec +68 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/PrivateHeaders/mason_native.h +0 -676
- package/platforms/ios/src/JSIModule.h +0 -217
- package/platforms/ios/src/JSIModule.mm +0 -2788
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
// Copyright 2020 The Chromium Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
#ifndef V8_CRDTP_PROTOCOL_CORE_H_
|
|
6
|
+
#define V8_CRDTP_PROTOCOL_CORE_H_
|
|
7
|
+
|
|
8
|
+
#include <sys/types.h>
|
|
9
|
+
|
|
10
|
+
#include <memory>
|
|
11
|
+
#include <string>
|
|
12
|
+
#include <vector>
|
|
13
|
+
|
|
14
|
+
#include "cbor.h"
|
|
15
|
+
#include "maybe.h"
|
|
16
|
+
#include "serializable.h"
|
|
17
|
+
#include "span.h"
|
|
18
|
+
#include "status.h"
|
|
19
|
+
|
|
20
|
+
namespace v8_crdtp {
|
|
21
|
+
|
|
22
|
+
class DeserializerState {
|
|
23
|
+
public:
|
|
24
|
+
using Storage = std::shared_ptr<const std::vector<uint8_t>>;
|
|
25
|
+
|
|
26
|
+
// Creates a state from the raw bytes received from the peer.
|
|
27
|
+
explicit DeserializerState(std::vector<uint8_t> bytes);
|
|
28
|
+
// Creates the state from the part of another message.
|
|
29
|
+
DeserializerState(Storage storage, span<uint8_t> span);
|
|
30
|
+
DeserializerState(const DeserializerState& r) = delete;
|
|
31
|
+
DeserializerState(DeserializerState&& r) = default;
|
|
32
|
+
|
|
33
|
+
// Registers |error|, unless the tokenizer's status is already an error.
|
|
34
|
+
void RegisterError(Error error);
|
|
35
|
+
// Registers |name| as a segment of the field path.
|
|
36
|
+
void RegisterFieldPath(span<char> name);
|
|
37
|
+
|
|
38
|
+
// Produces an error message considering |tokenizer.Status()|,
|
|
39
|
+
// status_, and field_path_.
|
|
40
|
+
std::string ErrorMessage(span<char> message_name) const;
|
|
41
|
+
Status status() const;
|
|
42
|
+
const Storage& storage() const { return storage_; }
|
|
43
|
+
cbor::CBORTokenizer* tokenizer() { return &tokenizer_; }
|
|
44
|
+
|
|
45
|
+
private:
|
|
46
|
+
const Storage storage_;
|
|
47
|
+
cbor::CBORTokenizer tokenizer_;
|
|
48
|
+
Status status_;
|
|
49
|
+
std::vector<span<char>> field_path_;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
template <typename T, typename = void>
|
|
53
|
+
struct ProtocolTypeTraits {};
|
|
54
|
+
|
|
55
|
+
template <>
|
|
56
|
+
struct ProtocolTypeTraits<bool> {
|
|
57
|
+
static bool Deserialize(DeserializerState* state, bool* value);
|
|
58
|
+
static void Serialize(bool value, std::vector<uint8_t>* bytes);
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
template <>
|
|
62
|
+
struct ProtocolTypeTraits<int32_t> {
|
|
63
|
+
static bool Deserialize(DeserializerState* state, int* value);
|
|
64
|
+
static void Serialize(int value, std::vector<uint8_t>* bytes);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
template <>
|
|
68
|
+
struct ProtocolTypeTraits<double> {
|
|
69
|
+
static bool Deserialize(DeserializerState* state, double* value);
|
|
70
|
+
static void Serialize(double value, std::vector<uint8_t>* bytes);
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
class ContainerSerializer {
|
|
74
|
+
public:
|
|
75
|
+
ContainerSerializer(std::vector<uint8_t>* bytes, uint8_t tag);
|
|
76
|
+
|
|
77
|
+
template <typename T>
|
|
78
|
+
void AddField(span<char> field_name, const T& value) {
|
|
79
|
+
cbor::EncodeString8(
|
|
80
|
+
span<uint8_t>(reinterpret_cast<const uint8_t*>(field_name.data()),
|
|
81
|
+
field_name.size()),
|
|
82
|
+
bytes_);
|
|
83
|
+
ProtocolTypeTraits<T>::Serialize(value, bytes_);
|
|
84
|
+
}
|
|
85
|
+
template <typename T>
|
|
86
|
+
void AddField(span<char> field_name, const detail::ValueMaybe<T>& value) {
|
|
87
|
+
if (!value.isJust())
|
|
88
|
+
return;
|
|
89
|
+
AddField(field_name, value.fromJust());
|
|
90
|
+
}
|
|
91
|
+
template <typename T>
|
|
92
|
+
void AddField(span<char> field_name, const detail::PtrMaybe<T>& value) {
|
|
93
|
+
if (!value.isJust())
|
|
94
|
+
return;
|
|
95
|
+
AddField(field_name, *value.fromJust());
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
void EncodeStop();
|
|
99
|
+
|
|
100
|
+
private:
|
|
101
|
+
std::vector<uint8_t>* const bytes_;
|
|
102
|
+
cbor::EnvelopeEncoder envelope_;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
class ObjectSerializer {
|
|
106
|
+
public:
|
|
107
|
+
ObjectSerializer();
|
|
108
|
+
~ObjectSerializer();
|
|
109
|
+
|
|
110
|
+
template <typename T>
|
|
111
|
+
void AddField(span<char> name, const T& field) {
|
|
112
|
+
serializer_.AddField(name, field);
|
|
113
|
+
}
|
|
114
|
+
std::unique_ptr<Serializable> Finish();
|
|
115
|
+
|
|
116
|
+
private:
|
|
117
|
+
std::vector<uint8_t> owned_bytes_;
|
|
118
|
+
ContainerSerializer serializer_;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
class DeserializerDescriptor {
|
|
122
|
+
public:
|
|
123
|
+
struct Field {
|
|
124
|
+
span<char> name;
|
|
125
|
+
bool is_optional;
|
|
126
|
+
bool (*deserializer)(DeserializerState* state, void* obj);
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
DeserializerDescriptor(const Field* fields, size_t field_count);
|
|
130
|
+
|
|
131
|
+
bool Deserialize(DeserializerState* state, void* obj) const;
|
|
132
|
+
|
|
133
|
+
private:
|
|
134
|
+
bool DeserializeField(DeserializerState* state,
|
|
135
|
+
span<char> name,
|
|
136
|
+
int* seen_mandatory_fields,
|
|
137
|
+
void* obj) const;
|
|
138
|
+
|
|
139
|
+
const Field* const fields_;
|
|
140
|
+
const size_t field_count_;
|
|
141
|
+
const int mandatory_field_mask_;
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
template <typename T>
|
|
145
|
+
struct ProtocolTypeTraits<std::vector<T>> {
|
|
146
|
+
static bool Deserialize(DeserializerState* state, std::vector<T>* value) {
|
|
147
|
+
auto* tokenizer = state->tokenizer();
|
|
148
|
+
if (tokenizer->TokenTag() == cbor::CBORTokenTag::ENVELOPE)
|
|
149
|
+
tokenizer->EnterEnvelope();
|
|
150
|
+
if (tokenizer->TokenTag() != cbor::CBORTokenTag::ARRAY_START) {
|
|
151
|
+
state->RegisterError(Error::CBOR_ARRAY_START_EXPECTED);
|
|
152
|
+
return false;
|
|
153
|
+
}
|
|
154
|
+
assert(value->empty());
|
|
155
|
+
tokenizer->Next();
|
|
156
|
+
for (; tokenizer->TokenTag() != cbor::CBORTokenTag::STOP;
|
|
157
|
+
tokenizer->Next()) {
|
|
158
|
+
value->emplace_back();
|
|
159
|
+
if (!ProtocolTypeTraits<T>::Deserialize(state, &value->back()))
|
|
160
|
+
return false;
|
|
161
|
+
}
|
|
162
|
+
return true;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
static void Serialize(const std::vector<T>& value,
|
|
166
|
+
std::vector<uint8_t>* bytes) {
|
|
167
|
+
ContainerSerializer container_serializer(
|
|
168
|
+
bytes, cbor::EncodeIndefiniteLengthArrayStart());
|
|
169
|
+
for (const auto& item : value)
|
|
170
|
+
ProtocolTypeTraits<T>::Serialize(item, bytes);
|
|
171
|
+
container_serializer.EncodeStop();
|
|
172
|
+
}
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
template <typename T>
|
|
176
|
+
struct ProtocolTypeTraits<std::unique_ptr<std::vector<T>>> {
|
|
177
|
+
static bool Deserialize(DeserializerState* state,
|
|
178
|
+
std::unique_ptr<std::vector<T>>* value) {
|
|
179
|
+
auto res = std::make_unique<std::vector<T>>();
|
|
180
|
+
if (!ProtocolTypeTraits<std::vector<T>>::Deserialize(state, res.get()))
|
|
181
|
+
return false;
|
|
182
|
+
*value = std::move(res);
|
|
183
|
+
return true;
|
|
184
|
+
}
|
|
185
|
+
static void Serialize(const std::unique_ptr<std::vector<T>>& value,
|
|
186
|
+
std::vector<uint8_t>* bytes) {
|
|
187
|
+
ProtocolTypeTraits<std::vector<T>>::Serialize(*value, bytes);
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
class DeferredMessage : public Serializable {
|
|
192
|
+
public:
|
|
193
|
+
static std::unique_ptr<DeferredMessage> FromSerializable(
|
|
194
|
+
std::unique_ptr<Serializable> serializeable);
|
|
195
|
+
static std::unique_ptr<DeferredMessage> FromSpan(span<uint8_t> bytes);
|
|
196
|
+
|
|
197
|
+
~DeferredMessage() override = default;
|
|
198
|
+
virtual DeserializerState MakeDeserializer() const = 0;
|
|
199
|
+
|
|
200
|
+
protected:
|
|
201
|
+
DeferredMessage() = default;
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
template <>
|
|
205
|
+
struct ProtocolTypeTraits<std::unique_ptr<DeferredMessage>> {
|
|
206
|
+
static bool Deserialize(DeserializerState* state,
|
|
207
|
+
std::unique_ptr<DeferredMessage>* value);
|
|
208
|
+
static void Serialize(const std::unique_ptr<DeferredMessage>& value,
|
|
209
|
+
std::vector<uint8_t>* bytes);
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
template <typename T>
|
|
213
|
+
struct ProtocolTypeTraits<detail::ValueMaybe<T>> {
|
|
214
|
+
static bool Deserialize(DeserializerState* state,
|
|
215
|
+
detail::ValueMaybe<T>* value) {
|
|
216
|
+
T res;
|
|
217
|
+
if (!ProtocolTypeTraits<T>::Deserialize(state, &res))
|
|
218
|
+
return false;
|
|
219
|
+
*value = std::move(res);
|
|
220
|
+
return true;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
static void Serialize(const detail::ValueMaybe<T>& value,
|
|
224
|
+
std::vector<uint8_t>* bytes) {
|
|
225
|
+
ProtocolTypeTraits<T>::Serialize(value.fromJust(), bytes);
|
|
226
|
+
}
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
template <typename T>
|
|
230
|
+
struct ProtocolTypeTraits<detail::PtrMaybe<T>> {
|
|
231
|
+
static bool Deserialize(DeserializerState* state,
|
|
232
|
+
detail::PtrMaybe<T>* value) {
|
|
233
|
+
std::unique_ptr<T> res;
|
|
234
|
+
if (!ProtocolTypeTraits<std::unique_ptr<T>>::Deserialize(state, &res))
|
|
235
|
+
return false;
|
|
236
|
+
*value = std::move(res);
|
|
237
|
+
return true;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
static void Serialize(const detail::PtrMaybe<T>& value,
|
|
241
|
+
std::vector<uint8_t>* bytes) {
|
|
242
|
+
ProtocolTypeTraits<T>::Serialize(*value.fromJust(), bytes);
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
|
|
246
|
+
template <typename T>
|
|
247
|
+
class DeserializableProtocolObject {
|
|
248
|
+
public:
|
|
249
|
+
static StatusOr<std::unique_ptr<T>> ReadFrom(
|
|
250
|
+
const DeferredMessage& deferred_message) {
|
|
251
|
+
auto state = deferred_message.MakeDeserializer();
|
|
252
|
+
if (auto res = Deserialize(&state))
|
|
253
|
+
return StatusOr<std::unique_ptr<T>>(std::move(res));
|
|
254
|
+
return StatusOr<std::unique_ptr<T>>(state.status());
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
static StatusOr<std::unique_ptr<T>> ReadFrom(std::vector<uint8_t> bytes) {
|
|
258
|
+
auto state = DeserializerState(std::move(bytes));
|
|
259
|
+
if (auto res = Deserialize(&state))
|
|
260
|
+
return StatusOr<std::unique_ptr<T>>(std::move(res));
|
|
261
|
+
return StatusOr<std::unique_ptr<T>>(state.status());
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
// Short-hand for legacy clients. This would swallow any errors, consider
|
|
265
|
+
// using ReadFrom.
|
|
266
|
+
static std::unique_ptr<T> FromBinary(const uint8_t* bytes, size_t size) {
|
|
267
|
+
std::unique_ptr<T> value(new T());
|
|
268
|
+
auto deserializer = DeferredMessage::FromSpan(span<uint8_t>(bytes, size))
|
|
269
|
+
->MakeDeserializer();
|
|
270
|
+
Deserialize(&deserializer, value.get());
|
|
271
|
+
return value;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
static bool Deserialize(DeserializerState* state, T* value) {
|
|
275
|
+
return T::deserializer_descriptor().Deserialize(state, value);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
protected:
|
|
279
|
+
// This is for the sake of the macros used by derived classes thay may be in
|
|
280
|
+
// a different namespace;
|
|
281
|
+
using ProtocolType = T;
|
|
282
|
+
using DeserializerDescriptorType = DeserializerDescriptor;
|
|
283
|
+
template <typename U>
|
|
284
|
+
using DeserializableBase = DeserializableProtocolObject<U>;
|
|
285
|
+
|
|
286
|
+
DeserializableProtocolObject() = default;
|
|
287
|
+
~DeserializableProtocolObject() = default;
|
|
288
|
+
|
|
289
|
+
private:
|
|
290
|
+
friend struct ProtocolTypeTraits<std::unique_ptr<T>>;
|
|
291
|
+
|
|
292
|
+
static std::unique_ptr<T> Deserialize(DeserializerState* state) {
|
|
293
|
+
std::unique_ptr<T> value(new T());
|
|
294
|
+
if (Deserialize(state, value.get()))
|
|
295
|
+
return value;
|
|
296
|
+
return nullptr;
|
|
297
|
+
}
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
template <typename T>
|
|
301
|
+
class ProtocolObject : public Serializable,
|
|
302
|
+
public DeserializableProtocolObject<T> {
|
|
303
|
+
public:
|
|
304
|
+
std::unique_ptr<T> Clone() const {
|
|
305
|
+
std::vector<uint8_t> serialized;
|
|
306
|
+
AppendSerialized(&serialized);
|
|
307
|
+
return T::ReadFrom(std::move(serialized)).value();
|
|
308
|
+
}
|
|
309
|
+
// TODO(caseq): compatibility only, remove.
|
|
310
|
+
std::unique_ptr<T> clone() const { return Clone(); }
|
|
311
|
+
|
|
312
|
+
protected:
|
|
313
|
+
using ProtocolType = T;
|
|
314
|
+
|
|
315
|
+
ProtocolObject() = default;
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
template <typename T>
|
|
319
|
+
struct ProtocolTypeTraits<
|
|
320
|
+
T,
|
|
321
|
+
typename std::enable_if<
|
|
322
|
+
std::is_base_of<ProtocolObject<T>, T>::value>::type> {
|
|
323
|
+
static bool Deserialize(DeserializerState* state, T* value) {
|
|
324
|
+
return T::Deserialize(state, value);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
static void Serialize(const T& value, std::vector<uint8_t>* bytes) {
|
|
328
|
+
value.AppendSerialized(bytes);
|
|
329
|
+
}
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
template <typename T>
|
|
333
|
+
struct ProtocolTypeTraits<
|
|
334
|
+
std::unique_ptr<T>,
|
|
335
|
+
typename std::enable_if<
|
|
336
|
+
std::is_base_of<ProtocolObject<T>, T>::value>::type> {
|
|
337
|
+
static bool Deserialize(DeserializerState* state, std::unique_ptr<T>* value) {
|
|
338
|
+
std::unique_ptr<T> res = T::Deserialize(state);
|
|
339
|
+
if (!res)
|
|
340
|
+
return false;
|
|
341
|
+
*value = std::move(res);
|
|
342
|
+
return true;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
static void Serialize(const std::unique_ptr<T>& value,
|
|
346
|
+
std::vector<uint8_t>* bytes) {
|
|
347
|
+
ProtocolTypeTraits<T>::Serialize(*value, bytes);
|
|
348
|
+
}
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
#define DECLARE_DESERIALIZATION_SUPPORT() \
|
|
352
|
+
friend DeserializableBase<ProtocolType>; \
|
|
353
|
+
static const DeserializerDescriptorType& deserializer_descriptor()
|
|
354
|
+
|
|
355
|
+
#define DECLARE_SERIALIZATION_SUPPORT() \
|
|
356
|
+
public: \
|
|
357
|
+
void AppendSerialized(std::vector<uint8_t>* bytes) const override; \
|
|
358
|
+
\
|
|
359
|
+
private: \
|
|
360
|
+
friend DeserializableBase<ProtocolType>; \
|
|
361
|
+
static const DeserializerDescriptorType& deserializer_descriptor()
|
|
362
|
+
|
|
363
|
+
#define V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, is_optional) \
|
|
364
|
+
{ \
|
|
365
|
+
MakeSpan(name), is_optional, \
|
|
366
|
+
[](DeserializerState* __state, void* __obj) -> bool { \
|
|
367
|
+
return ProtocolTypeTraits<decltype(field)>::Deserialize( \
|
|
368
|
+
__state, &static_cast<ProtocolType*>(__obj)->field); \
|
|
369
|
+
} \
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
// clang-format off
|
|
373
|
+
#define V8_CRDTP_BEGIN_DESERIALIZER(type) \
|
|
374
|
+
const type::DeserializerDescriptorType& type::deserializer_descriptor() { \
|
|
375
|
+
using namespace v8_crdtp; \
|
|
376
|
+
static const DeserializerDescriptorType::Field fields[] = {
|
|
377
|
+
|
|
378
|
+
#define V8_CRDTP_END_DESERIALIZER() \
|
|
379
|
+
}; \
|
|
380
|
+
static const DeserializerDescriptorType s_desc( \
|
|
381
|
+
fields, sizeof fields / sizeof fields[0]); \
|
|
382
|
+
return s_desc; \
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
#define V8_CRDTP_DESERIALIZE_FIELD(name, field) \
|
|
386
|
+
V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, false)
|
|
387
|
+
#define V8_CRDTP_DESERIALIZE_FIELD_OPT(name, field) \
|
|
388
|
+
V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, true)
|
|
389
|
+
|
|
390
|
+
#define V8_CRDTP_BEGIN_SERIALIZER(type) \
|
|
391
|
+
void type::AppendSerialized(std::vector<uint8_t>* bytes) const { \
|
|
392
|
+
using namespace v8_crdtp; \
|
|
393
|
+
ContainerSerializer __serializer(bytes, \
|
|
394
|
+
cbor::EncodeIndefiniteLengthMapStart());
|
|
395
|
+
|
|
396
|
+
#define V8_CRDTP_SERIALIZE_FIELD(name, field) \
|
|
397
|
+
__serializer.AddField(MakeSpan(name), field)
|
|
398
|
+
|
|
399
|
+
#define V8_CRDTP_END_SERIALIZER() \
|
|
400
|
+
__serializer.EncodeStop(); \
|
|
401
|
+
} class __cddtp_dummy_name
|
|
402
|
+
// clang-format on
|
|
403
|
+
|
|
404
|
+
} // namespace v8_crdtp
|
|
405
|
+
|
|
406
|
+
#endif // V8_CRDTP_PROTOCOL_CORE_H_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
#ifndef V8_CRDTP_SERIALIZABLE_H_
|
|
6
|
+
#define V8_CRDTP_SERIALIZABLE_H_
|
|
7
|
+
|
|
8
|
+
#include <cstdint>
|
|
9
|
+
#include <memory>
|
|
10
|
+
#include <vector>
|
|
11
|
+
#include "export.h"
|
|
12
|
+
|
|
13
|
+
namespace v8_crdtp {
|
|
14
|
+
// =============================================================================
|
|
15
|
+
// Serializable - An object to be emitted as a sequence of bytes.
|
|
16
|
+
// =============================================================================
|
|
17
|
+
class Serializable {
|
|
18
|
+
public:
|
|
19
|
+
// Convenience: Invokes |AppendSerialized| on an empty vector.
|
|
20
|
+
std::vector<uint8_t> Serialize() const;
|
|
21
|
+
|
|
22
|
+
virtual void AppendSerialized(std::vector<uint8_t>* out) const = 0;
|
|
23
|
+
|
|
24
|
+
virtual ~Serializable() = default;
|
|
25
|
+
|
|
26
|
+
// Wraps a vector of |bytes| into a Serializable for situations in which we
|
|
27
|
+
// eagerly serialize a structure.
|
|
28
|
+
static std::unique_ptr<Serializable> From(std::vector<uint8_t> bytes);
|
|
29
|
+
};
|
|
30
|
+
} // namespace v8_crdtp
|
|
31
|
+
|
|
32
|
+
#endif // V8_CRDTP_SERIALIZABLE_H_
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
#ifndef V8_CRDTP_SERIALIZER_TRAITS_H_
|
|
6
|
+
#define V8_CRDTP_SERIALIZER_TRAITS_H_
|
|
7
|
+
|
|
8
|
+
#include <memory>
|
|
9
|
+
#include <string>
|
|
10
|
+
#include <vector>
|
|
11
|
+
#include "cbor.h"
|
|
12
|
+
#include "maybe.h"
|
|
13
|
+
#include "span.h"
|
|
14
|
+
|
|
15
|
+
namespace v8_crdtp {
|
|
16
|
+
// =============================================================================
|
|
17
|
+
// SerializerTraits - Encodes field values of protocol objects in CBOR.
|
|
18
|
+
// =============================================================================
|
|
19
|
+
//
|
|
20
|
+
// A family of serialization functions which are used by FieldSerializerTraits
|
|
21
|
+
// (below) to encode field values in CBOR. Conceptually, it's this:
|
|
22
|
+
//
|
|
23
|
+
// Serialize(bool value, std::vector<uint8_t>* out);
|
|
24
|
+
// Serialize(int32_t value, std::vector<uint8_t>* out);
|
|
25
|
+
// Serialize(double value, std::vector<uint8_t>* out);
|
|
26
|
+
// ...
|
|
27
|
+
//
|
|
28
|
+
// However, if this was to use straight-forward overloading, implicit
|
|
29
|
+
// type conversions would lead to ambiguity - e.g., a bool could be
|
|
30
|
+
// represented as an int32_t, but it should really be encoded as a bool.
|
|
31
|
+
// The template parameterized / specialized structs accomplish this.
|
|
32
|
+
//
|
|
33
|
+
// SerializerTraits<bool>::Serialize(bool value, std::vector<uint8_t>* out);
|
|
34
|
+
// SerializerTraits<int32>::Serialize(int32_t value, std::vector<uint8_t>* out);
|
|
35
|
+
// SerializerTraits<double>::Serialize(double value, std::vector<uint8_t>* out);
|
|
36
|
+
template <typename T>
|
|
37
|
+
struct SerializerTraits {
|
|
38
|
+
// |Serializable| (defined in serializable.h) already knows how to serialize
|
|
39
|
+
// to CBOR, so we can just delegate. This covers domain specific types,
|
|
40
|
+
// protocol::Binary, etc.
|
|
41
|
+
// However, we use duck-typing here, because Exported, which is part of the V8
|
|
42
|
+
// headers also comes with AppendSerialized, and logically it's the same type,
|
|
43
|
+
// but it lives in a different namespace (v8_inspector::protocol::Exported).
|
|
44
|
+
template <
|
|
45
|
+
typename LikeSerializable,
|
|
46
|
+
typename std::enable_if_t<std::is_member_pointer<decltype(
|
|
47
|
+
&LikeSerializable::AppendSerialized)>{},
|
|
48
|
+
int> = 0>
|
|
49
|
+
static void Serialize(const LikeSerializable& value,
|
|
50
|
+
std::vector<uint8_t>* out) {
|
|
51
|
+
value.AppendSerialized(out);
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
// This covers std::string, which is assumed to be UTF-8.
|
|
56
|
+
// The two other string implementations that are used in the protocol bindings:
|
|
57
|
+
// - WTF::String, for which the SerializerTraits specialization is located
|
|
58
|
+
// in third_party/blink/renderer/core/inspector/v8-inspector-string.h.
|
|
59
|
+
// - v8_inspector::String16, implemented in v8/src/inspector/string-16.h
|
|
60
|
+
// along with its SerializerTraits specialization.
|
|
61
|
+
template <>
|
|
62
|
+
struct SerializerTraits<std::string> {
|
|
63
|
+
static void Serialize(const std::string& str, std::vector<uint8_t>* out) {
|
|
64
|
+
cbor::EncodeString8(SpanFrom(str), out);
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
template <>
|
|
69
|
+
struct SerializerTraits<bool> {
|
|
70
|
+
static void Serialize(bool value, std::vector<uint8_t>* out) {
|
|
71
|
+
out->push_back(value ? cbor::EncodeTrue() : cbor::EncodeFalse());
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
template <>
|
|
76
|
+
struct SerializerTraits<int32_t> {
|
|
77
|
+
static void Serialize(int32_t value, std::vector<uint8_t>* out) {
|
|
78
|
+
cbor::EncodeInt32(value, out);
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
template <>
|
|
83
|
+
struct SerializerTraits<double> {
|
|
84
|
+
static void Serialize(double value, std::vector<uint8_t>* out) {
|
|
85
|
+
cbor::EncodeDouble(value, out);
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
template <typename T>
|
|
90
|
+
struct SerializerTraits<std::vector<T>> {
|
|
91
|
+
static void Serialize(const std::vector<T>& value,
|
|
92
|
+
std::vector<uint8_t>* out) {
|
|
93
|
+
out->push_back(cbor::EncodeIndefiniteLengthArrayStart());
|
|
94
|
+
for (const T& element : value)
|
|
95
|
+
SerializerTraits<T>::Serialize(element, out);
|
|
96
|
+
out->push_back(cbor::EncodeStop());
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
template <typename T>
|
|
101
|
+
struct SerializerTraits<std::unique_ptr<T>> {
|
|
102
|
+
static void Serialize(const std::unique_ptr<T>& value,
|
|
103
|
+
std::vector<uint8_t>* out) {
|
|
104
|
+
SerializerTraits<T>::Serialize(*value, out);
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
// =============================================================================
|
|
109
|
+
// FieldSerializerTraits - Encodes fields of protocol objects in CBOR
|
|
110
|
+
// =============================================================================
|
|
111
|
+
//
|
|
112
|
+
// The generated code (see TypeBuilder_cpp.template) invokes SerializeField,
|
|
113
|
+
// which then instantiates the FieldSerializerTraits to emit the appropriate
|
|
114
|
+
// existence checks / dereference for the field value. This avoids emitting
|
|
115
|
+
// the field name if the value for an optional field isn't set.
|
|
116
|
+
template <typename T>
|
|
117
|
+
struct FieldSerializerTraits {
|
|
118
|
+
static void Serialize(span<uint8_t> field_name,
|
|
119
|
+
const T& field_value,
|
|
120
|
+
std::vector<uint8_t>* out) {
|
|
121
|
+
cbor::EncodeString8(field_name, out);
|
|
122
|
+
SerializerTraits<T>::Serialize(field_value, out);
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
template <typename T>
|
|
127
|
+
struct FieldSerializerTraits<detail::PtrMaybe<T>> {
|
|
128
|
+
static void Serialize(span<uint8_t> field_name,
|
|
129
|
+
const detail::PtrMaybe<T>& field_value,
|
|
130
|
+
std::vector<uint8_t>* out) {
|
|
131
|
+
if (!field_value.isJust())
|
|
132
|
+
return;
|
|
133
|
+
cbor::EncodeString8(field_name, out);
|
|
134
|
+
SerializerTraits<T>::Serialize(*field_value.fromJust(), out);
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
template <typename T>
|
|
139
|
+
struct FieldSerializerTraits<detail::ValueMaybe<T>> {
|
|
140
|
+
static void Serialize(span<uint8_t> field_name,
|
|
141
|
+
const detail::ValueMaybe<T>& field_value,
|
|
142
|
+
std::vector<uint8_t>* out) {
|
|
143
|
+
if (!field_value.isJust())
|
|
144
|
+
return;
|
|
145
|
+
cbor::EncodeString8(field_name, out);
|
|
146
|
+
SerializerTraits<T>::Serialize(field_value.fromJust(), out);
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
template <typename T>
|
|
151
|
+
void SerializeField(span<uint8_t> field_name,
|
|
152
|
+
const T& field_value,
|
|
153
|
+
std::vector<uint8_t>* out) {
|
|
154
|
+
FieldSerializerTraits<T>::Serialize(field_name, field_value, out);
|
|
155
|
+
}
|
|
156
|
+
} // namespace v8_crdtp
|
|
157
|
+
|
|
158
|
+
#endif // V8_CRDTP_SERIALIZER_TRAITS_H_
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
#ifndef V8_CRDTP_SPAN_H_
|
|
6
|
+
#define V8_CRDTP_SPAN_H_
|
|
7
|
+
|
|
8
|
+
#include <cstdint>
|
|
9
|
+
#include <cstring>
|
|
10
|
+
#include <string>
|
|
11
|
+
|
|
12
|
+
#include "export.h"
|
|
13
|
+
|
|
14
|
+
namespace v8_crdtp {
|
|
15
|
+
// =============================================================================
|
|
16
|
+
// span - sequence of bytes
|
|
17
|
+
// =============================================================================
|
|
18
|
+
|
|
19
|
+
// This template is similar to std::span, which will be included in C++20.
|
|
20
|
+
template <typename T>
|
|
21
|
+
class span {
|
|
22
|
+
public:
|
|
23
|
+
using index_type = size_t;
|
|
24
|
+
|
|
25
|
+
constexpr span() : data_(nullptr), size_(0) {}
|
|
26
|
+
constexpr span(const T* data, index_type size) : data_(data), size_(size) {}
|
|
27
|
+
|
|
28
|
+
constexpr const T* data() const { return data_; }
|
|
29
|
+
|
|
30
|
+
constexpr const T* begin() const { return data_; }
|
|
31
|
+
constexpr const T* end() const { return data_ + size_; }
|
|
32
|
+
|
|
33
|
+
constexpr const T& operator[](index_type idx) const { return data_[idx]; }
|
|
34
|
+
|
|
35
|
+
constexpr span<T> subspan(index_type offset, index_type count) const {
|
|
36
|
+
return span(data_ + offset, count);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
constexpr span<T> subspan(index_type offset) const {
|
|
40
|
+
return span(data_ + offset, size_ - offset);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
constexpr bool empty() const { return size_ == 0; }
|
|
44
|
+
|
|
45
|
+
constexpr index_type size() const { return size_; }
|
|
46
|
+
constexpr index_type size_bytes() const { return size_ * sizeof(T); }
|
|
47
|
+
|
|
48
|
+
private:
|
|
49
|
+
const T* data_;
|
|
50
|
+
index_type size_;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
template <size_t N>
|
|
54
|
+
constexpr span<char> MakeSpan(const char (&str)[N]) {
|
|
55
|
+
return span<char>(str, N - 1);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
template <size_t N>
|
|
59
|
+
constexpr span<uint8_t> SpanFrom(const char (&str)[N]) {
|
|
60
|
+
return span<uint8_t>(reinterpret_cast<const uint8_t*>(str), N - 1);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
constexpr inline span<uint8_t> SpanFrom(const char* str) {
|
|
64
|
+
return str ? span<uint8_t>(reinterpret_cast<const uint8_t*>(str), strlen(str))
|
|
65
|
+
: span<uint8_t>();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
inline span<uint8_t> SpanFrom(const std::string& v) {
|
|
69
|
+
return span<uint8_t>(reinterpret_cast<const uint8_t*>(v.data()), v.size());
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// This SpanFrom routine works for std::vector<uint8_t> and
|
|
73
|
+
// std::vector<uint16_t>, but also for base::span<const uint8_t> in Chromium.
|
|
74
|
+
template <typename C,
|
|
75
|
+
typename = std::enable_if_t<
|
|
76
|
+
std::is_unsigned<typename C::value_type>{} &&
|
|
77
|
+
std::is_member_function_pointer<decltype(&C::size)>{}>>
|
|
78
|
+
inline span<typename C::value_type> SpanFrom(const C& v) {
|
|
79
|
+
return span<typename C::value_type>(v.data(), v.size());
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// Less than / equality comparison functions for sorting / searching for byte
|
|
83
|
+
// spans.
|
|
84
|
+
bool SpanLessThan(span<uint8_t> x, span<uint8_t> y) noexcept;
|
|
85
|
+
bool SpanEquals(span<uint8_t> x, span<uint8_t> y) noexcept;
|
|
86
|
+
|
|
87
|
+
// Less than / equality comparison functions for sorting / searching for byte
|
|
88
|
+
// spans.
|
|
89
|
+
bool SpanLessThan(span<char> x, span<char> y) noexcept;
|
|
90
|
+
bool SpanEquals(span<char> x, span<char> y) noexcept;
|
|
91
|
+
|
|
92
|
+
struct SpanLt {
|
|
93
|
+
bool operator()(span<uint8_t> l, span<uint8_t> r) const {
|
|
94
|
+
return SpanLessThan(l, r);
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
} // namespace v8_crdtp
|
|
98
|
+
|
|
99
|
+
#endif // V8_CRDTP_SPAN_H_
|