react-native-wgpu 0.2.10 → 0.3.0
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/README.md +155 -69
- package/android/CMakeLists.txt +4 -5
- package/android/build.gradle +7 -18
- package/android/src/main/java/com/webgpu/WebGPUViewPackage.java +34 -10
- package/apple/MetalView.mm +0 -19
- package/apple/WebGPUModule.h +1 -9
- package/apple/WebGPUModule.mm +0 -3
- package/apple/WebGPUView.h +0 -3
- package/apple/WebGPUView.mm +0 -2
- package/cpp/WGPULogger.h +10 -0
- package/cpp/dawn/dawn_proc_table.h +1 -1
- package/cpp/dawn/webgpu.h +4855 -0
- package/cpp/dawn/webgpu_cpp.h +10168 -0
- package/cpp/dawn/wire/client/webgpu.h +354 -0
- package/cpp/dawn/wire/client/webgpu_cpp.h +10343 -0
- package/cpp/dawn/wire/client/webgpu_cpp_print.h +2715 -0
- package/cpp/jsi/RNFJSIConverter.h +17 -59
- package/cpp/rnwgpu/RNWebGPUManager.cpp +1 -9
- package/cpp/rnwgpu/api/GPU.cpp +51 -26
- package/cpp/rnwgpu/api/GPU.h +5 -18
- package/cpp/rnwgpu/api/GPUAdapter.cpp +75 -54
- package/cpp/rnwgpu/api/GPUAdapter.h +6 -6
- package/cpp/rnwgpu/api/GPUAdapterInfo.h +0 -1
- package/cpp/rnwgpu/api/GPUBindGroup.h +1 -3
- package/cpp/rnwgpu/api/GPUBindGroupLayout.h +1 -3
- package/cpp/rnwgpu/api/GPUBuffer.cpp +35 -32
- package/cpp/rnwgpu/api/GPUBuffer.h +9 -7
- package/cpp/rnwgpu/api/GPUCanvasContext.cpp +5 -1
- package/cpp/rnwgpu/api/GPUCanvasContext.h +0 -2
- package/cpp/rnwgpu/api/GPUCommandBuffer.h +1 -3
- package/cpp/rnwgpu/api/GPUCommandEncoder.h +1 -3
- package/cpp/rnwgpu/api/GPUCompilationInfo.h +0 -2
- package/cpp/rnwgpu/api/GPUCompilationMessage.h +1 -3
- package/cpp/rnwgpu/api/GPUComputePassEncoder.h +1 -3
- package/cpp/rnwgpu/api/GPUComputePipeline.h +1 -3
- package/cpp/rnwgpu/api/GPUDevice.cpp +183 -128
- package/cpp/rnwgpu/api/GPUDevice.h +22 -21
- package/cpp/rnwgpu/api/GPUDeviceLostInfo.h +1 -3
- package/cpp/rnwgpu/api/GPUExternalTexture.h +1 -3
- package/cpp/rnwgpu/api/GPUPipelineLayout.h +1 -3
- package/cpp/rnwgpu/api/GPUQuerySet.h +1 -3
- package/cpp/rnwgpu/api/GPUQueue.cpp +19 -8
- package/cpp/rnwgpu/api/GPUQueue.h +7 -6
- package/cpp/rnwgpu/api/GPURenderBundle.h +1 -3
- package/cpp/rnwgpu/api/GPURenderBundleEncoder.h +1 -3
- package/cpp/rnwgpu/api/GPURenderPassEncoder.h +1 -3
- package/cpp/rnwgpu/api/GPURenderPipeline.h +1 -3
- package/cpp/rnwgpu/api/GPUSampler.h +1 -3
- package/cpp/rnwgpu/api/GPUShaderModule.cpp +42 -28
- package/cpp/rnwgpu/api/GPUShaderModule.h +6 -6
- package/cpp/rnwgpu/api/GPUSupportedLimits.h +1 -3
- package/cpp/rnwgpu/api/GPUTexture.h +1 -3
- package/cpp/rnwgpu/api/GPUTextureView.h +1 -3
- package/cpp/rnwgpu/api/RNWebGPU.h +1 -7
- package/cpp/rnwgpu/async/AsyncDispatcher.h +28 -0
- package/cpp/rnwgpu/async/AsyncRunner.cpp +215 -0
- package/cpp/rnwgpu/async/AsyncRunner.h +53 -0
- package/cpp/rnwgpu/async/AsyncTaskHandle.cpp +181 -0
- package/cpp/rnwgpu/async/AsyncTaskHandle.h +55 -0
- package/cpp/rnwgpu/async/JSIMicrotaskDispatcher.cpp +23 -0
- package/cpp/rnwgpu/async/JSIMicrotaskDispatcher.h +22 -0
- package/cpp/webgpu/webgpu.h +5 -4827
- package/cpp/webgpu/webgpu_cpp.h +5 -10140
- package/cpp/{dawn/native/WebGPUBackend.h → webgpu/webgpu_cpp_print.h} +4 -20
- package/lib/commonjs/Canvas.js +6 -66
- package/lib/commonjs/Canvas.js.map +1 -1
- package/lib/commonjs/hooks.js +6 -42
- package/lib/commonjs/hooks.js.map +1 -1
- package/lib/module/Canvas.js +7 -67
- package/lib/module/Canvas.js.map +1 -1
- package/lib/module/hooks.js +5 -40
- package/lib/module/hooks.js.map +1 -1
- package/lib/typescript/lib/commonjs/hooks.d.ts +1 -5
- package/lib/typescript/lib/commonjs/hooks.d.ts.map +1 -1
- package/lib/typescript/lib/module/Canvas.d.ts.map +1 -1
- package/lib/typescript/lib/module/hooks.d.ts +1 -5
- package/lib/typescript/lib/module/hooks.d.ts.map +1 -1
- package/lib/typescript/src/Canvas.d.ts +0 -1
- package/lib/typescript/src/Canvas.d.ts.map +1 -1
- package/lib/typescript/src/hooks.d.ts +2 -7
- package/lib/typescript/src/hooks.d.ts.map +1 -1
- package/libs/android/arm64-v8a/libwebgpu_dawn.so +0 -0
- package/libs/android/armeabi-v7a/libwebgpu_dawn.so +0 -0
- package/libs/android/x86/libwebgpu_dawn.so +0 -0
- package/libs/android/x86_64/libwebgpu_dawn.so +0 -0
- package/libs/apple/libwebgpu_dawn.xcframework/Info.plist +5 -35
- package/libs/apple/libwebgpu_dawn.xcframework/ios-arm64/libwebgpu_dawn.a +0 -0
- package/libs/apple/libwebgpu_dawn.xcframework/ios-arm64_x86_64-simulator/libwebgpu_dawn.a +0 -0
- package/libs/apple/libwebgpu_dawn.xcframework/macos-arm64_x86_64/libwebgpu_dawn.a +0 -0
- package/package.json +4 -3
- package/react-native-wgpu.podspec +12 -16
- package/src/Canvas.tsx +8 -69
- package/src/hooks.tsx +14 -48
- package/android/cpp/platform/ThreadUtils.cpp +0 -41
- package/android/src/oldarch/com/webgpu/NativeWebGPUModuleSpec.java +0 -23
- package/android/src/oldarch/com/webgpu/WebGPUViewManagerSpec.java +0 -12
- package/apple/WebGPUViewManager.mm +0 -24
- package/apple/platform/ThreadUtils.cpp +0 -34
- package/cpp/dawn/dawn_proc.h +0 -50
- package/cpp/dawn/dawn_thread_dispatch_proc.h +0 -47
- package/cpp/dawn/native/D3D11Backend.h +0 -77
- package/cpp/dawn/native/D3D12Backend.h +0 -68
- package/cpp/dawn/native/D3DBackend.h +0 -56
- package/cpp/dawn/native/MetalBackend.h +0 -56
- package/cpp/dawn/platform/DawnPlatform.h +0 -167
- package/cpp/dawn/platform/dawn_platform_export.h +0 -49
- package/cpp/platform/ThreadUtils.h +0 -30
- package/cpp/rnwgpu/api/AsyncRunner.h +0 -30
- package/cpp/threading/CallInvokerDispatcher.h +0 -37
- package/cpp/threading/Dispatcher.cpp +0 -55
- package/cpp/threading/Dispatcher.h +0 -93
- package/cpp/threading/ThreadPool.cpp +0 -88
- package/cpp/threading/ThreadPool.h +0 -53
- package/cpp/webgpu/webgpu_glfw.h +0 -88
- package/lib/typescript/src/__tests__/Alpha.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Alpha.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/ArrayBuffer.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/ArrayBuffer.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/Buffer.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Buffer.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/ComputeShader.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/ComputeShader.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/Constants.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Constants.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/Device.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Device.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/ErrorScope.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/ErrorScope.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/ExternalTexture.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/ExternalTexture.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/GPU.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/GPU.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/ImageData.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/ImageData.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/Shaders.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Shaders.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/Texture.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/Texture.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/Wireframe/Shaders.d.ts +0 -3
- package/lib/typescript/src/__tests__/components/Wireframe/Shaders.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/Wireframe/models.d.ts +0 -29
- package/lib/typescript/src/__tests__/components/Wireframe/models.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/Wireframe/utils.d.ts +0 -5
- package/lib/typescript/src/__tests__/components/Wireframe/utils.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/cube.d.ts +0 -7
- package/lib/typescript/src/__tests__/components/cube.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/mesh.d.ts +0 -22
- package/lib/typescript/src/__tests__/components/meshes/mesh.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/sphere.d.ts +0 -12
- package/lib/typescript/src/__tests__/components/meshes/sphere.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/stanfordDragon.d.ts +0 -7
- package/lib/typescript/src/__tests__/components/meshes/stanfordDragon.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/stanfordDragonData.d.ts +0 -6
- package/lib/typescript/src/__tests__/components/meshes/stanfordDragonData.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/teapot.d.ts +0 -6
- package/lib/typescript/src/__tests__/components/meshes/teapot.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/meshes/utils.d.ts +0 -10
- package/lib/typescript/src/__tests__/components/meshes/utils.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/components/triangle.d.ts +0 -3
- package/lib/typescript/src/__tests__/components/triangle.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/config.d.ts +0 -3
- package/lib/typescript/src/__tests__/config.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/ABuffer.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/ABuffer.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/Blur.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/Blur.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/Cube.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/Cube.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/FractalCube.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/FractalCube.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/OcclusionQuery.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/OcclusionQuery.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/RenderBundles.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/RenderBundles.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/Triangle.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/Triangle.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/demos/Wireframe.spec.d.ts +0 -2
- package/lib/typescript/src/__tests__/demos/Wireframe.spec.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/globalSetup.d.ts +0 -3
- package/lib/typescript/src/__tests__/globalSetup.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/globalTeardown.d.ts +0 -3
- package/lib/typescript/src/__tests__/globalTeardown.d.ts.map +0 -1
- package/lib/typescript/src/__tests__/setup.d.ts +0 -63
- package/lib/typescript/src/__tests__/setup.d.ts.map +0 -1
- package/libs/apple/arm64_iphoneos/libwebgpu_dawn.a +0 -0
- package/libs/apple/arm64_iphonesimulator/libwebgpu_dawn.a +0 -0
- package/libs/apple/arm64_xros/libwebgpu_dawn.a +0 -0
- package/libs/apple/arm64_xrsimulator/libwebgpu_dawn.a +0 -0
- package/libs/apple/iphonesimulator/libwebgpu_dawn.a +0 -0
- package/libs/apple/libwebgpu_dawn.xcframework/xros-arm64/libwebgpu_dawn.a +0 -0
- package/libs/apple/libwebgpu_dawn.xcframework/xros-arm64-simulator/libwebgpu_dawn.a +0 -0
- package/libs/apple/universal_macosx/libwebgpu_dawn.a +0 -0
- package/libs/apple/x86_64_iphonesimulator/libwebgpu_dawn.a +0 -0
- package/libs/dawn.json +0 -4670
- package/src/__tests__/Alpha.spec.ts +0 -28
- package/src/__tests__/ArrayBuffer.spec.ts +0 -76
- package/src/__tests__/Buffer.spec.ts +0 -357
- package/src/__tests__/ComputeShader.spec.ts +0 -375
- package/src/__tests__/Constants.spec.ts +0 -89
- package/src/__tests__/Device.spec.ts +0 -84
- package/src/__tests__/ErrorScope.spec.ts +0 -92
- package/src/__tests__/ExternalTexture.spec.ts +0 -284
- package/src/__tests__/GPU.spec.ts +0 -272
- package/src/__tests__/ImageData.spec.ts +0 -26
- package/src/__tests__/Shaders.spec.ts +0 -232
- package/src/__tests__/Texture.spec.ts +0 -197
- package/src/__tests__/assets/Di-3d.png +0 -0
- package/src/__tests__/components/Wireframe/Shaders.ts +0 -138
- package/src/__tests__/components/Wireframe/models.ts +0 -113
- package/src/__tests__/components/Wireframe/utils.ts +0 -22
- package/src/__tests__/components/cube.ts +0 -51
- package/src/__tests__/components/meshes/mesh.ts +0 -96
- package/src/__tests__/components/meshes/sphere.ts +0 -103
- package/src/__tests__/components/meshes/stanfordDragon.ts +0 -44
- package/src/__tests__/components/meshes/stanfordDragonData.ts +0 -5
- package/src/__tests__/components/meshes/teapot.ts +0 -13
- package/src/__tests__/components/meshes/utils.ts +0 -235
- package/src/__tests__/components/triangle.ts +0 -17
- package/src/__tests__/config.ts +0 -2
- package/src/__tests__/demos/ABuffer.spec.ts +0 -890
- package/src/__tests__/demos/Blur.spec.ts +0 -398
- package/src/__tests__/demos/Cube.spec.ts +0 -929
- package/src/__tests__/demos/FractalCube.spec.ts +0 -240
- package/src/__tests__/demos/OcclusionQuery.spec.ts +0 -376
- package/src/__tests__/demos/RenderBundles.spec.ts +0 -580
- package/src/__tests__/demos/Triangle.spec.ts +0 -266
- package/src/__tests__/demos/Wireframe.spec.ts +0 -188
- package/src/__tests__/globalSetup.ts +0 -45
- package/src/__tests__/globalTeardown.ts +0 -11
- package/src/__tests__/setup.ts +0 -423
- package/src/__tests__/snapshots/abuffer.png +0 -0
- package/src/__tests__/snapshots/asteroid.png +0 -0
- package/src/__tests__/snapshots/blur.png +0 -0
- package/src/__tests__/snapshots/buffer.png +0 -0
- package/src/__tests__/snapshots/constant-triangle.png +0 -0
- package/src/__tests__/snapshots/cube.png +0 -0
- package/src/__tests__/snapshots/f.png +0 -0
- package/src/__tests__/snapshots/f2.png +0 -0
- package/src/__tests__/snapshots/fractal-cubes.png +0 -0
- package/src/__tests__/snapshots/instanced-cubes.png +0 -0
- package/src/__tests__/snapshots/occlusion-query.png +0 -0
- package/src/__tests__/snapshots/ref.png +0 -0
- package/src/__tests__/snapshots/semi-opaque-cyan.png +0 -0
- package/src/__tests__/snapshots/texture.png +0 -0
- package/src/__tests__/snapshots/textured-cube.png +0 -0
- package/src/__tests__/snapshots/triangle-msaa.png +0 -0
- package/src/__tests__/snapshots/triangle.png +0 -0
- package/src/__tests__/snapshots/two-cube.png +0 -0
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
// Copyright 2023 The Dawn & Tint Authors
|
|
2
|
-
//
|
|
3
|
-
// Redistribution and use in source and binary forms, with or without
|
|
4
|
-
// modification, are permitted provided that the following conditions are met:
|
|
5
|
-
//
|
|
6
|
-
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
-
// list of conditions and the following disclaimer.
|
|
8
|
-
//
|
|
9
|
-
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
-
// this list of conditions and the following disclaimer in the documentation
|
|
11
|
-
// and/or other materials provided with the distribution.
|
|
12
|
-
//
|
|
13
|
-
// 3. Neither the name of the copyright holder nor the names of its
|
|
14
|
-
// contributors may be used to endorse or promote products derived from
|
|
15
|
-
// this software without specific prior written permission.
|
|
16
|
-
//
|
|
17
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
-
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
-
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
-
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
-
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
-
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
-
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
-
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
-
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
-
|
|
28
|
-
#ifndef INCLUDE_DAWN_NATIVE_D3DBACKEND_H_
|
|
29
|
-
#define INCLUDE_DAWN_NATIVE_D3DBACKEND_H_
|
|
30
|
-
|
|
31
|
-
#include <dxgi1_4.h>
|
|
32
|
-
#include <webgpu/webgpu_cpp_chained_struct.h>
|
|
33
|
-
#include <wrl/client.h>
|
|
34
|
-
|
|
35
|
-
#include <memory>
|
|
36
|
-
#include <vector>
|
|
37
|
-
|
|
38
|
-
#include "dawn/native/DawnNative.h"
|
|
39
|
-
|
|
40
|
-
namespace dawn::native::d3d {
|
|
41
|
-
|
|
42
|
-
DAWN_NATIVE_EXPORT Microsoft::WRL::ComPtr<IDXGIAdapter> GetDXGIAdapter(WGPUAdapter adapter);
|
|
43
|
-
|
|
44
|
-
// Can be chained in WGPURequestAdapterOptions
|
|
45
|
-
struct DAWN_NATIVE_EXPORT RequestAdapterOptionsLUID : wgpu::ChainedStruct {
|
|
46
|
-
RequestAdapterOptionsLUID();
|
|
47
|
-
|
|
48
|
-
::LUID adapterLUID;
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
// Chrome uses 0 as acquire key.
|
|
52
|
-
static constexpr uint64_t kDXGIKeyedMutexAcquireKey = 0;
|
|
53
|
-
|
|
54
|
-
} // namespace dawn::native::d3d
|
|
55
|
-
|
|
56
|
-
#endif // INCLUDE_DAWN_NATIVE_D3DBACKEND_H_
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
// Copyright 2018 The Dawn & Tint Authors
|
|
2
|
-
//
|
|
3
|
-
// Redistribution and use in source and binary forms, with or without
|
|
4
|
-
// modification, are permitted provided that the following conditions are met:
|
|
5
|
-
//
|
|
6
|
-
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
-
// list of conditions and the following disclaimer.
|
|
8
|
-
//
|
|
9
|
-
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
-
// this list of conditions and the following disclaimer in the documentation
|
|
11
|
-
// and/or other materials provided with the distribution.
|
|
12
|
-
//
|
|
13
|
-
// 3. Neither the name of the copyright holder nor the names of its
|
|
14
|
-
// contributors may be used to endorse or promote products derived from
|
|
15
|
-
// this software without specific prior written permission.
|
|
16
|
-
//
|
|
17
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
-
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
-
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
-
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
-
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
-
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
-
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
-
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
-
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
-
|
|
28
|
-
#ifndef INCLUDE_DAWN_NATIVE_METALBACKEND_H_
|
|
29
|
-
#define INCLUDE_DAWN_NATIVE_METALBACKEND_H_
|
|
30
|
-
|
|
31
|
-
#include <webgpu/webgpu.h>
|
|
32
|
-
|
|
33
|
-
#include "dawn/native/dawn_native_export.h"
|
|
34
|
-
|
|
35
|
-
#if defined(__OBJC__)
|
|
36
|
-
#import <Metal/Metal.h>
|
|
37
|
-
#endif
|
|
38
|
-
|
|
39
|
-
namespace dawn::native::metal {
|
|
40
|
-
|
|
41
|
-
// When making Metal interop with other APIs, we need to be careful that QueueSubmit doesn't
|
|
42
|
-
// mean that the operations will be visible to other APIs/Metal devices right away. macOS
|
|
43
|
-
// does have a global queue of graphics operations, but the command buffers are inserted there
|
|
44
|
-
// when they are "scheduled". Submitting other operations before the command buffer is
|
|
45
|
-
// scheduled could lead to races in who gets scheduled first and incorrect rendering.
|
|
46
|
-
// TODO(crbug.com/444702048): Remove after migrating Chromium to commands scheduled futures.
|
|
47
|
-
DAWN_NATIVE_EXPORT void WaitForCommandsToBeScheduled(WGPUDevice device);
|
|
48
|
-
|
|
49
|
-
#if defined(__OBJC__)
|
|
50
|
-
// Return the MTLDevice corresponding to the WGPUDevice.
|
|
51
|
-
DAWN_NATIVE_EXPORT id<MTLDevice> GetMTLDevice(WGPUDevice device);
|
|
52
|
-
#endif
|
|
53
|
-
|
|
54
|
-
} // namespace dawn::native::metal
|
|
55
|
-
|
|
56
|
-
#endif // INCLUDE_DAWN_NATIVE_METALBACKEND_H_
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
// Copyright 2019 The Dawn & Tint Authors
|
|
2
|
-
//
|
|
3
|
-
// Redistribution and use in source and binary forms, with or without
|
|
4
|
-
// modification, are permitted provided that the following conditions are met:
|
|
5
|
-
//
|
|
6
|
-
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
-
// list of conditions and the following disclaimer.
|
|
8
|
-
//
|
|
9
|
-
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
-
// this list of conditions and the following disclaimer in the documentation
|
|
11
|
-
// and/or other materials provided with the distribution.
|
|
12
|
-
//
|
|
13
|
-
// 3. Neither the name of the copyright holder nor the names of its
|
|
14
|
-
// contributors may be used to endorse or promote products derived from
|
|
15
|
-
// this software without specific prior written permission.
|
|
16
|
-
//
|
|
17
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
-
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
-
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
-
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
-
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
-
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
-
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
-
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
-
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
-
|
|
28
|
-
#ifndef INCLUDE_DAWN_PLATFORM_DAWNPLATFORM_H_
|
|
29
|
-
#define INCLUDE_DAWN_PLATFORM_DAWNPLATFORM_H_
|
|
30
|
-
|
|
31
|
-
#include <webgpu/webgpu.h>
|
|
32
|
-
|
|
33
|
-
#include <cstddef>
|
|
34
|
-
#include <cstdint>
|
|
35
|
-
#include <memory>
|
|
36
|
-
|
|
37
|
-
#include "dawn/platform/dawn_platform_export.h"
|
|
38
|
-
|
|
39
|
-
namespace dawn::platform {
|
|
40
|
-
|
|
41
|
-
enum class TraceCategory {
|
|
42
|
-
General, // General trace events
|
|
43
|
-
Validation, // Dawn validation
|
|
44
|
-
Recording, // Native command recording
|
|
45
|
-
GPUWork, // Actual GPU work
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
class DAWN_PLATFORM_EXPORT CachingInterface {
|
|
49
|
-
public:
|
|
50
|
-
CachingInterface();
|
|
51
|
-
virtual ~CachingInterface();
|
|
52
|
-
|
|
53
|
-
// LoadData has two modes. The first mode is used to get a value which
|
|
54
|
-
// corresponds to the |key|. The |valueOut| is a caller provided buffer
|
|
55
|
-
// allocated to the size |valueSize| which is loaded with data of the
|
|
56
|
-
// size returned. The second mode is used to query for the existence of
|
|
57
|
-
// the |key| where |valueOut| is nullptr and |valueSize| must be 0.
|
|
58
|
-
// The return size is non-zero if the |key| exists.
|
|
59
|
-
virtual size_t LoadData(const void* key, size_t keySize, void* valueOut, size_t valueSize) = 0;
|
|
60
|
-
|
|
61
|
-
// StoreData puts a |value| in the cache which corresponds to the |key|.
|
|
62
|
-
virtual void StoreData(const void* key,
|
|
63
|
-
size_t keySize,
|
|
64
|
-
const void* value,
|
|
65
|
-
size_t valueSize) = 0;
|
|
66
|
-
|
|
67
|
-
private:
|
|
68
|
-
CachingInterface(const CachingInterface&) = delete;
|
|
69
|
-
CachingInterface& operator=(const CachingInterface&) = delete;
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
class DAWN_PLATFORM_EXPORT WaitableEvent {
|
|
73
|
-
public:
|
|
74
|
-
WaitableEvent() = default;
|
|
75
|
-
virtual ~WaitableEvent() = default;
|
|
76
|
-
|
|
77
|
-
WaitableEvent(const WaitableEvent&) = delete;
|
|
78
|
-
WaitableEvent& operator=(const WaitableEvent&) = delete;
|
|
79
|
-
|
|
80
|
-
virtual void Wait() = 0; // Wait for completion
|
|
81
|
-
virtual bool IsComplete() = 0; // Non-blocking check if the event is complete
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
using PostWorkerTaskCallback = void (*)(void* userdata);
|
|
85
|
-
|
|
86
|
-
class DAWN_PLATFORM_EXPORT WorkerTaskPool {
|
|
87
|
-
public:
|
|
88
|
-
WorkerTaskPool() = default;
|
|
89
|
-
virtual ~WorkerTaskPool() = default;
|
|
90
|
-
|
|
91
|
-
WorkerTaskPool(const WorkerTaskPool&) = delete;
|
|
92
|
-
WorkerTaskPool& operator=(const WorkerTaskPool&) = delete;
|
|
93
|
-
|
|
94
|
-
virtual std::unique_ptr<WaitableEvent> PostWorkerTask(PostWorkerTaskCallback,
|
|
95
|
-
void* userdata) = 0;
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
// These features map to similarly named ones in src/chromium/src/gpu/config/gpu_finch_features.h
|
|
99
|
-
// in `namespace features`.
|
|
100
|
-
enum class Features {
|
|
101
|
-
kWebGPUUseDXC,
|
|
102
|
-
kWebGPUUseVulkanMemoryModel,
|
|
103
|
-
kWebGPUEnableRangeAnalysisForRobustness,
|
|
104
|
-
kWebGPUUseSpirv14,
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
class DAWN_PLATFORM_EXPORT Platform {
|
|
108
|
-
public:
|
|
109
|
-
Platform();
|
|
110
|
-
virtual ~Platform();
|
|
111
|
-
|
|
112
|
-
virtual const unsigned char* GetTraceCategoryEnabledFlag(TraceCategory category);
|
|
113
|
-
|
|
114
|
-
virtual double MonotonicallyIncreasingTime();
|
|
115
|
-
|
|
116
|
-
virtual uint64_t AddTraceEvent(char phase,
|
|
117
|
-
const unsigned char* categoryGroupEnabled,
|
|
118
|
-
const char* name,
|
|
119
|
-
uint64_t id,
|
|
120
|
-
double timestamp,
|
|
121
|
-
int numArgs,
|
|
122
|
-
const char** argNames,
|
|
123
|
-
const unsigned char* argTypes,
|
|
124
|
-
const uint64_t* argValues,
|
|
125
|
-
unsigned char flags);
|
|
126
|
-
|
|
127
|
-
// Invoked to add a UMA histogram count-based sample
|
|
128
|
-
virtual void HistogramCustomCounts(const char* name,
|
|
129
|
-
int sample,
|
|
130
|
-
int min,
|
|
131
|
-
int max,
|
|
132
|
-
int bucketCount);
|
|
133
|
-
|
|
134
|
-
// Invoked to add a UMA histogram count-based sample that requires high-performance
|
|
135
|
-
// counter (HPC) support.
|
|
136
|
-
virtual void HistogramCustomCountsHPC(const char* name,
|
|
137
|
-
int sample,
|
|
138
|
-
int min,
|
|
139
|
-
int max,
|
|
140
|
-
int bucketCount);
|
|
141
|
-
|
|
142
|
-
// Invoked to add a UMA histogram enumeration sample
|
|
143
|
-
virtual void HistogramEnumeration(const char* name, int sample, int boundaryValue);
|
|
144
|
-
|
|
145
|
-
// Invoked to add a UMA histogram sparse sample
|
|
146
|
-
virtual void HistogramSparse(const char* name, int sample);
|
|
147
|
-
|
|
148
|
-
// Invoked to add a UMA histogram boolean sample
|
|
149
|
-
virtual void HistogramBoolean(const char* name, bool sample);
|
|
150
|
-
|
|
151
|
-
// The returned CachingInterface is expected to outlive the device which uses it to persistently
|
|
152
|
-
// cache objects.
|
|
153
|
-
virtual CachingInterface* GetCachingInterface();
|
|
154
|
-
|
|
155
|
-
virtual std::unique_ptr<WorkerTaskPool> CreateWorkerTaskPool();
|
|
156
|
-
|
|
157
|
-
// Hook for querying if a Finch feature is enabled.
|
|
158
|
-
virtual bool IsFeatureEnabled(Features feature);
|
|
159
|
-
|
|
160
|
-
private:
|
|
161
|
-
Platform(const Platform&) = delete;
|
|
162
|
-
Platform& operator=(const Platform&) = delete;
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
} // namespace dawn::platform
|
|
166
|
-
|
|
167
|
-
#endif // INCLUDE_DAWN_PLATFORM_DAWNPLATFORM_H_
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
// Copyright 2020 The Dawn & Tint Authors
|
|
2
|
-
//
|
|
3
|
-
// Redistribution and use in source and binary forms, with or without
|
|
4
|
-
// modification, are permitted provided that the following conditions are met:
|
|
5
|
-
//
|
|
6
|
-
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
-
// list of conditions and the following disclaimer.
|
|
8
|
-
//
|
|
9
|
-
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
-
// this list of conditions and the following disclaimer in the documentation
|
|
11
|
-
// and/or other materials provided with the distribution.
|
|
12
|
-
//
|
|
13
|
-
// 3. Neither the name of the copyright holder nor the names of its
|
|
14
|
-
// contributors may be used to endorse or promote products derived from
|
|
15
|
-
// this software without specific prior written permission.
|
|
16
|
-
//
|
|
17
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
-
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
-
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
-
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
-
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
-
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
-
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
-
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
-
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
-
|
|
28
|
-
#ifndef INCLUDE_DAWN_PLATFORM_DAWN_PLATFORM_EXPORT_H_
|
|
29
|
-
#define INCLUDE_DAWN_PLATFORM_DAWN_PLATFORM_EXPORT_H_
|
|
30
|
-
|
|
31
|
-
#if defined(DAWN_PLATFORM_SHARED_LIBRARY)
|
|
32
|
-
#if defined(_WIN32)
|
|
33
|
-
#if defined(DAWN_PLATFORM_IMPLEMENTATION)
|
|
34
|
-
#define DAWN_PLATFORM_EXPORT __declspec(dllexport)
|
|
35
|
-
#else
|
|
36
|
-
#define DAWN_PLATFORM_EXPORT __declspec(dllimport)
|
|
37
|
-
#endif
|
|
38
|
-
#else // defined(_WIN32)
|
|
39
|
-
#if defined(DAWN_PLATFORM_IMPLEMENTATION)
|
|
40
|
-
#define DAWN_PLATFORM_EXPORT __attribute__((visibility("default")))
|
|
41
|
-
#else
|
|
42
|
-
#define DAWN_PLATFORM_EXPORT
|
|
43
|
-
#endif
|
|
44
|
-
#endif // defined(_WIN32)
|
|
45
|
-
#else // defined(DAWN_PLATFORM_SHARED_LIBRARY)
|
|
46
|
-
#define DAWN_PLATFORM_EXPORT
|
|
47
|
-
#endif // defined(DAWN_PLATFORM_SHARED_LIBRARY)
|
|
48
|
-
|
|
49
|
-
#endif // INCLUDE_DAWN_PLATFORM_DAWN_PLATFORM_EXPORT_H_
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// ThreadUtils.hpp
|
|
3
|
-
// react-native-nitro
|
|
4
|
-
//
|
|
5
|
-
// Created by Marc Rousavy on 14.07.24.
|
|
6
|
-
//
|
|
7
|
-
#pragma once
|
|
8
|
-
|
|
9
|
-
#include <string>
|
|
10
|
-
|
|
11
|
-
namespace margelo {
|
|
12
|
-
|
|
13
|
-
class ThreadUtils final {
|
|
14
|
-
public:
|
|
15
|
-
ThreadUtils() = delete;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Get the current Thread's name.
|
|
19
|
-
* This is implemented differently on iOS and Android.
|
|
20
|
-
*/
|
|
21
|
-
static std::string getThreadName();
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Set the current Thread's name.
|
|
25
|
-
* This is implemented differently on iOS and Android.
|
|
26
|
-
*/
|
|
27
|
-
static void setThreadName(const std::string &name);
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
} // namespace margelo
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
#pragma once
|
|
2
|
-
|
|
3
|
-
#include "webgpu/webgpu_cpp.h"
|
|
4
|
-
|
|
5
|
-
#include <future>
|
|
6
|
-
#include <utility>
|
|
7
|
-
|
|
8
|
-
namespace rnwgpu {
|
|
9
|
-
|
|
10
|
-
class AsyncRunner {
|
|
11
|
-
public:
|
|
12
|
-
explicit AsyncRunner(wgpu::Instance *instance) : instance(instance) {}
|
|
13
|
-
|
|
14
|
-
template <typename F> auto runAsync(F &&func) {
|
|
15
|
-
return std::async(
|
|
16
|
-
std::launch::async, [this, func = std::forward<F>(func)]() {
|
|
17
|
-
if constexpr (std::is_invocable_v<F, wgpu::Instance *>) {
|
|
18
|
-
return func(instance);
|
|
19
|
-
} else {
|
|
20
|
-
auto future = func();
|
|
21
|
-
instance->WaitAny(future, UINT64_MAX);
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
public:
|
|
27
|
-
wgpu::Instance *instance;
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
} // namespace rnwgpu
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
//
|
|
3
|
-
// Created by Marc Rousavy on 27.03.24.
|
|
4
|
-
//
|
|
5
|
-
|
|
6
|
-
#pragma once
|
|
7
|
-
|
|
8
|
-
#include "Dispatcher.h"
|
|
9
|
-
|
|
10
|
-
#include <utility>
|
|
11
|
-
#include <memory>
|
|
12
|
-
#include <ReactCommon/CallInvoker.h>
|
|
13
|
-
|
|
14
|
-
namespace margelo {
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* A Dispatcher that uses react::CallInvoker for it's implementation
|
|
18
|
-
*/
|
|
19
|
-
class CallInvokerDispatcher final : public Dispatcher {
|
|
20
|
-
public:
|
|
21
|
-
explicit CallInvokerDispatcher(
|
|
22
|
-
std::shared_ptr<react::CallInvoker> callInvoker)
|
|
23
|
-
: _callInvoker(callInvoker) {}
|
|
24
|
-
|
|
25
|
-
void runAsync(std::function<void()> &&function) override {
|
|
26
|
-
_callInvoker->invokeAsync(std::move(function));
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
void runSync(std::function<void()> &&function) override {
|
|
30
|
-
_callInvoker->invokeSync(std::move(function));
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
private:
|
|
34
|
-
std::shared_ptr<react::CallInvoker> _callInvoker;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
} // namespace margelo
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Created by Marc Rousavy on 12.03.24.
|
|
3
|
-
//
|
|
4
|
-
#include <memory>
|
|
5
|
-
#include <unordered_map>
|
|
6
|
-
|
|
7
|
-
#include "Dispatcher.h"
|
|
8
|
-
|
|
9
|
-
#include "RNFJSIHelper.h"
|
|
10
|
-
|
|
11
|
-
namespace margelo {
|
|
12
|
-
|
|
13
|
-
namespace jsi = facebook::jsi;
|
|
14
|
-
|
|
15
|
-
static constexpr auto GLOBAL_DISPATCHER_HOLDER_NAME = "__nitroDispatcher_WEBGPU_FORK";
|
|
16
|
-
|
|
17
|
-
std::unordered_map<jsi::Runtime *, std::weak_ptr<Dispatcher>>
|
|
18
|
-
Dispatcher::_globalCache;
|
|
19
|
-
|
|
20
|
-
void Dispatcher::installRuntimeGlobalDispatcher(
|
|
21
|
-
jsi::Runtime &runtime, std::shared_ptr<Dispatcher> dispatcher) {
|
|
22
|
-
|
|
23
|
-
// Store a weak reference in global cache
|
|
24
|
-
_globalCache[&runtime] = std::weak_ptr<Dispatcher>(dispatcher);
|
|
25
|
-
|
|
26
|
-
// Inject the dispatcher into Runtime global (runtime will hold a strong
|
|
27
|
-
// reference)
|
|
28
|
-
jsi::Object dispatcherHolder(runtime);
|
|
29
|
-
dispatcherHolder.setNativeState(runtime, dispatcher);
|
|
30
|
-
runtime.global().setProperty(runtime, GLOBAL_DISPATCHER_HOLDER_NAME,
|
|
31
|
-
dispatcherHolder);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
std::shared_ptr<Dispatcher>
|
|
35
|
-
Dispatcher::getRuntimeGlobalDispatcher(jsi::Runtime &runtime) {
|
|
36
|
-
if (auto search = _globalCache.find(&runtime); search != _globalCache.end()) {
|
|
37
|
-
// the runtime is known - we have something in cache
|
|
38
|
-
std::weak_ptr<Dispatcher> weakDispatcher = _globalCache[&runtime];
|
|
39
|
-
std::shared_ptr<Dispatcher> strongDispatcher = weakDispatcher.lock();
|
|
40
|
-
if (strongDispatcher) {
|
|
41
|
-
// the weak reference we cached is still valid - return it!
|
|
42
|
-
return strongDispatcher;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
jsi::Value dispatcherHolderValue = getRuntimeGlobalDispatcherHolder(runtime);
|
|
47
|
-
jsi::Object dispatcherHolder = dispatcherHolderValue.getObject(runtime);
|
|
48
|
-
return dispatcherHolder.getNativeState<Dispatcher>(runtime);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
jsi::Value Dispatcher::getRuntimeGlobalDispatcherHolder(jsi::Runtime &runtime) {
|
|
52
|
-
return runtime.global().getProperty(runtime, GLOBAL_DISPATCHER_HOLDER_NAME);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
} // namespace margelo
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Created by Marc Rousavy on 12.03.24.
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
#pragma once
|
|
6
|
-
|
|
7
|
-
#include <functional>
|
|
8
|
-
#include <future>
|
|
9
|
-
#include <jsi/jsi.h>
|
|
10
|
-
#include <queue>
|
|
11
|
-
#include <unordered_map>
|
|
12
|
-
#include <utility>
|
|
13
|
-
#include <memory>
|
|
14
|
-
|
|
15
|
-
namespace margelo {
|
|
16
|
-
|
|
17
|
-
namespace jsi = facebook::jsi;
|
|
18
|
-
|
|
19
|
-
class Dispatcher : public jsi::NativeState {
|
|
20
|
-
public:
|
|
21
|
-
/**
|
|
22
|
-
Installs the Dispatcher into the given Runtime.
|
|
23
|
-
It can be accessed using `getRuntimeGlobalDispatcher` later.
|
|
24
|
-
*/
|
|
25
|
-
static void
|
|
26
|
-
installRuntimeGlobalDispatcher(jsi::Runtime &runtime,
|
|
27
|
-
std::shared_ptr<Dispatcher> dispatcher);
|
|
28
|
-
/**
|
|
29
|
-
Gets the global Dispatcher in the given Runtime, or throws an error if not
|
|
30
|
-
found.
|
|
31
|
-
*/
|
|
32
|
-
static std::shared_ptr<Dispatcher>
|
|
33
|
-
getRuntimeGlobalDispatcher(jsi::Runtime &runtime);
|
|
34
|
-
|
|
35
|
-
private:
|
|
36
|
-
static jsi::Value getRuntimeGlobalDispatcherHolder(jsi::Runtime &runtime);
|
|
37
|
-
|
|
38
|
-
public:
|
|
39
|
-
/**
|
|
40
|
-
* Run the given void function synchronously on the Thread this Dispatcher is
|
|
41
|
-
* managing.
|
|
42
|
-
*/
|
|
43
|
-
virtual void runSync(std::function<void()> &&function) = 0;
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* Run the given void function asynchronously on the Thread this Dispatcher is
|
|
47
|
-
* managing.
|
|
48
|
-
*/
|
|
49
|
-
virtual void runAsync(std::function<void()> &&function) = 0;
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* Run the given function asynchronously on the Thread this Dispatcher is
|
|
53
|
-
* managing, and return a future that will hold the result of the function.
|
|
54
|
-
*/
|
|
55
|
-
template <typename T>
|
|
56
|
-
std::future<T> runAsyncAwaitable(std::function<T()> &&function) {
|
|
57
|
-
// 1. Create Promise that can be shared between this and dispatcher thread
|
|
58
|
-
auto promise = std::make_shared<std::promise<T>>();
|
|
59
|
-
std::future<T> future = promise->get_future();
|
|
60
|
-
|
|
61
|
-
runAsync([function = std::move(function), promise]() {
|
|
62
|
-
try {
|
|
63
|
-
if constexpr (std::is_void_v<T>) {
|
|
64
|
-
// 4. Call the actual function on the new Thread
|
|
65
|
-
function();
|
|
66
|
-
// 5.a. Resolve the Promise if we succeeded
|
|
67
|
-
promise->set_value();
|
|
68
|
-
} else {
|
|
69
|
-
// 4. Call the actual function on the new Thread
|
|
70
|
-
T result = function();
|
|
71
|
-
// 5.a. Resolve the Promise if we succeeded
|
|
72
|
-
promise->set_value(std::move(result));
|
|
73
|
-
}
|
|
74
|
-
} catch (...) {
|
|
75
|
-
// 5.b. Reject the Promise if the call failed
|
|
76
|
-
promise->set_exception(std::current_exception());
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
// 3. Return an open future that gets resolved later by the dispatcher
|
|
81
|
-
// Thread
|
|
82
|
-
return future;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
private:
|
|
86
|
-
static std::unordered_map<jsi::Runtime *, std::weak_ptr<Dispatcher>>
|
|
87
|
-
_globalCache;
|
|
88
|
-
|
|
89
|
-
private:
|
|
90
|
-
static constexpr auto TAG = "Dispatcher";
|
|
91
|
-
};
|
|
92
|
-
|
|
93
|
-
} // namespace margelo
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// ThreadPool.cpp
|
|
3
|
-
// NitroModules
|
|
4
|
-
//
|
|
5
|
-
// Created by Marc Rousavy on 21.06.24.
|
|
6
|
-
//
|
|
7
|
-
|
|
8
|
-
#include "ThreadPool.h"
|
|
9
|
-
#include "ThreadUtils.h"
|
|
10
|
-
|
|
11
|
-
#include <utility>
|
|
12
|
-
#include <algorithm>
|
|
13
|
-
#include <string>
|
|
14
|
-
#include <memory>
|
|
15
|
-
|
|
16
|
-
namespace margelo {
|
|
17
|
-
|
|
18
|
-
ThreadPool::ThreadPool(const char *name, size_t numThreads)
|
|
19
|
-
: _isAlive(true), _name(name) {
|
|
20
|
-
for (size_t i = 0; i < numThreads; ++i) {
|
|
21
|
-
std::string threadName = std::string(name) + "-" + std::to_string(i + 1);
|
|
22
|
-
_workers.emplace_back([this, threadName] {
|
|
23
|
-
// Set the Thread's name
|
|
24
|
-
ThreadUtils::setThreadName(threadName);
|
|
25
|
-
|
|
26
|
-
// Start the run-loop
|
|
27
|
-
while (true) {
|
|
28
|
-
std::function<void()> task;
|
|
29
|
-
{
|
|
30
|
-
// Lock on the mutex so only one Worker receives the condition signal
|
|
31
|
-
// at a time
|
|
32
|
-
std::unique_lock<std::mutex> lock(_queueMutex);
|
|
33
|
-
this->_condition.wait(
|
|
34
|
-
lock, [this] { return !_isAlive || !_tasks.empty(); });
|
|
35
|
-
if (!_isAlive && _tasks.empty()) {
|
|
36
|
-
// ThreadPool is dead - stop run-loop.
|
|
37
|
-
return;
|
|
38
|
-
}
|
|
39
|
-
// Schedule the oldest task
|
|
40
|
-
task = std::move(_tasks.front());
|
|
41
|
-
_tasks.pop();
|
|
42
|
-
}
|
|
43
|
-
// Run it (outside of the mutex so others can run in parallel)
|
|
44
|
-
task();
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
void ThreadPool::run(std::function<void()> &&task) {
|
|
51
|
-
{
|
|
52
|
-
// lock on the mutex - we want to emplace the task back in the queue
|
|
53
|
-
std::unique_lock<std::mutex> lock(_queueMutex);
|
|
54
|
-
if (!_isAlive) {
|
|
55
|
-
throw std::runtime_error("Cannot queue the given task - the ThreadPool "
|
|
56
|
-
"has already been stopped!");
|
|
57
|
-
}
|
|
58
|
-
_tasks.emplace(std::move(task));
|
|
59
|
-
}
|
|
60
|
-
// Notify about a new task - one of the workers will pick it up
|
|
61
|
-
_condition.notify_one();
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
ThreadPool::~ThreadPool() {
|
|
65
|
-
{
|
|
66
|
-
// Lock and set `_isAlive` to false.
|
|
67
|
-
std::unique_lock<std::mutex> lock(_queueMutex);
|
|
68
|
-
_isAlive = false;
|
|
69
|
-
}
|
|
70
|
-
// Notify all workers - they will stop the work since `_isAlive` is false.
|
|
71
|
-
_condition.notify_all();
|
|
72
|
-
for (std::thread &worker : _workers) {
|
|
73
|
-
// Wait for each worker to exit.
|
|
74
|
-
worker.join();
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
std::shared_ptr<ThreadPool> ThreadPool::getSharedPool() {
|
|
79
|
-
static std::shared_ptr<ThreadPool> shared;
|
|
80
|
-
if (shared == nullptr) {
|
|
81
|
-
int availableThreads = std::thread::hardware_concurrency();
|
|
82
|
-
auto numThreads = std::min(availableThreads, 3);
|
|
83
|
-
shared = std::make_shared<ThreadPool>("nitro-thread", numThreads);
|
|
84
|
-
}
|
|
85
|
-
return shared;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
} // namespace margelo
|