2013-07-30 37 views
-1

我有一个需要在C++中处理的DLL。我正在使用WxWidgets(标准编译,但我也尝试过Unicode开/关)和NetBeans。我也试过在没有WxWidgets的情况下处理这个问题(windows.h),并且遇到了同样的问题。在C++中使用缓冲区时的垃圾回收字符

这里是我如何访问使用wxWidgets的DLL功能:

// -------------------- POINTERS TO FUNCTIONS 
typedef bool(*TYPE_DLL_SetLicense)(char*, char*); 
typedef bool(*TYPE_DLL_PingConnection)(char*); 
typedef char*(*TYPE_DLL_ERR_DESCRIPTION)(void); 

class DLL_Library 
{ 
public: 
    // pointers to functions inside dll 
    TYPE_DLL_SetLicense DLL_SetLicense;  //initialize - will wor fine as it returns only true/false (buffer only provide data) 
    TYPE_DLL_PingConnection DLL_PingConnection;  //ping to serwer. Will return trahs, becouse it uses buffer to provide data ang get answear back 
    TYPE_DLL_ERR_DESCRIPTION DLL_ERR_DESCRIPTION;  //error description. No buffer, no trouble. Returns correct string. 
    wxDynamicLibrary dynLib2; 

    int initialize(void) 
    { 
     //patch to dll 
     wxString path = wxStandardPaths::Get().GetExecutablePath().BeforeLast('\\') + _("\\DLL_dll\\DLLMOK.dll"); 
     if(!wxFile::Exists(path)) return -1; 

     //load dll 
     if(!dynLib2.Load(path)) return -2; 

     //Assign functions in dll to variable 
     DLL_SetLicense=(TYPE_DLL_SetLicense) dynLib2.GetSymbol(wxT("DLL_SetLicense")); 
     DLL_PingConnection=(TYPE_DLL_PingConnection) dynLib2.GetSymbol(wxT("DLL_PingConnection")); 
     DLL_ERR_DESCRIPTION=(TYPE_DLL_ERR_DESCRIPTION) dynLib2.GetSymbol(wxT("DLL_ERROR_DESCRIPTION")); 


    return 0; 
    } 
}; 

这里是我运行的功能。它应该返回和XML内容,我试图保存到文件。

//DLL_PingConnection    
//result ping to be save in file 
wxFile file_ping_xml; 
plik_ping_xml.Open(wxT("C:\\dll\\ping.xml"),wxFile::write); 
char buffor_ping_xml[2000]; 

//I run the function here 
bool is_ping = DLL_PingConnection(buffor_ping_xml); 

if(is_ping) 
{ 

    tex_box->AppendText(wxT("DLL_PingConnection True\n")); 

    //we save result to file 
    bool is_write_ping_ok = file_ping_xml.Write(buffor_ping_xml,2000); 
    if (is_write_ping_ok){tex_box->AppendText(wxT("Save to file is ok ok\n"));} 
    else {tex_box->AppendText(wxT("Save to file failed :(\n"));}     
} 
else 
{ 
    tex_box->AppendText(wxT("DLL_PingConnection False\n")); 
} 


std::cout << "Error description: " << DLL_ERR_DESCRIPTION() << "\n"; //will work fine both in saving to file, and in streaming to screen. 

的问题是,该文件,而不是良好的内容里面我得到垃圾这样的:

enter image description here

请注意,这只是发生在使用缓冲区像功能:

char buffer[2000] //buffer will contain for example file xml 
function do_sth_with_xml(buffer) //buffer containing xml will (should) be overwriten with xml results of the function - in our case DLL_PingCONNECTION should save in buffer xml with connection data 

文档说该DLL在Windows-1250上运行。文件ping.xml我已经设置为Windows ANSI,但我不认为问题在于此。

编辑:我写了没有WxWidgets的问题(我加载DLL使用windows.h) - 同样的问题。这是代码:Getting trash data in char* while using it as buffer in function。请帮助:(

回答

0

你命名的功能

DLL_PingConnection=(TYPE_DLL_PingConnection) dynLib2.GetSymbol(.... 

OSOZ.OSOZ_PingConnection(buffor_ping_xml); 

称之为你的typedef功能

typedef bool(*TYPE_DLL_PingConnection)(char*); 

您创建一个变量

char buffor_ping_xml[2000]; 

在你的typedef是char*和你buffor_ping_xml是char

这怎么行?

尝试

char *buffor_ping_xml = new char[2000]; 
/* or */ 
wchar_t *buffor_ping_xml = new wchar_t[2000]; 
/* or */ 
wxChar *buffor_ping_xml = new wxchar[2000]; 

bool is_ping = DLL_PingConnection(buffor_ping_xml); 
wxString mystring = wxString::FromUTF8(buffor_ping_xml); 

mystring到文件。

做的事:

  • 看在你wxwidgets\libs文件夹为您libs 是有libwxmsw29ud_*与名称的'U'(后版本号在这里29)? 如果没有不能使用unicode

如果是下一个步骤

  • 所有不同的测试char *wchar_t *wxChar *给文件不同的名称。
    例如file_ping_xml.Open(WXT( “C:\ DLL \ ping_w_t_FromUTF8.xml”),...
    为wchar_t的*结合
    wxString mystring = wxString::FromUTF8(buffor_ping_xml);
  • 也结合
  • wxString mystring(buffor_ping_xml);

  • 然后在浏览器中检查出的样子,这些文件的。

要测试你可以去你的wxWidgets示例文件夹。编译到文件夹C:\wxWidgets\samples\docview\docview.cpp。用docview.exe打开一个unicode文件。它看起来如何。

Unicode download file

Unicode相关编译设置

应该定义wxUSE_UNICODE 1编译您以Unicode模式程序。目前适用于wxMSW,wxGTK,wxMac和wxX11。如果以ANSI模式编译程序,则仍然可以定义wxUSE_WCHAR_T以获得对wchar_t类型的有限支持。

+0

嗨。函数名称是一个错字(现在已修复) - 我将某些东西的代码分条以使其阅读更加容易。然而,关于变量'buffor_ping_xml [2000]',如果我这样给bufor,这是唯一的方法:'char * buffor_ping_xml'程序将会崩溃。在文档中我使用了一个数据类型'PChar'。有任何想法吗? –

+0

另外:从typdef中取走*将不会编译。 –

+0

@baron_bartek:你试过了:'const char * buffor_ping_xml = new char [2000];' –

0

DLL_PingConnection=(TYPE_DLL_PingConnection) 

应该不会是

DLL_PingConnection=(TYPE_DLL_PingConnection) dynLib2.GetSymbol(wxT("DLL_PingConnection")); 

似乎不然,你不会得到一个有效的指针在DLL中的函数。

作为一般规则,你应该检查返回值,特别是从 你动态地加载DLL,因为它发生,你有时会得到另一个DLL的 版本,它可能有相同的名字,但其他签名或 的功能在哪里完全失踪。

+0

我的不好。我编辑了我的问题。 PS:我会检查dll函数的返回值。我得到了succec(bool - > true),但在缓冲区中我只找到垃圾,而返回字符串而不是bool(不使用缓冲区)的函数工作得很好。示例是DLL_ERR_DESCRIPTION –