通过 Thrift 从 Chrome 扩展程序保存到 Evernote 的二进制文件在 Unicode 转换后出现乱码

Posted

技术标签:

【中文标题】通过 Thrift 从 Chrome 扩展程序保存到 Evernote 的二进制文件在 Unicode 转换后出现乱码【英文标题】:Binary file saved to Evernote from Chrome Extension via Thrift is garbled after Unicode conversion 【发布时间】:2012-11-26 14:18:41 【问题描述】:

编辑:这个问题归结为 UTF-8 转换,请在这里讨论:UTF-8: should it hold that string = encode(decode(string))? And if not, how to achieve it?

我正在尝试使用非官方 Kanda software's API 将 PDF 文件从 Chrome 扩展程序保存到 Evernote。本质上,它使用 Thrift 并提供根据 Evernote API 创建和发送数据结构的方法。 为了测试,我使用了一个字节长度为 2898 的示例 PDF 文件。

当调用 CreateNote() 方法时,数据最终会进入 SDK 的 thrift.js,在该文件中进行 UTF 编码并放入适当的数据结构中。这些函数被称为:

    writeString:function(str) 
        var result = Array.prototype.map.call(this.encode(str).split(""), this.stringToHex); // <----- I tried to skip this encoding for the data body
        this.writeI32(result.length);
        for (var i = 0; i < result.length; i++) 
            this.ra.push(result[i]);
        
    ,
...
    encode:function(string) 
        string = string.replace(/\r\n/g, "\n");
        var utftext = "";
        for (var n = 0; n < string.length; n++) 

            var c = string.charCodeAt(n);

            if (c < 128) 
                utftext += String.fromCharCode(c);
            
            else if ((c > 127) && (c < 2048)) 
                utftext += String.fromCharCode((c >> 6) | 192);
                utftext += String.fromCharCode((c & 63) | 128);
            
            else 
                utftext += String.fromCharCode((c >> 12) | 224);
                utftext += String.fromCharCode(((c >> 6) & 63) | 128);
                utftext += String.fromCharCode((c & 63) | 128);
            
        
        return utftext;
    ,
...
    writeI32:function(i32) 
        var i32out = new Array();
        i32out[0] = 0xff & i32 >> 24;
        i32out[1] = 0xff & i32 >> 16;
        i32out[2] = 0xff & i32 >> 8;
        i32out[3] = 0xff & i32;

        var result = Array.prototype.map.call(i32out, this.byteToHex);
        for (var i = 0; i < 4; i++) 
            this.ra.push(result[i]);
        

    ,

我真的不明白 Thrift 在这个级别是如何工作的,以及为什么它需要对包括二进制附件正文在内的所有数据进行编码,但正如您所见,它会生成 PDF 的数据(以及要传输的所有其他字符串数据) ,就此而言)是 UTF 编码的,所以 .length 现在是 3018 字节。这一切都通过 API,文件显示在 Evernote 前端(见图),但它没有被解码回来,大小为 3018 字节,所以 PDF 是拙劣的。

Image of the result on Evernote front-end

我试图通过仅跳过对数据主体的 encode() 调用来强制解决方案,但这会导致文件以某种方式被丢弃。

请问问题出在我的误解、SDK 还是 Evernote 后端?请问如何解决?我为此失眠了。


供参考:我通过 XMLHttpRequest 获取原始文件,如下所示:

function getLink(url, callback) 
  var xhr = new XMLHttpRequest();
  xhr.open('GET', document.getElementById('url1').value, true);
  xhr.responseType = 'text';
  xhr.overrideMimeType('text/plain; charset=x-user-defined');

  xhr.onload = function(e) 
    if (this.status == 200) 
      // Note: .response instead of .responseText
      alert("String(this.response) " + String(this.response).length);
      alert("String(this.responseText) " + String(this.responseText).length);
      blob = String(this.response);
      AddNote1(url, blob, function(response) 
        document.getElementById('result').innerhtml += String(response).replace(/\n/g, "<br/>") + "<br/>";
        document.getElementById('result').innerHTML += blob.slice(1, 20);
         );
      
    ;
  xhr.send();
  

结果数据看起来不错,string.length 为 2898。 然后我继续添加示例中描述的注释。同样,这一切都检查得很好,字节字符串完好无损地进入了 CreateNote(),所以这再次仅供参考:

function AddNote1(Name, ContentFile, callback)

    var noteStore = get_NoteStore();
    var note = new Note();
    note.title = Name;
    var na = new NoteAttributes();
    //na.author = "someone";
    na.sourceURL = Name;
    na.source = "web.clip";
    note.attributes = na;

    var data = new Data();
    var resource = new Resource();
    binaryData = ContentFile;
    data.size = binaryData.length;
    alert(binaryData.length + '*' + ContentFile.length);
    data.bodyHash = raw_md5(binaryData);
    data.body = binaryData;
    resource.mime = "application/pdf";
    resource.data = data;
    var resAttributes = new ResourceAttributes();
    resAttributes.fileName = String(Name).replace(/^.*[\/\\]/g, '');
    resource.attributes = resAttributes;
    note.resources = Array(resource);
    //important to set correct content
    var content = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
        + "<!DOCTYPE en-note SYSTEM \"http://xml.evernote.com/pub/enml2.dtd\"><en-note>";
    content += String("Oi Wei").replace(/\n/g, "<br/>") + "<br/>";
    content += "<en-media type=\"application/pdf\" hash=\"" + md5(binaryData) + "\"/>";
    content += "</en-note>";
    note.content = content;
    //response is a created note
    //callback function process response
    var response = noteStore.createNote(Eventnote.Auth.get_auth_token(), note);
    if (callback !== undefined) 
      callback(response);
      

【问题讨论】:

我发现这应该通过在处理文件之前对其进行解码来解决。这仍然会使具有较高 Unicode 数字的字符出现乱码。有没有没有这个问题的javascript utf8_decode() 实现? 【参考方案1】:

是否有任何没有的 Javascript utf8_decode() 实现 这个问题?

取自here:

function encode_utf8( s )

  return unescape( encodeURIComponent( s ) );


function decode_utf8( s )

  return decodeURIComponent( escape( s ) );

【讨论】:

以上是关于通过 Thrift 从 Chrome 扩展程序保存到 Evernote 的二进制文件在 Unicode 转换后出现乱码的主要内容,如果未能解决你的问题,请参考以下文章

如何保存带有 chrome 扩展名的页面

从 Chrome 扩展程序访问网页的 localStorage

如何使用 Chrome 扩展程序自动保存 Google Chrome 开发者工具的网络面板日志?

如何在网页中调用chrome浏览器里的扩展程序

chrome浏览器怎么导出已安装的扩展程序为crx文件

Chrome 扩展程序中未显示另存为对话框