Coder Social home page Coder Social logo

Comments (3)

dcharkes avatar dcharkes commented on June 6, 2024

we also check for NativeCallable.listener but issue is still persistent

Are you sure? This error message can only occur with NativeCallable.isolateLocal.

Could you provide a minimal reproduction on a GitHub repo?

from sdk.

sanjaygholap avatar sanjaygholap commented on June 6, 2024

Thank you for your response.

We call CPP dll in Flutter using Flutter ffi. This is our CPP function in dll.

extern "C" __declspec(dllexport) void StartServerSession (const char* Name,const char* js,int& sessionID,int& ERESULT,void(eventhandler)(const char,int))
export "C"__declspec(dllexport) void InitializeServer(void(eventhandler)(const char,int)){ PtrObj->Initialize(eventhandler); }

final DynamicLibrary DllPath = DynamicLibrary.open('path to dll');
typedef InitializeFunc = Void Function(Pointer<Void> eventhandler);
typedef InitializeFun = void Function(Pointer<Void> eventhandler);

typedef StartServerSessionC = Void Function(Pointer<Utf8> Name, Pointer<Utf8> js, Pointer<Pointer<Int32>> sessionID, Pointer<Pointer<Int32>> ERESULT,Pointer<Void> eventhandler);
typedef StartServerSession = void Function(Pointer<Utf8> Name, Pointer<Utf8> js, Pointer<Pointer<Int32>> sessionID, Pointer<Pointer<Int32>> ERESULT,Pointer<Void> eventhandler);

void eventHandler(Pointer<Utf8> response, int length) {
  print('Response: ${response.cast<Utf8>.toDartString()}');
}


final initialize = DllPath.lookupFunction<InitializeFunc , InitializeFun>('Initialize');

final startServerSession = DllPath
    .lookupFunction<StartServerSessionC, StartServerSession>('StartServerSession');


void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('FFI Demo')),
        body: Center(
          child: ElevatedButton(
            onPressed: () async {
              // Example usage of the FFI functions
                await callStartServerIsolate();
            },
            child: Text('Call DLL Function'),
          ),
        ),
      ),
    );
  }
}

void StartServerFunction(SendPort sendPort) 
{
   Pointer<Utf8> name = ('path to second dll'.toNativeUtf8());
   Pointer<Utf8> js = {json value}.toNativeUtf8();
           
   final sessionID = calloc<Int32>();
   final ERESULT = calloc<Int32>();
   initialize (Pointer.fromFunction<Void Function(Pointer<Utf8>, Int32)>(eventHandler)as Pointer<Void>);
   startServerSession (
							   name,
                               js,
                               sessionID as Pointer<Pointer<Int32>>,
                               ERESULT as Pointer<Pointer<Int32>>, 
                               Pointer.fromFunction<Void Function(Pointer<Utf8>, Int32)>(eventHandler)as Pointer<Void>);
    
    sendPort.send("task Complete");
}
Future<Void> callStartServerIsolate()async{
final receivePort = ReceivePort();
final sendPort = receivePort.sendPort;
await Isolate.spawn(StartServerFunction,sendPort)
}

from sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.