我正在尝试在C#中添加一个Sokoban解算器(用C ++编写)到我的程序中(我的程序中有一个类用于处理C ++接口的编组)。我的程序加载了solver.dll库,它加载了solver.exe。 Solver.dll和Solver.exe通过管道进行通信。
问题是,当我在Visual Studio中运行我的程序(调试)时,DLL被加载好了,插件的功能运行良好。但是当我在Visual Studio之外打开我的程序时(简单地双击MyProgram.exe)并且当我尝试运行求解函数时出现错误消息:“得到无效管道”和“无法创建管道”。出现。
我很遗憾可能会遇到什么问题,但我的猜测是某些权限存在问题。
以下是插件作者的两部分代码:
在solver.dll文件中:
//create pipes
SECURITY_ATTRIBUTES attr;
attr.nLength=sizeof(attr);
attr.lpSecurityDescriptor=NULL;
attr.bInheritHandle=TRUE;
if(!CreatePipe(&hPipeOutRead,&hPipeOutWrite,&attr,0)
||!CreatePipe(&hPipeInRead,&hPipeInWrite,&attr,0) )
{
ReportError("Failed to create pipe.");
return SOKOBAN_PLUGIN_RESULT_FAILURE;
}
//set std handle for deliver pipe
HANDLE hStdInSave, hStdOutSave;
hStdInSave=GetStdHandle(STD_INPUT_HANDLE);
hStdOutSave=GetStdHandle(STD_OUTPUT_HANDLE);
if(hStdInSave==INVALID_HANDLE_VALUE || hStdOutSave==INVALID_HANDLE_VALUE)
{
ReportError("Failed to get std handles.");
return SOKOBAN_PLUGIN_RESULT_FAILURE;
}
if(!SetStdHandle(STD_INPUT_HANDLE,hPipeOutRead)
||!SetStdHandle(STD_OUTPUT_HANDLE,hPipeInWrite) )
{
ReportError("Failed to redirect std handles.");
return SOKOBAN_PLUGIN_RESULT_FAILURE;
}
//create BoxSearch Process
STARTUPINFO startInfo;
ZeroMemory(&startInfo,sizeof(startInfo));
startInfo.cb=sizeof(startInfo);
PROCESS_INFORMATION processInfo;
ZeroMemory(&processInfo,sizeof(processInfo));
char dllDir[MAX_PATH];
char exeName[MAX_PATH+100];
GetModuleFileName(ghinstDLL,dllDir,MAX_PATH);
*(strrchr(dllDir,'\\')+1)=0;
strcpy(exeName,dllDir);
strcat(exeName,"Solver.exe");
char cmdLine[MAX_PATH+100];
strcpy(cmdLine,"\"");
strcat(cmdLine,exeName);
strcat(cmdLine,"\"");
strcat(cmdLine," ");
strcat(cmdLine,API_DLLCommandLine);
BOOL launchSuccess=CreateProcess(exeName,cmdLine,NULL,NULL,TRUE,0,NULL,dllDir,&startInfo,&processInfo);
在Solver.exe旁边:
//get pipes
hPipeRead=GetStdHandle(STD_INPUT_HANDLE),
hPipeWrite=GetStdHandle(STD_OUTPUT_HANDLE);
if(0==hPipeRead || INVALID_HANDLE_VALUE==hPipeRead
||0==hPipeWrite|| INVALID_HANDLE_VALUE==hPipeWrite)
{
FormattedMessageBox("Got invalid pipe.");
return;
}
可能是什么问题?是否有任何与加载的DLL(管道)相关的权限?
谢谢!
答案 0 :(得分:2)
哎呀,那很难过。这只能在MyProgram.exe是控制台模式应用程序时才能正常工作。要求输入/输出重定向工作。由于Visual Studio托管过程,它可能在调试器中工作。
在程序中调用AllocConsole可以解决问题。我猜你不会特别关心那个控制台窗口,你必须重写那个界面。使用命名管道可以解决它。实际上,将求解器作为单独的过程运行没有任何意义。看看C ++ / CLI来取得成功。