-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(#38): make module TurboModule-compatible #59
Open
mateusz1913
wants to merge
1
commit into
LinusU:master
Choose a base branch
from
mateusz1913:feat/38-turbo-module
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 4 additions & 17 deletions
21
android/src/main/java/org/linusu/RNGetRandomValuesModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 32 additions & 16 deletions
48
android/src/main/java/org/linusu/RNGetRandomValuesPackage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,44 @@ | ||
package org.linusu; | ||
|
||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
|
||
import com.facebook.react.ReactPackage; | ||
import com.facebook.react.TurboReactPackage; | ||
import com.facebook.react.bridge.NativeModule; | ||
import com.facebook.react.bridge.ReactApplicationContext; | ||
import com.facebook.react.uimanager.ViewManager; | ||
import com.facebook.react.bridge.JavaScriptModule; | ||
import com.facebook.react.module.model.ReactModuleInfo; | ||
import com.facebook.react.module.model.ReactModuleInfoProvider; | ||
|
||
public class RNGetRandomValuesPackage implements ReactPackage { | ||
@Override | ||
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) { | ||
return Arrays.<NativeModule>asList(new RNGetRandomValuesModule(reactContext)); | ||
} | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
// Deprecated from RN 0.47 | ||
public List<Class<? extends JavaScriptModule>> createJSModules() { | ||
return Collections.emptyList(); | ||
public class RNGetRandomValuesPackage extends TurboReactPackage { | ||
@Nullable | ||
@Override | ||
public NativeModule getModule(@NonNull String name, @NonNull ReactApplicationContext reactContext) { | ||
if (name.equals(RNGetRandomValuesModule.NAME)) { | ||
return new RNGetRandomValuesModule(reactContext); | ||
} | ||
return null; | ||
} | ||
|
||
@Override | ||
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) { | ||
return Collections.emptyList(); | ||
public ReactModuleInfoProvider getReactModuleInfoProvider() { | ||
return () -> { | ||
boolean isTurboModule = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; | ||
final Map<String, ReactModuleInfo> moduleInfos = new HashMap<>(); | ||
moduleInfos.put( | ||
RNGetRandomValuesModule.NAME, | ||
new ReactModuleInfo( | ||
RNGetRandomValuesModule.NAME, | ||
RNGetRandomValuesModule.NAME, | ||
false, // canOverrideExistingModule | ||
false, // needsEagerInit | ||
false, // hasConstants | ||
false, // isCxxModule | ||
isTurboModule // isTurboModule | ||
)); | ||
return moduleInfos; | ||
}; | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
android/src/oldarch/java/org/linusu/NativeRNGetRandomValuesSpec.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package org.linusu; | ||
|
||
import com.facebook.proguard.annotations.DoNotStrip; | ||
import com.facebook.react.bridge.ReactApplicationContext; | ||
import com.facebook.react.bridge.ReactContextBaseJavaModule; | ||
import com.facebook.react.bridge.ReactMethod; | ||
import com.facebook.react.turbomodule.core.interfaces.TurboModule; | ||
import javax.annotation.Nonnull; | ||
|
||
public abstract class NativeRNGetRandomValuesSpec extends ReactContextBaseJavaModule implements TurboModule { | ||
public static final String NAME = "RNGetRandomValues"; | ||
|
||
public NativeRNGetRandomValuesSpec(ReactApplicationContext reactContext) { | ||
super(reactContext); | ||
} | ||
|
||
@Override | ||
public @Nonnull String getName() { | ||
return NAME; | ||
} | ||
|
||
@ReactMethod(isBlockingSynchronousMethod = true) | ||
@DoNotStrip | ||
public abstract String getRandomBase64(double byteLength); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#import <React/RCTBridgeModule.h> | ||
|
||
@interface RNGetRandomValues : NSObject <RCTBridgeModule> | ||
-(NSString*)getRandomBase64:(NSUInteger)byteLength; | ||
|
||
@end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#import "RNGetRandomValues.h" | ||
|
||
#if RCT_NEW_ARCH_ENABLED | ||
#import "RNGetRandomValuesSpec.h" | ||
|
||
@interface RNGetRandomValues () <NativeRNGetRandomValuesSpec> | ||
@end | ||
#endif | ||
|
||
@implementation RNGetRandomValues | ||
|
||
RCT_EXPORT_MODULE() | ||
|
||
RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString*, getRandomBase64:(double)byteLength) { | ||
NSMutableData *data = [NSMutableData dataWithLength:(NSUInteger)byteLength]; | ||
int result = SecRandomCopyBytes(kSecRandomDefault, (NSUInteger)byteLength, data.mutableBytes); | ||
if (result != errSecSuccess) { | ||
@throw([NSException exceptionWithName:@"NO_RANDOM_BYTES" reason:@"Failed to aquire secure random bytes" userInfo:nil]); | ||
} | ||
return [data base64EncodedStringWithOptions:0]; | ||
} | ||
|
||
#if RCT_NEW_ARCH_ENABLED | ||
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const facebook::react::ObjCTurboModule::InitParams &)params { | ||
return std::make_shared<facebook::react::NativeRNGetRandomValuesSpecJSI>(params); | ||
} | ||
#endif | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* @flow strict-local | ||
* @format | ||
*/ | ||
|
||
import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport'; | ||
import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes'; | ||
import { TurboModuleRegistry } from 'react-native'; | ||
|
||
export interface Spec extends TurboModule { | ||
+getRandomBase64: (byteLength: Int32) => string; | ||
} | ||
|
||
export default (TurboModuleRegistry.get<Spec>( | ||
"RNGetRandomValues" | ||
): Spec); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mateusz1913 When running this, I needed to change this to 'Double' rather than 'Int32' to make the types match correctly in Obj-C.
For a Uint8Array(10), byteLength in getRandomBase64 was "4621819117588971520" in the debugger, and I was receiving "Error: Exception in HostFunction: Failed to aquire secure random bytes".
Changing this type def resolves this issue.