0

我目前正在尝试在 C++ 中开发自定义密码管理器。

我已经开发了一个实现 nsILoginManagerStorage 接口的可部署模块,可以将它安装在 firefox 上,并且当密码字段出现时,它会被 firefox 正确调用。

问题是当我尝试实例化要返回的 nsILoginInfo 对象时,do_CreateInstance 函数总是返回 null。我的方法实现是:

NS_IMETHODIMP FirefoxComponent::FindLogins(uint32_t *count, const nsAString & aHostname, const nsAString & aActionURL, const nsAString & aHttpRealm, nsILoginInfo * **logins)
{
    nsILoginInfo ** array = static_cast<nsILoginInfo**>(nsMemory::Alloc(sizeof(nsILoginInfo*)));
    nsresult result;
    nsCOMPtr<nsILoginInfo> loginInfo = do_CreateInstance("@mozilla.org/login-manager/loginInfo;1" , &result);
    //nsCOMPtr<nsILoginManager> loginInfo = do_CreateInstance("@mozilla.org/login-manager;1" , &result);


    if (NS_FAILED(result)){
        printf("shouldn't be here!!\n");
        return result;
    }

}

我试过获取一个 nsILoginManager 实例(只是为了检查它是否有效),但结果相同。nsILoginInfo 可以由 firefox 上的 java 脚本使用:

    Components.classes["@mozilla.org/loginmanager/loginInfo;1"].createInstance(Components.interfaces.nsILoginInfo);

我在 Ubuntu x64 上使用 firefox 20.0 和 xul-runner-sdk 20.0(与 20.0.1 的结果相同),并使用 QtCreator(对于 x64)进行构建。

我的代码灵感来自https://github.com/infinity0/mozilla-gnome-keyring

由于我现在 nsILoginInfo 已正确加载到 firefox 中,因此 firefox 是否有任何必需的字段/信息以允许我访问这些接口?

感谢您的支持。

编辑:试图通过直接访问组件管理器来加载模块,但我无法加载组件管理器。

    nsIComponentManager * manager;

    result = NS_GetComponentManager(&manager);


    if (NS_FAILED(result)){
        printf("failed getting component manager!!\n");
        return result;
    }
4

1 回答 1

0

After lots of trial and error I discovered that this error was due to bad linking of the libraries. I was missing one library (libxpcom.so).

To compile and run it right i use the libraries libxpcom.so and libxpcomglue_s.a, both found at the gecko sdk/xul-runner lib folder.

More information about which libraries to compile with in each platform: https://developer.mozilla.org/en-US/docs/XPCOM_Glue

于 2013-05-03T00:56:46.257 回答