2017-02-16 154 views
1

为了通过电线将复杂的JSON/JavaScript对象发送到C++二进制文件,我使用了协议缓冲区。这些天有对Node.js的原生protobuf支持,所以我没有使用任何其他绑定。写入/读取协议缓冲区

// Set maximum execution time of binary to equal the 
// remainder of processing time, minus a second to allow 
// for parsing. 
var timeLimit = context.getRemainingTimeInMillis() - 1000; 

// Check if meta parameters are given in the request. 
// Assign default values if they are not. 
var model = new protocols.Model(); 

// Sort the resolutions. 
function descending(a, b) { 
    if (a.width > b.width) { 
     return -1; 
    } else if (a.width < b.width) { 
     return 1; 
    } 
    return 0; 
} 

// Construct image objects. 
var images = request.images.map(function(image) { 
    // Perform the sort. 
    image.resolutions.sort(descending); 

    // Create an image protobuffer. 
    var imageProto = new protocols.Model.Image(); 

    // Assign the original's resolution to the image. 
    imageProto.setWidth(image.resolutions[0].width); 
    imageProto.setHeight(image.resolutions[0].height); 

    // Return the result. 
    return imageProto; 
}); 

// Construct flag enumeration references. 
var flags = request.flags.map(function(flag) { 
    return protocols.Model.Flag[flag]; 
}); 

// Assign request properties to protobuf. 
model.setImagesList  (images             ); 
model.setFlagsList  (flags              ); 
model.setMinNoOfPages (request.minNoOfPages ? request.minNoOfPages : 1  ); 
model.setMaxNoOfPages (request.maxNoOfPages ? request.maxNoOfPages : 1  ); 
model.setMaxPerPage  (request.maxPerPage  ? request.maxPerPage : 5  ); 
model.setPageWidth  (request.pageWidth  ? request.pageWidth  : 3508  ); 
model.setPageHeight  (request.pageHeight  ? request.pageHeight : 2480  ); 
model.setTimeLimit  (request.timeLimit  ? request.timeLimit  : timeLimit); 
model.setBorderWidth (request.borderWidth ? request.borderWidth : 0  ); 
model.setMinDim   (request.minDim   ? request.minDim  : 0  ); 

// This is where things go wrong. 
var serialized = model.serializeBinary(); 
fs.writeFileSync('model.pb', serialized); 
var read = fs.readFileSync('model.pb'), 
    model2 = protocols.Model.deserializeBinary(read); 

console.log(model.toObject()); 
console.log(model2.toObject()); 

上面是我卡在一块代码。我设法编译protobuf的消息:

syntax = "proto3"; 

package layout; 

message Model { 

    enum Flag { 
     FILL_PAGE = 0; 
     BORDERS = 1; 
    } 

    message Image { 
     int32 width = 1; 
     int32 height = 2; 
    } 

    repeated Flag flags = 1; 
    repeated Image images = 2; 

    string avoid_layout = 3; 
    int32 min_no_of_pages = 4; 
    int32 max_no_of_pages = 5; 
    int32 max_per_page = 6; 
    int32 page_width = 7; 
    int32 page_height = 8; 
    int32 time_limit = 9; 
    int32 border_width = 10; 
    int32 min_dim = 11; 
} 

然而,JavaScript支持文档的protobuf是最小的(https://developers.google.com/protocol-buffers/docs/reference/javascript-generated#message),我想不通我怎么能读我的消息记录到文件,然后再阅读。有人可以向我解释如何做到这一点?

我想象中的解决方案是我的代码的最后几行一些变化,但目前我得到这个错误:

AssertionError: Failure: Type not convertible to Uint8Array. 
+1

哪个代码行是?我猜'model2 = protocols.Model.deserializeBinary(read)'? –

+0

是的,该行导致错误。 – Arthelais

+1

'read instanceof Uint8Array'的结果是什么?如果为false,您使用的是哪个版本的“节点”? –

回答

1

你可能会看到节点的一些模糊的情况下Buffer无法被识别为Uint8Array。我发现了一个relevant issue report。因此请尝试执行类型

protocols.Model.deserializeBinary(new Uint8Array(read)); 

replacing the constructor。该建议与您的建议非常相似 - 它也在读取二进制文件。