react-native-neural-wallet-lib 0.1.3 → 0.1.5

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.
@@ -0,0 +1,80 @@
1
+ # Generated by uniffi-bindgen-react-native
2
+ cmake_minimum_required(VERSION 3.9.0)
3
+ project(NeuralWalletLib)
4
+
5
+ set (CMAKE_VERBOSE_MAKEFILE ON)
6
+ set (CMAKE_CXX_STANDARD 17)
7
+
8
+ # Resolve the path to the uniffi-bindgen-react-native package
9
+ execute_process(
10
+ COMMAND node -p "require.resolve('uniffi-bindgen-react-native/package.json')"
11
+ OUTPUT_VARIABLE UNIFFI_BINDGEN_PATH
12
+ OUTPUT_STRIP_TRAILING_WHITESPACE
13
+ )
14
+ # Get the directory; get_filename_component and cmake_path will normalize
15
+ # paths with Windows path separators.
16
+ get_filename_component(UNIFFI_BINDGEN_PATH "${UNIFFI_BINDGEN_PATH}" DIRECTORY)
17
+
18
+ # Specifies a path to native header files.
19
+ include_directories(
20
+ ../cpp
21
+ ../cpp/generated
22
+
23
+ ${UNIFFI_BINDGEN_PATH}/cpp/includes
24
+
25
+ ${CMAKE_SOURCE_DIR}/../node_modules/uniffi-bindgen-react-native/android/include
26
+ )
27
+
28
+
29
+
30
+ add_library(react-native-neural-wallet-lib SHARED
31
+ ../cpp/react-native-neural-wallet-lib.cpp
32
+ ../cpp/generated/wallet.cpp
33
+ cpp-adapter.cpp
34
+ )
35
+
36
+ # Set C++ compiler flags
37
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2")
38
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions")
39
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -frtti")
40
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-all")
41
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
42
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
43
+
44
+ cmake_path(
45
+ SET MY_RUST_LIB
46
+ ${CMAKE_SOURCE_DIR}/src/main/jniLibs/${ANDROID_ABI}/libwallet.a
47
+ NORMALIZE
48
+ )
49
+ add_library(my_rust_lib STATIC IMPORTED)
50
+ set_target_properties(my_rust_lib PROPERTIES IMPORTED_LOCATION ${MY_RUST_LIB})
51
+
52
+ # Add ReactAndroid libraries, being careful to account for different versions.
53
+ find_package(ReactAndroid REQUIRED CONFIG)
54
+ find_library(LOGCAT log)
55
+
56
+ # REACTNATIVE_MERGED_SO seems to be only be set in a build.gradle.kt file,
57
+ # which we don't use. Thus falling back to version number sniffing.
58
+ if (ReactAndroid_VERSION_MINOR GREATER_EQUAL 76)
59
+ set(REACTNATIVE_MERGED_SO true)
60
+ endif()
61
+
62
+ # https://github.com/react-native-community/discussions-and-proposals/discussions/816
63
+ # This if-then-else can be removed once this library does not support version below 0.76
64
+ if (REACTNATIVE_MERGED_SO)
65
+ target_link_libraries(react-native-neural-wallet-lib ReactAndroid::reactnative)
66
+ else()
67
+ target_link_libraries(react-native-neural-wallet-lib
68
+ ReactAndroid::turbomodulejsijni
69
+ ReactAndroid::react_nativemodule_core
70
+ )
71
+ endif()
72
+
73
+ find_package(fbjni REQUIRED CONFIG)
74
+ target_link_libraries(
75
+ react-native-neural-wallet-lib
76
+ fbjni::fbjni
77
+ ReactAndroid::jsi
78
+ ${LOGCAT}
79
+ my_rust_lib
80
+ )
@@ -0,0 +1,143 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+
3
+ buildscript {
4
+ // Buildscript is evaluated before everything else so we can't use getExtOrDefault
5
+ def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["DummyLibForAndroid_kotlinVersion"]
6
+
7
+ repositories {
8
+ google()
9
+ mavenCentral()
10
+ }
11
+
12
+ dependencies {
13
+ classpath "com.android.tools.build:gradle:7.2.1"
14
+ // noinspection DifferentKotlinGradleVersion
15
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
16
+ }
17
+ }
18
+
19
+ def reactNativeArchitectures() {
20
+ def value = rootProject.getProperties().get("reactNativeArchitectures")
21
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
22
+ }
23
+
24
+ def isNewArchitectureEnabled() {
25
+ return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
26
+ }
27
+
28
+ apply plugin: "com.android.library"
29
+ apply plugin: "kotlin-android"
30
+
31
+ if (isNewArchitectureEnabled()) {
32
+ apply plugin: "com.facebook.react"
33
+ }
34
+
35
+ def getExtOrDefault(name) {
36
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["NeuralWalletLib_" + name]
37
+ }
38
+
39
+ def getExtOrIntegerDefault(name) {
40
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["NeuralWalletLib_" + name]).toInteger()
41
+ }
42
+
43
+ def supportsNamespace() {
44
+ def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
45
+ def major = parsed[0].toInteger()
46
+ def minor = parsed[1].toInteger()
47
+
48
+ // Namespace support was added in 7.3.0
49
+ return (major == 7 && minor >= 3) || major >= 8
50
+ }
51
+
52
+ android {
53
+ if (supportsNamespace()) {
54
+ namespace "com.neuralwalletlib"
55
+
56
+ sourceSets {
57
+ main {
58
+ manifest.srcFile "src/main/AndroidManifestNew.xml"
59
+ }
60
+ }
61
+ }
62
+
63
+ ndkVersion getExtOrDefault("ndkVersion")
64
+ compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
65
+
66
+ defaultConfig {
67
+ minSdkVersion getExtOrIntegerDefault("minSdkVersion")
68
+ targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
69
+ buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
70
+
71
+ buildFeatures {
72
+ prefab true
73
+ }
74
+ externalNativeBuild {
75
+ cmake {
76
+ arguments '-DANDROID_STL=c++_shared'
77
+ abiFilters (*reactNativeArchitectures())
78
+ }
79
+ }
80
+ ndk {
81
+ abiFilters "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
82
+ }
83
+ }
84
+
85
+ externalNativeBuild {
86
+ cmake {
87
+ path "CMakeLists.txt"
88
+ }
89
+ }
90
+
91
+ buildFeatures {
92
+ buildConfig true
93
+ }
94
+
95
+ buildTypes {
96
+ release {
97
+ minifyEnabled false
98
+ }
99
+ }
100
+
101
+ lintOptions {
102
+ disable "GradleCompatible"
103
+ }
104
+
105
+ compileOptions {
106
+ sourceCompatibility JavaVersion.VERSION_1_8
107
+ targetCompatibility JavaVersion.VERSION_1_8
108
+ }
109
+
110
+ sourceSets {
111
+ main {
112
+ if (isNewArchitectureEnabled()) {
113
+ java.srcDirs += [
114
+ "generated/java",
115
+ "generated/jni"
116
+ ]
117
+ }
118
+ }
119
+ }
120
+ }
121
+
122
+ repositories {
123
+ mavenCentral()
124
+ google()
125
+ }
126
+
127
+ def kotlin_version = getExtOrDefault("kotlinVersion")
128
+
129
+ dependencies {
130
+ // For < 0.71, this will be from the local maven repo
131
+ // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
132
+ //noinspection GradleDynamicVersion
133
+ implementation "com.facebook.react:react-native:+"
134
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
135
+ }
136
+
137
+ if (isNewArchitectureEnabled()) {
138
+ react {
139
+ jsRootDir = file("../src/")
140
+ libraryName = "NeuralWalletLib"
141
+ codegenJavaPackageName = "com.neuralwalletlib"
142
+ }
143
+ }
@@ -0,0 +1,63 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ #include <jni.h>
3
+ #include <jsi/jsi.h>
4
+ #include <ReactCommon/CallInvokerHolder.h>
5
+ #include "react-native-neural-wallet-lib.h"
6
+
7
+ namespace jsi = facebook::jsi;
8
+ namespace react = facebook::react;
9
+
10
+ // Automated testing checks Java_com_neuralwalletlib_NeuralWalletLibModule and neuralwalletlib
11
+ // by comparing the whole line here.
12
+ /*
13
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeMultiply(JNIEnv *env, jclass type, jdouble a, jdouble b) {
14
+ return neuralwalletlib::multiply(a, b);
15
+ }
16
+ */
17
+
18
+ // Installer coming from NeuralWalletLibModule
19
+ extern "C"
20
+ JNIEXPORT jboolean JNICALL
21
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeInstallRustCrate(
22
+ JNIEnv *env,
23
+ jclass type,
24
+ jlong rtPtr,
25
+ jobject callInvokerHolderJavaObj
26
+ ) {
27
+ // https://github.com/realm/realm-js/blob/main/packages/realm/binding/android/src/main/cpp/io_realm_react_RealmReactModule.cpp#L122-L145
28
+ // React Native uses the fbjni library for handling JNI, which has the concept of "hybrid objects",
29
+ // which are Java objects containing a pointer to a C++ object. The CallInvokerHolder, which has the
30
+ // invokeAsync method we want access to, is one such hybrid object.
31
+ // Rather than reworking our code to use fbjni throughout, this code unpacks the C++ object from the Java
32
+ // object `callInvokerHolderJavaObj` manually, based on reverse engineering the fbjni code.
33
+
34
+ // 1. Get the Java object referred to by the mHybridData field of the Java holder object
35
+ auto callInvokerHolderClass = env->GetObjectClass(callInvokerHolderJavaObj);
36
+ auto hybridDataField = env->GetFieldID(callInvokerHolderClass, "mHybridData", "Lcom/facebook/jni/HybridData;");
37
+ auto hybridDataObj = env->GetObjectField(callInvokerHolderJavaObj, hybridDataField);
38
+
39
+ // 2. Get the destructor Java object referred to by the mDestructor field from the myHybridData Java object
40
+ auto hybridDataClass = env->FindClass("com/facebook/jni/HybridData");
41
+ auto destructorField =
42
+ env->GetFieldID(hybridDataClass, "mDestructor", "Lcom/facebook/jni/HybridData$Destructor;");
43
+ auto destructorObj = env->GetObjectField(hybridDataObj, destructorField);
44
+
45
+ // 3. Get the mNativePointer field from the mDestructor Java object
46
+ auto destructorClass = env->FindClass("com/facebook/jni/HybridData$Destructor");
47
+ auto nativePointerField = env->GetFieldID(destructorClass, "mNativePointer", "J");
48
+ auto nativePointerValue = env->GetLongField(destructorObj, nativePointerField);
49
+
50
+ // 4. Cast the mNativePointer back to its C++ type
51
+ auto nativePointer = reinterpret_cast<facebook::react::CallInvokerHolder*>(nativePointerValue);
52
+ auto jsCallInvoker = nativePointer->getCallInvoker();
53
+
54
+ auto runtime = reinterpret_cast<jsi::Runtime *>(rtPtr);
55
+ return neuralwalletlib::installRustCrate(*runtime, jsCallInvoker);
56
+ }
57
+
58
+ extern "C"
59
+ JNIEXPORT jboolean JNICALL
60
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeCleanupRustCrate(JNIEnv *env, jclass type, jlong rtPtr) {
61
+ auto runtime = reinterpret_cast<jsi::Runtime *>(rtPtr);
62
+ return neuralwalletlib::cleanupRustCrate(*runtime);
63
+ }
@@ -0,0 +1,5 @@
1
+ NeuralWalletLib_kotlinVersion=2.0.21
2
+ NeuralWalletLib_minSdkVersion=24
3
+ NeuralWalletLib_targetSdkVersion=34
4
+ NeuralWalletLib_compileSdkVersion=35
5
+ NeuralWalletLib_ndkVersion=27.1.12297006
@@ -0,0 +1,5 @@
1
+
2
+ <!-- Generated by uniffi-bindgen-react-native -->
3
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
4
+ package="com.neuralwalletlib">
5
+ </manifest>
@@ -0,0 +1,43 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ package com.neuralwalletlib
3
+
4
+ import com.facebook.react.bridge.ReactApplicationContext
5
+ import com.facebook.react.module.annotations.ReactModule
6
+ import com.facebook.react.turbomodule.core.interfaces.CallInvokerHolder
7
+
8
+ @ReactModule(name = NeuralWalletLibModule.NAME)
9
+ class NeuralWalletLibModule(reactContext: ReactApplicationContext) :
10
+ NativeNeuralWalletLibSpec(reactContext) {
11
+
12
+ override fun getName(): String {
13
+ return NAME
14
+ }
15
+
16
+ // Two native methods implemented in cpp-adapter.cpp, and ultimately
17
+ // react-native-neural-wallet-lib.cpp
18
+
19
+ external fun nativeInstallRustCrate(runtimePointer: Long, callInvoker: CallInvokerHolder): Boolean
20
+ external fun nativeCleanupRustCrate(runtimePointer: Long): Boolean
21
+
22
+ override fun installRustCrate(): Boolean {
23
+ val context = this.reactApplicationContext
24
+ return nativeInstallRustCrate(
25
+ context.javaScriptContextHolder!!.get(),
26
+ context.jsCallInvokerHolder!!
27
+ )
28
+ }
29
+
30
+ override fun cleanupRustCrate(): Boolean {
31
+ return nativeCleanupRustCrate(
32
+ this.reactApplicationContext.javaScriptContextHolder!!.get()
33
+ )
34
+ }
35
+
36
+ companion object {
37
+ const val NAME = "NeuralWalletLib"
38
+
39
+ init {
40
+ System.loadLibrary("react-native-neural-wallet-lib")
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,34 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ package com.neuralwalletlib
3
+
4
+ import com.facebook.react.TurboReactPackage
5
+ import com.facebook.react.bridge.NativeModule
6
+ import com.facebook.react.bridge.ReactApplicationContext
7
+ import com.facebook.react.module.model.ReactModuleInfo
8
+ import com.facebook.react.module.model.ReactModuleInfoProvider
9
+ import java.util.HashMap
10
+
11
+ class NeuralWalletLibPackage : TurboReactPackage() {
12
+ override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {
13
+ return if (name == NeuralWalletLibModule.NAME) {
14
+ NeuralWalletLibModule(reactContext)
15
+ } else {
16
+ null
17
+ }
18
+ }
19
+
20
+ override fun getReactModuleInfoProvider(): ReactModuleInfoProvider {
21
+ return ReactModuleInfoProvider {
22
+ val moduleInfos: MutableMap<String, ReactModuleInfo> = HashMap()
23
+ moduleInfos[NeuralWalletLibModule.NAME] = ReactModuleInfo(
24
+ NeuralWalletLibModule.NAME,
25
+ NeuralWalletLibModule.NAME,
26
+ false, // canOverrideExistingModule
27
+ false, // needsEagerInit
28
+ false, // isCxxModule
29
+ true // isTurboModule
30
+ )
31
+ moduleInfos
32
+ }
33
+ }
34
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-neural-wallet-lib",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Neural wallet native lib",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "files": [
16
16
  "src",
17
- "build",
17
+ "build",
18
18
  "lib",
19
19
  "android",
20
20
  "ios",
@@ -87,8 +87,7 @@
87
87
  "react-native-builder-bob": "^0.40.11",
88
88
  "release-it": "^17.10.0",
89
89
  "turbo": "^1.10.7",
90
- "typescript": "^5.8.3",
91
- "uniffi-bindgen-react-native": "^0.29.3-0"
90
+ "typescript": "^5.8.3"
92
91
  },
93
92
  "peerDependencies": {
94
93
  "react": "*",
@@ -166,5 +165,8 @@
166
165
  "languages": "kotlin-objc",
167
166
  "type": "turbo-module",
168
167
  "version": "0.50.3"
168
+ },
169
+ "dependencies": {
170
+ "uniffi-bindgen-react-native": "^0.29.3-0"
169
171
  }
170
172
  }