项目初始化
This commit is contained in:
133
uni_modules/c-svga/node_modules/svgaplayer-weapp/protobuf_mp/protobuf.js
generated
vendored
Normal file
133
uni_modules/c-svga/node_modules/svgaplayer-weapp/protobuf_mp/protobuf.js
generated
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
/**
|
||||
* Created by zhangmiao on 2018/3/13.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
(function (protobufFactory){
|
||||
//if (typeof define === 'function')//这里会不会定义重复呢?怎么去掉呢
|
||||
// define('protobuf', protobufFactory);
|
||||
//else
|
||||
module.exports = protobufFactory();
|
||||
})(function(){
|
||||
var protobuf = {};
|
||||
//app.globalData.protobuf = protobuf;
|
||||
|
||||
/**
|
||||
* Build type, one of `"full"`, `"light"` or `"minimal"`.
|
||||
* @name build
|
||||
* @type {string}
|
||||
* @const
|
||||
*/
|
||||
protobuf.build = "minimal";
|
||||
|
||||
// Serialization
|
||||
protobuf.Writer = require("./src/writer");
|
||||
protobuf.Reader = require("./src/reader");
|
||||
|
||||
// Utility
|
||||
protobuf.util = require("./src/util");
|
||||
protobuf.rpc = require("./src/rpc/service");
|
||||
protobuf.roots = require("./src/roots");
|
||||
protobuf.verifier = require("./src/verifier");
|
||||
|
||||
protobuf.tokenize = require("./src/tokenize");
|
||||
protobuf.parse = require("./src/parse");
|
||||
protobuf.common = require("./src/common");
|
||||
|
||||
protobuf.ReflectionObject = require("./src/object");
|
||||
protobuf.Namespace = require("./src/namespace");
|
||||
protobuf.Root = require("./src/root");
|
||||
protobuf.Enum = require("./src/enum");
|
||||
protobuf.Type = require("./src/type");
|
||||
protobuf.Field = require("./src/field");
|
||||
protobuf.OneOf = require("./src/oneof");
|
||||
protobuf.MapField = require("./src/mapField");
|
||||
protobuf.Service = require("./src/service");
|
||||
protobuf.Method = require("./src/method");
|
||||
protobuf.converter = require("./src/converter");
|
||||
protobuf.decoder = require("./src/decoder");
|
||||
|
||||
// Runtime
|
||||
protobuf.Message = require("./src/message");
|
||||
protobuf.wrappers = require("./src/wrappers");
|
||||
|
||||
// Utility
|
||||
protobuf.types = require("./src/types");
|
||||
protobuf.util = require("./src/util");
|
||||
|
||||
protobuf.configure = configure;
|
||||
|
||||
|
||||
function load(filename, root, callback) {
|
||||
if (typeof root === "function") {
|
||||
callback = root;
|
||||
root = new protobuf.Root();
|
||||
} else if (!root)
|
||||
root = new protobuf.Root();
|
||||
return root.load(filename, callback);
|
||||
}
|
||||
|
||||
protobuf.load = load;
|
||||
|
||||
function loadSync(filename, root) {
|
||||
if (!root)
|
||||
root = new protobuf.Root();
|
||||
return root.loadSync(filename);
|
||||
}
|
||||
|
||||
protobuf.loadSync = loadSync;
|
||||
|
||||
|
||||
//新增weichat支持的解析pbConfig接口
|
||||
function parseFromPbString(pbString, root, callback){
|
||||
if (typeof root === "function") {
|
||||
callback = root;
|
||||
root = new protobuf.Root();
|
||||
} else if (!root)
|
||||
root = new protobuf.Root();
|
||||
return root.parseFromPbString(pbString, callback);
|
||||
}
|
||||
|
||||
protobuf.parseFromPbString = parseFromPbString;
|
||||
|
||||
/**
|
||||
* Reconfigures the library according to the environment.
|
||||
* @returns {undefined}
|
||||
*/
|
||||
function configure() {
|
||||
|
||||
protobuf.converter._configure();
|
||||
protobuf.decoder._configure();
|
||||
protobuf.Field._configure();
|
||||
protobuf.MapField._configure();
|
||||
protobuf.Message._configure();
|
||||
protobuf.Namespace._configure();
|
||||
protobuf.Method._configure();
|
||||
protobuf.ReflectionObject._configure();
|
||||
protobuf.OneOf._configure();
|
||||
protobuf.parse._configure();
|
||||
protobuf.Reader._configure();
|
||||
protobuf.Root._configure();
|
||||
protobuf.Service._configure();
|
||||
protobuf.verifier._configure();
|
||||
protobuf.Type._configure();
|
||||
protobuf.types._configure();
|
||||
protobuf.wrappers._configure();
|
||||
protobuf.Writer._configure();
|
||||
}
|
||||
configure();
|
||||
|
||||
if(arguments&&arguments.length){
|
||||
for (var i = 0 ;i < arguments.length; i++){
|
||||
var argument = arguments[i];
|
||||
if(argument.hasOwnProperty("exports")){
|
||||
argument.exports = protobuf;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
return protobuf;
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user