(SWIG / Luaの)swig_lua_classにベース/親クラスのリストにアクセスする方法

StackOverflow https://stackoverflow.com/questions/911632

質問

I、クラスの所与のセットに対して生成SWIGラッパーに、SWIGは、そのクラスが継承するすべての親クラスのC文字列表現のリストを保持することに注意してください。 (** base_names文字)。私は、関数が存在しているはず。

swig_type(some_variable)

それは、与えられた変数のデータ型の文字列表現を返します。文字列として親クラスのテーブルを返す関数もありますか?ない場合は、この関数を記述する簡単な方法はありますか?私はすべてのSWIGの内部の仕組みに精通していないよ。

ありがとうございます。

役に立ちましたか?

解決

(私はLuaのでSWIGを使用しないため、テストされていない)、これは動作するはずのような何かます:

// insert into runtime section
// this is the C function that iterates over the base_names array 
// (I'm assuming that the array is terminated with a NULL)
%runtime %{
    /* lua callable function to get the userdata's type */
    SWIGRUNTIME int SWIG_Lua_basenames(lua_State* L)
    {
      swig_lua_userdata* usr;
      swig_lua_class* clss = NULL;
      int i = 0;
      if (lua_isuserdata(L,1))
      {
        usr=(swig_lua_userdata*)lua_touserdata(L,1);  /* get data */
        if (usr && usr->type && usr->type->clientdata) {
          // fetch the swig_lua_class struct, it contains the base_names
          clss = (swig_lua_class*)usr->type->clientdata;
        }
      }
      /* create a new table with all class base names in it
         note that I create it even if clss is NULL, that way
         an empty table -should- be returned
       */          
      lua_newtable(L);
      while(clss && clss->base_names[i]) {
         lua_pushnumber(L, i+1); /* lua tables are 1-indexed */
         lua_pushstring(L, clss->base_names[i]);
         lua_rawset(L, -3);
         i++;
      }
      return 1;
    }
%}
%init %{
  /* this goes into the user init function, register our new function with
     Lua runtime
   */
  SWIG_Lua_add_function(L,"swig_base_names",SWIG_Lua_basenames);
%}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top