繁体   English   中英

Firefox插件读取本地XPI,文件和目录列表

[英]Firefox Addon Reading Local XPI, File and Directory Listing

在#amo-editors中聊天之后,我想知道从Firefox插件中是否可以实现以下目的:

  1. 打开本地XPI进行阅读
  2. 列出以上XPI中的所有文件及其大小
  3. 读取所选文件

绝对有可能。

1 + 2)必须使用nsIZipReader来读取xpi。 这将为您提供其中的所有文件。

3)要读取内容,您必须使用zip阅读器的getInputStream函数,然后将其包装在流实例中,然后使用entry.realSize参数entry.realSize进行read ,因为在流上read时需要读取字符。

MDN :: nsIZipWriter

MDN :: nsIZipReader


编辑:我很好奇。 我想我明白了。 这是如何使其转储zip内容(列出其中的所有文件)的示例。 请参阅console.log(entryPointer) ,它弹出“ zip路径”。 它还读取文件的内容。

var zr = Cc["@mozilla.org/libjar/zip-reader;1"].createInstance(Ci.nsIZipReader);
Cu.import('resource://gre/modules/osfile.jsm');
Cu.import('resource://gre/modules/FileUtils.jsm');

var reusableStreamInstance = Cc['@mozilla.org/scriptableinputstream;1'].createInstance(Ci.nsIScriptableInputStream);

//var pathExtFolder = OS.Path.join(OS.Constants.Path.profileDir, 'extensions');
var pathToXpiToRead = OS.Path.join(OS.Constants.Path.profileDir, 'extensions', 'PortableTester@jetpack.xpi');
var nsiFileXpi = new FileUtils.File(pathToXpiToRead);

//Services.ww.activeWindow.alert(pathToXpiToRead);

try {
  zr.open(nsiFileXpi); //if file dne it throws here
  var entries = zr.findEntries('*');
  while (entries.hasMore()) {
    var entryPointer = entries.getNext(); //just a string of "zip path" (this means path to file in zip, and it uses forward slashes remember)
    var entry = zr.getEntry(entryPointer); // should return true on `entry instanceof Ci.nsIZipEntry`
    console.log('entryPointer', entryPointer);
    /* CONSOLE OUTPUT
     * "entryPointer" "bootstrap.js" Scratchpad/1:18
     */
    console.info('entry', entry);
    /* CONSOLE OUTPUT
     * "entry" XPCWrappedNative_NoHelper { QueryInterface: QueryInterface(), compression: Getter, size: Getter, realSize: Getter, CRC32: Getter, isDirectory: Getter, lastModifiedTime: Getter, isSynthetic: Getter, permissions: Getter, compression: 8 } Scratchpad/1:19
     */
    if (!entry.isDirectory) {
        var inputStream = zr.getInputStream(entryPointer);
        reusableStreamInstance.init(inputStream);
        var fileContents = reusableStreamInstance.read(entry.realSize);
        console.log('contenst of file=', fileContents);
    } else {
        console.log('is directory, no stream to read');
    }
  }
} catch (ex) {
  console.warn('exception occured = ', ex);
  if (ex.name == 'NS_ERROR_FILE_NOT_FOUND') {
    Services.ww.activeWindow.alert('XPI at path does not exist!\n\nPath = ' + pathToXpiToRead);
  }
} finally {
  zr.close();
  console.log('zr closed');
  //Cu.forceGC(); //im not sure shoud i do this here?
}

我不确定最后是否应该执行Cu.forceGC() ,也许@nmaier可以就此提供建议。

我也不确定我是否正确地处理了输入流,它可以工作,但是我不了解内存。 我第一次这样做是.read(entry.realSize)

entry上的变量查看器: <code> entry </ code>上的变量查看器

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM