ws-door
Version:
websocket router
264 lines (224 loc) • 6.75 kB
JavaScript
/**
* @fileoverview
* @enhanceable
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
goog.exportSymbol('proto.door.Event', null, global);
goog.exportSymbol('proto.door.MethodEnum', null, global);
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.door.Event = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.door.Event, jspb.Message);
if (goog.DEBUG && !COMPILED) {
proto.door.Event.displayName = 'proto.door.Event';
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto suitable for use in Soy templates.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
* for transitional soy proto support: http://goto/soy-param-migration
* @return {!Object}
*/
proto.door.Event.prototype.toObject = function(opt_includeInstance) {
return proto.door.Event.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Whether to include the JSPB
* instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.door.Event} msg The msg instance to transform.
* @return {!Object}
*/
proto.door.Event.toObject = function(includeInstance, msg) {
var f, obj = {
path: msg.getPath(),
method: msg.getMethod(),
data: msg.getData_asB64()
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.door.Event}
*/
proto.door.Event.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.door.Event;
return proto.door.Event.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.door.Event} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.door.Event}
*/
proto.door.Event.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setPath(value);
break;
case 2:
var value = /** @type {!proto.door.MethodEnum} */ (reader.readEnum());
msg.setMethod(value);
break;
case 3:
var value = /** @type {!Uint8Array} */ (reader.readBytes());
msg.setData(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Class method variant: serializes the given message to binary data
* (in protobuf wire format), writing to the given BinaryWriter.
* @param {!proto.door.Event} message
* @param {!jspb.BinaryWriter} writer
*/
proto.door.Event.serializeBinaryToWriter = function(message, writer) {
message.serializeBinaryToWriter(writer);
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.door.Event.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
this.serializeBinaryToWriter(writer);
return writer.getResultBuffer();
};
/**
* Serializes the message to binary data (in protobuf wire format),
* writing to the given BinaryWriter.
* @param {!jspb.BinaryWriter} writer
*/
proto.door.Event.prototype.serializeBinaryToWriter = function (writer) {
var f = undefined;
f = this.getPath();
if (f.length > 0) {
writer.writeString(
1,
f
);
}
f = this.getMethod();
if (f !== 0.0) {
writer.writeEnum(
2,
f
);
}
f = this.getData_asU8();
if (f.length > 0) {
writer.writeBytes(
3,
f
);
}
};
/**
* Creates a deep clone of this proto. No data is shared with the original.
* @return {!proto.door.Event} The clone.
*/
proto.door.Event.prototype.cloneMessage = function() {
return /** @type {!proto.door.Event} */ (jspb.Message.cloneMessage(this));
};
/**
* optional string path = 1;
* @return {string}
*/
proto.door.Event.prototype.getPath = function() {
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
};
/** @param {string} value */
proto.door.Event.prototype.setPath = function(value) {
jspb.Message.setField(this, 1, value);
};
/**
* optional MethodEnum method = 2;
* @return {!proto.door.MethodEnum}
*/
proto.door.Event.prototype.getMethod = function() {
return /** @type {!proto.door.MethodEnum} */ (jspb.Message.getFieldProto3(this, 2, 0));
};
/** @param {!proto.door.MethodEnum} value */
proto.door.Event.prototype.setMethod = function(value) {
jspb.Message.setField(this, 2, value);
};
/**
* optional bytes data = 3;
* @return {!(string|Uint8Array)}
*/
proto.door.Event.prototype.getData = function() {
return /** @type {!(string|Uint8Array)} */ (jspb.Message.getFieldProto3(this, 3, ""));
};
/**
* optional bytes data = 3;
* This is a type-conversion wrapper around `getData()`
* @return {string}
*/
proto.door.Event.prototype.getData_asB64 = function() {
return /** @type {string} */ (jspb.Message.bytesAsB64(
this.getData()));
};
/**
* optional bytes data = 3;
* Note that Uint8Array is not supported on all browsers.
* @see http://caniuse.com/Uint8Array
* This is a type-conversion wrapper around `getData()`
* @return {!Uint8Array}
*/
proto.door.Event.prototype.getData_asU8 = function() {
return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8(
this.getData()));
};
/** @param {!(string|Uint8Array)} value */
proto.door.Event.prototype.setData = function(value) {
jspb.Message.setField(this, 3, value);
};
/**
* @enum {number}
*/
proto.door.MethodEnum = {
OPEN: 0,
CLOSE: 1,
GET: 2,
POST: 3,
PUT: 4,
DELETE: 5
};
goog.object.extend(exports, proto.door);