npapi webkit插件数组处理

时间:2012-07-30 10:28:29

标签: javascript webkit npapi qtwebkit browser-plugin

我想从java脚本处理一个数组。  (即,从html页面到插件代码。我想从html代码中获取值到插件中的变量,以便我可以在代码中修改它们并为其他目的进行处理。)。

但我在这方面遇到了问题。我知道在内部数组将被处理为NPObject。我试图从这个NPObject中检索数组的长度和数组的元素,但返回的数组长度为零,即使数组的长度非零。

任何建议都是欢迎....

我有一个包含数组的html页面 HTML页面如下:

<html>
<script type="text/javascript">
var arrayData = [9,1,2,3,4,5,6,7,8,9];
function handleEvent(e) {
    if (e.keyCode == 55) {
        document.getElementById('arrayint_ele_disp').innerHTML = arrayData;
        process_intarray(arrayData);
    }
}
function  process_intarray(arrayData){
    obj = document.getElementById("Obj");
    if(obj){
        obj.process_array_intval(arrayData); 
    }
}
</script>

<body onload="init()" onkeydown="handleEvent(event)">
<div id ="arrayint_ele_disp" style="position:absolute;left:100px;top:250px"> 
ARRAY_INT VAL </div>
</body>

</html>

我处理数组元素的插件代码如下:

bool ScriptableObject::process_intarray(const NPVariant* args, uint32_t 
     argCount, NPVariant* result)
{

    //Get the Length of the array
    //NPObject *inobject = args[0].value.objectValue;
    NPObject *inobject = args->value.objectValue;

    bool bRetval = false;
    NPVariant npvlength;
    //NPIdentifier id;

    bRetval = 
   NPN_GetProperty(m_npp,inobject,NPN_GetStringIdentifier("length"),&npvlength);
    printf("\n NPN_GetProperty length type %d value : %d\n"
  ,npvlength.type,npvlength.value.intValue);

    //Get the array elements
    int i = 0;
    for(i = 0; i < npvlength.value.intValue; i++)
    {
        NPVariant CurVal;
        NPN_GetProperty(m_npp,inobject,NPN_GetIntIdentifier(i),&CurVal);
        m_prop_array_intval[i] = CurVal.value.intValue;
    }
    return true;

}

这里有这个函数NPN_GetProperty(m_npp,inobject,NPN_GetStringIdentifier(“length”),&amp; npvlength);正在回归真实。

但是在检查npvlength的长度时,它给出0,其类型为NPVariantType_Double。 我无法理解为什么......

欢迎任何建议......

1 个答案:

答案 0 :(得分:1)

您不应该依赖Int32Double之一的数字。如果数字类型是双倍使用value.doubleValue来获取长度,否则您将获得意外值(由于valueunion因此doubleValue和{{1}引用相同的内存) 理想情况下,为转换编写自己的帮助函数,这样您就不必担心特定的intValue无处不在。

另外你应该缓存NPVariantType:在最坏的情况下,NPIdentifier可能会导致从插件进程到浏览器进程的完整进程间往返,以及字符串的费用比较/散列/...