Question
Is there a clean and robust way to handle calls to a plugin so that the caller can always expect to have a JavaScript array returned to them, regardless of whether the plugin is a Firefox add-on or an ActiveX control? I've already got the actual plugin calls wrapped in functions, like:
function getDevice(deviceKey) {
return plugin.getDevice(deviceKey);
}
I can change it to something like:
function getDevice(deviceKey) {
return normalizeArray(plugin.getDevice(deviceKey));
}
function normalizeArray(array) {
return typeof(array) == 'unknown' ? array.toArray() : array;
}
but I still need to remember to actually call normalizeArray from the wrapper functions, and the normalize implementation seems like it could be lacking in robustness and/or making some suspect assumptions.
Is there a better way to handle this situation?
Background
I'm writing some JavaScript to interact with a plugin through JavaScript. The plugin is available as an add-on in FF and as an ActiveX in IE. There are a number of methods available in the plugin that return arrays. In FF, calling:
typeof(retVal);
on the object returns 'object'. I can do things like:
retVal.length;
retval[0];
and they work as expected. When I make those same method calls in IE, calling:
typeof(retVal);
returns 'unknown' and calls like:
retVal.length;
retval[0];
are undefined.
I've done some debugging and discovered that what the ActiveX is really returning is an array of variants. This object IS recognizable by JScript, and a JavaScript version of the array can be obtained by caling retVal.toArray().