use of org.jinterop.dcom.common.IJIUnreferenced in project Payara by payara.
the class WindowsWmi method setInfo.
/**
* not strictly necessary but it was so difficult to write the code that I can't
* bear to throw it away!
* @throws WindowsException
*/
private void setInfo() throws WindowsException {
try {
processInfo = new String[count];
IJIComObject comObj = variant.getObjectAsComObject();
// todo is this needed?
comObj.registerUnreferencedHandler(new IJIUnreferenced() {
public void unReferenced() {
}
});
IJIEnumVariant enumVARIANT = (IJIEnumVariant) JIObjectFactory.narrowObject(comObj.queryInterface(IJIEnumVariant.IID));
for (int i = 0; i < count; i++) {
Object[] values = enumVARIANT.next(1);
JIArray array = (JIArray) values[0];
Object[] arrayObj = (Object[]) array.getArrayInstance();
for (int j = 0; j < arrayObj.length; j++) {
IJIDispatch wbemObject_dispatch = (IJIDispatch) JIObjectFactory.narrowObject(((JIVariant) arrayObj[j]).getObjectAsComObject());
JIVariant variant2 = (JIVariant) (wbemObject_dispatch.callMethodA("GetObjectText_", new Object[] { Integer.valueOf(1) }))[0];
// normally arrayObj.length is 1
if (j == 0)
processInfo[i] = variant2.getObjectAsString().getString();
}
}
} catch (Exception e) {
throw new WindowsException(e);
}
}
Aggregations