Replace user example by helloworld example, cleanup
This commit is contained in:
@@ -1,53 +1,43 @@
|
||||
// GENERATED CODE -- DO NOT EDIT!
|
||||
{{$Package:=.File.Package}}
|
||||
|
||||
'use strict';
|
||||
var grpc = require('grpc');
|
||||
var {{$Package}}_{{$Package}}_pb = require('../{{$Package}}/{{$Package}}_pb.js');
|
||||
|
||||
{{range .File.Service}}
|
||||
{{range .Method}}
|
||||
var {{$Package}}_pb = require('./{{$Package}}_pb.js');
|
||||
{{range .File.Service}}{{range .Method}}
|
||||
function serialize_{{$Package}}_{{.InputType | splitArray "." | last}}(arg) {
|
||||
if (!(arg instanceof {{$Package}}_{{$Package}}_pb.{{.InputType | splitArray "." | last}})) {
|
||||
if (!(arg instanceof {{$Package}}_pb.{{.InputType | splitArray "." | last}})) {
|
||||
throw new Error('Expected argument of type {{$Package}}.{{.InputType | splitArray "." | last}}');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_{{$Package}}_{{.InputType | splitArray "." | last}}(buffer_arg) {
|
||||
return {{$Package}}_{{$Package}}_pb.{{.InputType | splitArray "." | last}}.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
return {{$Package}}_pb.{{.InputType | splitArray "." | last}}.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_{{$Package}}_{{.OutputType | splitArray "." | last}}(arg) {
|
||||
if (!(arg instanceof {{$Package}}_{{$Package}}_pb.{{.OutputType | splitArray "." | last}})) {
|
||||
if (!(arg instanceof {{$Package}}_pb.{{.OutputType | splitArray "." | last}})) {
|
||||
throw new Error('Expected argument of type {{$Package}}.{{.OutputType | splitArray "." | last}}');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_{{$Package}}_{{.OutputType | splitArray "." | last}}(buffer_arg) {
|
||||
return {{$Package}}_{{$Package}}_pb.{{.OutputType | splitArray "." | last}}.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
||||
return {{$Package}}_pb.{{.OutputType | splitArray "." | last}}.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}{{end}}{{end}}
|
||||
{{range .File.Service}}
|
||||
var {{.Name}}Service = exports.{{.Name}}Service = {
|
||||
{{$serviceName:=.Name}}
|
||||
{{range .Method}}
|
||||
{{.Name | lowerFirst}}: {
|
||||
{{$serviceName:=.Name}}{{range .Method}}{{.Name | lowerFirst}}: {
|
||||
path: '/{{$Package}}.{{$serviceName}}/{{.Name}}',
|
||||
requestStream: {{.ClientStreaming | default "false"}},
|
||||
responseStream: {{.ServerStreaming | default "false"}},
|
||||
requestType: {{$Package}}_{{$Package}}_pb.{{.InputType | splitArray "." | last}},
|
||||
responseType: {{$Package}}_{{$Package}}_pb.{{.OutputType | splitArray "." | last}},
|
||||
requestType: {{$Package}}_pb.{{.InputType | splitArray "." | last}},
|
||||
responseType: {{$Package}}_pb.{{.OutputType | splitArray "." | last}},
|
||||
requestSerialize: serialize_{{$Package}}_{{.InputType | splitArray "." | last}},
|
||||
requestDeserialize: deserialize_{{$Package}}_{{.InputType | splitArray "." | last}},
|
||||
responseSerialize: serialize_{{$Package}}_{{.OutputType | splitArray "." | last}},
|
||||
responseDeserialize: deserialize_{{$Package}}_{{.OutputType | splitArray "." | last}},
|
||||
},
|
||||
{{end}}
|
||||
},{{end}}
|
||||
}
|
||||
|
||||
exports.{{.Name}}Client = grpc.makeGenericClientConstructor({{.Name}}Service);
|
||||
{{end}}
|
||||
exports.{{.Name}}Client = grpc.makeGenericClientConstructor({{.Name}}Service);{{end}}
|
||||
|
@@ -0,0 +1,176 @@
|
||||
// GENERATED CODE -- DO NOT EDIT!
|
||||
{{$Package:=.File.Package}}
|
||||
|
||||
var jspb = require('google-protobuf');
|
||||
var goog = jspb;
|
||||
var global = Function('return this')();
|
||||
|
||||
{{range .File.MessageType}}
|
||||
goog.exportSymbol('proto.user.{{.Name}}', null, global);
|
||||
{{end}}
|
||||
|
||||
{{range .File.MessageType}}
|
||||
/**
|
||||
* @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.user.{{.Name}} = function(opt_data) {
|
||||
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
||||
};
|
||||
goog.inherits(proto.user.{{.Name}}, jspb.Message);
|
||||
if (goog.DEBUG && !COMPILED) {
|
||||
proto.user.{{.Name}}.displayName = 'proto.user.{{.Name}}';
|
||||
}
|
||||
|
||||
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.user.{{.Name}}.prototype.toObject = function(opt_includeInstance) {
|
||||
return proto.user.{{.Name}}.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.user.{{.Name}}} msg The msg instance to transform.
|
||||
* @return {!Object}
|
||||
*/
|
||||
proto.user.{{.Name}}.toObject = function(includeInstance, msg) {
|
||||
var f, obj = {
|
||||
profile: (f = msg.getProfile()) && proto.user.Profile.toObject(includeInstance, f)
|
||||
};
|
||||
|
||||
if (includeInstance) {
|
||||
obj.$jspbMessageInstance = msg;
|
||||
}
|
||||
return obj;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format).
|
||||
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
||||
* @return {!proto.user.{{.Name}}}
|
||||
*/
|
||||
proto.user.{{.Name}}.deserializeBinary = function(bytes) {
|
||||
var reader = new jspb.BinaryReader(bytes);
|
||||
var msg = new proto.user.{{.Name}};
|
||||
return proto.user.{{.Name}}.deserializeBinaryFromReader(msg, reader);
|
||||
};
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format) from the
|
||||
* given reader into the given message object.
|
||||
* @param {!proto.user.{{.Name}}} msg The message object to deserialize into.
|
||||
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
||||
* @return {!proto.user.{{.Name}}}
|
||||
*/
|
||||
proto.user.{{.Name}}.deserializeBinaryFromReader = function(msg, reader) {
|
||||
while (reader.nextField()) {
|
||||
if (reader.isEndGroup()) {
|
||||
break;
|
||||
}
|
||||
var field = reader.getFieldNumber();
|
||||
switch (field) {
|
||||
case 1:
|
||||
var value = new proto.user.Profile;
|
||||
reader.readMessage(value,proto.user.Profile.deserializeBinaryFromReader);
|
||||
msg.setProfile(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.user.{{.Name}}} message
|
||||
* @param {!jspb.BinaryWriter} writer
|
||||
*/
|
||||
proto.user.{{.Name}}.serializeBinaryToWriter = function(message, writer) {
|
||||
message.serializeBinaryToWriter(writer);
|
||||
};
|
||||
|
||||
/**
|
||||
* Serializes the message to binary data (in protobuf wire format).
|
||||
* @return {!Uint8Array}
|
||||
*/
|
||||
proto.user.{{.Name}}.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.user.{{.Name}}.prototype.serializeBinaryToWriter = function (writer) {
|
||||
var f = undefined;
|
||||
f = this.getProfile();
|
||||
if (f != null) {
|
||||
writer.writeMessage(
|
||||
1,
|
||||
f,
|
||||
proto.user.Profile.serializeBinaryToWriter
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* optional Profile profile = 1;
|
||||
* @return {?proto.user.Profile}
|
||||
*/
|
||||
proto.user.{{.Name}}.prototype.getProfile = function() {
|
||||
return /** @type{?proto.user.Profile} */ (
|
||||
jspb.Message.getWrapperField(this, proto.user.Profile, 1));
|
||||
};
|
||||
|
||||
/** @param {?proto.user.Profile|undefined} value */
|
||||
proto.user.{{.Name}}.prototype.setProfile = function(value) {
|
||||
jspb.Message.setWrapperField(this, 1, value);
|
||||
};
|
||||
|
||||
proto.user.{{.Name}}.prototype.clearProfile = function() {
|
||||
this.setProfile(undefined);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns whether this field is set.
|
||||
* @return {!boolean}
|
||||
*/
|
||||
proto.user.{{.Name}}.prototype.hasProfile = function() {
|
||||
return jspb.Message.getField(this, 1) != null;
|
||||
};
|
||||
// --------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{{end}}
|
||||
|
||||
goog.object.extend(exports, proto.user);
|
Reference in New Issue
Block a user