我有托管clr的C ++代码,以便使用用c#编写的Managed.dll。
此.net有一个类似下面的方法,允许代码注册事件通知:
public void Register(IMyListener listener);
界面看起来像这样
public interface IMyListener
{
void Notify(string details);
}
我想在程序的C ++部分做一些事情,由.net世界中的事件触发。我甚至不介意创建另一个托管dll,其唯一目的是使Managed.dll更加友好,如果有必要的话。
我有什么选择?我确信我唯一可以实现的是:
这当然会从“中断”风格转变为“轮询”风格,具有其优点和缺点以及提供排队的需要。我们可以不进行民意调查吗?我可以以某种方式调用托管代码并将其作为参数提供给C ++世界吗?
更新 感谢stijn的回答和评论,我希望我向正确的方向移动一点,但我想主要的问题仍然是如何将fn指针从非托管域传递到clr托管环境。
假设我有一个“int fn(int)”类型的函数指针,我想传递给托管世界,这里是相关部分:
托管代码(C ++ / CLI)
typedef int (__stdcall *native_fun)( int );
String^ MyListener::Register(native_fun & callback)
{
return "MyListener::Register(native_fun callback) called callback(9): " + callback(9);
}
非托管代码
typedef int (__stdcall *native_fun)( int );
extern "C" static int __stdcall NativeFun(int i)
{
wprintf(L"Callback arrived in native fun land: %d\n", i);
return i * 3;
}
void callCLR()
{
// Setup CLR hosting environment
...
// prepare call into CLR
variant_t vtEmpty;
variant_t vtRetValue;
variant_t vtFnPtrArg((native_fun) &NativeFun);
SAFEARRAY *psaMethodArgs = SafeArrayCreateVector(VT_VARIANT, 0, 1);
LONG index = 0;
SafeArrayPutElement(psaMethodArgs, &index, &vtFnPtrArg);
...
hr = spType->InvokeMember_3(bstrMethodName, static_cast<BindingFlags>(
BindingFlags_InvokeMethod | BindingFlags_Static | BindingFlags_Public),
NULL, vtEmpty, psaMethodArgs, &vtRetValue);
if (FAILED(hr))
wprintf(L"Failed to invoke function: 0x%08lx\n", hr);
spType->InvokeMember_3
来电将导致0x80131512
结果。
将指向NativeFun的指针传递给托管世界的方式或我的函数定义方式似乎有些不对劲。当使用String ^ param而不是fn ptr时,我可以成功调用CLR函数。
答案 0 :(得分:3)
您可以在C ++ / CLI中编写一个单独的dll并在那里实现接口,并将逻辑转发给C ++。根据我对混合托管/非托管的经验,我可以说使用中间C ++ / CLI步骤是要走的路。没有摆弄DllImport和功能,但两个世界之间的桥梁。它只需要一些习惯于语法和编组,但一旦你拥有它,它几乎毫不费力。如果需要在托管类中保存C ++对象,最好的方法是使用like clr_scoped_ptr。
代码看起来像这样:
//header
#using <Managed.dll>
//forward declare some native class
class NativeCppClass;
public ref class MyListener : public IMylIstener
{
public:
MyListener();
//note cli classes automatically implement IDisposable,
//which will call this destructor when disposed,
//so used it as a normal C++ destructor and do cleanup here
~MyListener();
virtual void Notify( String^ details );
private:
clr_scoped_ptr< NativeCppClass > impl;
}
//source
#include "Header.h"
#include <NativeCppClass.h>
//here's how I marshall strings both ways
namespace
{
inline String^ marshal( const std::string& i )
{
return gcnew String( i.data() );
}
inline std::string marshal( String^ i )
{
if( i == nullptr )
return std::string();
char* str2 = (char*) (void*) Marshal::StringToHGlobalAnsi( i );
std::string sRet( str2 );
Marshal::FreeHGlobal( IntPtr( str2 ) );
return sRet;
}
}
MyListener::MyListener() :
impl( new NativeCppClass() )
{
}
MyListener::~MyListener()
{
}
void MyListener::Notify( String^ details )
{
//handle event here
impl->SomeCppFunctionTakingStdString( marshal( details ) );
}
<强>更新强> 这是一个从托管世界用C ++调用回调的简单解决方案:
pubic ref class CallbackWrapper
{
public:
typedef int (*native_fun)( int );
CallbackWrapper( native_fun fun ) : fun( fun ) {}
void Call() { fun(); }
CallbackWrapper^ Create( ... ) { return gcnew CallbackWrapper( ... ); }
private:
native_fun fun;
}
如果需要,您也可以将其包装在Action中。
另一种方法是使用GetDelegateForFunctionPointer
,例如as in this SO question
答案 1 :(得分:1)
如果有人仍然需要更好的方法,则可以使用变体中的intptr_t
和受管中的long
将 c ++函数传递给CLR,然后使用Marshall和委托调用您的本机函数,超级简单,就像魅力一样。
如果您需要一个代码段,请告诉我。