我正在使用SWIG编写一些包装代码,以便将我的C ++函数公开给PHP。
my_module.i
%module phpMyModule
%include "exception.i"
%include "std_string.i"
%include "typemaps.i"
// INPUT: convert PHP native array to std::vector<std::string>
%typemap(in) const std::vector<std::string> & %{
if (Z_TYPE($input) == IS_ARRAY) {
std::vector<std::string> temp2;
$1 = &temp2;
HashTable *ht = Z_ARRVAL($input);
zval *data;
HashPosition pos;
for (zend_hash_internal_pointer_reset_ex(ht, &pos);
(data = zend_hash_get_current_data_ex(ht, &pos)) != nullptr;
zend_hash_move_forward_ex(ht, &pos)
) {
convert_to_string(data);
$1->push_back( std::string( Z_STRVAL_P(data), Z_STRLEN_P(data) ) );
}
}
else SWIG_exception( SWIG_TypeError, "Type Error: Only PHP array is supported!" );
%}
%{
#include "MyModule.h"
%}
extern int initialize_engine( const std::string& script_file, const std::vector<std::string>& input_vars );
SWIG生成的包装代码
ZEND_NAMED_FUNCTION(_wrap_initialize_engine) {
std::string *arg1 = 0 ;
std::vector< std::string > *arg2 = 0 ;
std::string temp1 ;
zval args[2];
int result;
SWIG_ResetError();
if(ZEND_NUM_ARGS() != 2 || zend_get_parameters_array_ex(2, args) != SUCCESS) {
WRONG_PARAM_COUNT;
}
convert_to_string(&args[0]);
temp1.assign(Z_STRVAL(args[0]), Z_STRLEN(args[0]));
arg1 = &temp1;
if (Z_TYPE(args[1]) == IS_ARRAY) {
std::vector<std::string> temp2;
arg2 = &temp2;
HashTable *ht = Z_ARRVAL(args[1]);
zval *data;
HashPosition pos;
for (zend_hash_internal_pointer_reset_ex(ht, &pos);
(data = zend_hash_get_current_data_ex(ht, &pos)) != nullptr;
zend_hash_move_forward_ex(ht, &pos)
) {
convert_to_string(data);
arg2->push_back( std::string( Z_STRVAL_P(data), Z_STRLEN_P(data) ) );
}
}
else SWIG_exception( SWIG_TypeError, "Type Error: Only PHP array is supported!" );
result = (int)initialize_engine((std::string const &)*arg1,(std::vector< std::string > const &)*arg2);
RETVAL_LONG(result);
thrown:
return;
fail:
SWIG_FAIL();
}
test.php的
<?php
require_once '<path>/<to>/phpMyModule.php';
$handle = phpMyModule::initialize_engine(
'<path>/<to>/test.script',
["var1", "var2", "var3"]
);
echo "Handle #1 Value: $handle\n";
phpMyModule::terminate_engine($handle);
?>
基本上上面代码的作用是使用PHP字符串(_wrap_initialize_engine()
)和变量名称的PHP数组(script_file
)调用input_vars
。 SWIG使用typemap
将PHP字符串和数组转换为std :: string和std :: vector,然后调用真实的initialize_engine()
。
在initialize_engine( const std::string& script_file, const std::vector<std::string>& input_vars )
我有:
std::for_each( input_vars.begin(), input_vars.end(), [&]( const std::string& name ) {
std::cout << "Adding " << name << " ..." << std::endl;
// signature is Data::addVariable( const std::string& name, const VariableVector& values );
// Data::VariableVector is actually std::vector<double>
data.addVariable( name, Data::VariableVector() );
} );
这很有效。打印输出
Adding var1 ...
Adding var2 ...
...
但如果我注释掉std::cout ...
,则对data.addVariable()
的所有调用都会收到name
参数的空字符串。 (我知道这是因为在调用中我根据现有名称测试名称,并在使用重复项时抛出错误。没有std::cout ...
我收到错误,说“名称已经存在”......)
我的问题
怎么会发生这种情况? const std::vector<std::string>&
不应受我是否致电std::cout
的影响。
我唯一的猜测是std :: string重新使用char *点而不是复制它们?如果是这种情况,那么真正的缓冲区仍然在PHP内部并且可能已被更改?我认为不应该是这种情况,只是希望有更多C ++知识的人为我确认。
但如果情况并非如此,那为什么上述奇怪的行为会发生呢?
答案 0 :(得分:0)
原来这是我犯的一个愚蠢的错误...抱歉......
<强> my_module.i 强>
%module phpMyModule
%include "exception.i"
%include "std_string.i"
%include "typemaps.i"
// INPUT: convert PHP native array to std::vector<std::string>
%typemap(in) const std::vector<std::string> & %{
std::vector<std::string> temp2; // should be declared here!
if (Z_TYPE($input) == IS_ARRAY) {
// if declared here, temp2 will be released before init_engine() was called!
// Wrong: std::vector<std::string> temp2;
$1 = &temp2;
......
}
else SWIG_exception( SWIG_TypeError, "Type Error: Only PHP array is supported!" );
%}