blob: 76ab1744b0073b6b39cd490c53f101163a864a18 [file] [log] [blame]
murgatroid99cca5ffa2015-01-15 14:06:56 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
murgatroid99cca5ffa2015-01-15 14:06:56 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
murgatroid99ffac55d2017-05-05 13:54:03 -070034/**
35 * @module
36 */
37
murgatroid99dca966d2015-02-19 14:37:18 -080038'use strict';
39
murgatroid996d6009f2015-10-15 09:57:31 -070040var path = require('path');
murgatroid996f607662016-04-27 16:38:33 -070041var fs = require('fs');
murgatroid996d6009f2015-10-15 09:57:31 -070042
43var SSL_ROOTS_PATH = path.resolve(__dirname, '..', '..', 'etc', 'roots.pem');
44
murgatroid9955739d52015-06-03 10:58:21 -070045var _ = require('lodash');
murgatroid99cca5ffa2015-01-15 14:06:56 -080046
47var ProtoBuf = require('protobufjs');
48
murgatroid99e7879552015-02-12 12:21:15 -080049var client = require('./src/client.js');
murgatroid99cca5ffa2015-01-15 14:06:56 -080050
murgatroid99e7879552015-02-12 12:21:15 -080051var server = require('./src/server.js');
murgatroid99cca5ffa2015-01-15 14:06:56 -080052
murgatroid999b9708a2016-06-01 11:42:20 -070053var common = require('./src/common.js');
54
murgatroid9984e3cde2015-08-20 11:27:05 -070055var Metadata = require('./src/metadata.js');
56
murgatroid99e190f352016-01-20 13:52:08 -080057var grpc = require('./src/grpc_extension');
murgatroid99cca5ffa2015-01-15 14:06:56 -080058
murgatroid99b5b5f022017-03-16 16:42:10 -070059var protobuf_js_5_common = require('./src/protobuf_js_5_common');
60var protobuf_js_6_common = require('./src/protobuf_js_6_common');
61
murgatroid996f607662016-04-27 16:38:33 -070062grpc.setDefaultRootsPem(fs.readFileSync(SSL_ROOTS_PATH, 'ascii'));
63
murgatroid99b3068542017-03-21 11:25:01 -070064/**
65 * Load a ProtoBuf.js object as a gRPC object. The options object can provide
66 * the following options:
67 * - binaryAsBase64: deserialize bytes values as base64 strings instead of
68 * Buffers. Defaults to false
69 * - longsAsStrings: deserialize long values as strings instead of objects.
70 * Defaults to true
murgatroid99ac7f90d2017-03-23 18:00:09 -070071 * - enumsAsStrings: deserialize enum values as strings instead of numbers.
72 * Defaults to true
murgatroid99b3068542017-03-21 11:25:01 -070073 * - deprecatedArgumentOrder: Use the beta method argument order for client
74 * methods, with optional arguments after the callback. Defaults to false.
75 * This option is only a temporary stopgap measure to smooth an API breakage.
76 * It is deprecated, and new code should not use it.
77 * - protobufjsVersion: Available values are 5, 6, and 'detect'. 5 and 6
78 * respectively indicate that an object from the corresponding version of
79 * ProtoBuf.js is provided in the value argument. If the option is 'detect',
80 * gRPC will guess what the version is based on the structure of the value.
81 * Defaults to 'detect'.
82 * @param {Object} value The ProtoBuf.js reflection object to load
83 * @param {Object=} options Options to apply to the loaded file
84 * @return {Object<string, *>} The resulting gRPC object
85 */
murgatroid99c02910b2016-02-17 12:59:26 -080086exports.loadObject = function loadObject(value, options) {
murgatroid99b1a02312017-03-17 13:45:15 -070087 options = _.defaults(options, common.defaultGrpcOptions);
murgatroid99b3068542017-03-21 11:25:01 -070088 options = _.defaults(options, {'protobufjsVersion': 'detect'});
89 var protobufjsVersion;
90 if (options.protobufjsVersion === 'detect') {
91 if (protobuf_js_6_common.isProbablyProtobufJs6(value)) {
92 protobufjsVersion = 6;
93 } else if (protobuf_js_5_common.isProbablyProtobufJs5(value)) {
94 protobufjsVersion = 5;
95 } else {
96 var error_message = 'Could not detect ProtoBuf.js version. Please ' +
97 'specify the version number with the "protobufjs_version" option';
98 throw new Error(error_message);
99 }
murgatroid99b1a02312017-03-17 13:45:15 -0700100 } else {
murgatroid99b3068542017-03-21 11:25:01 -0700101 protobufjsVersion = options.protobufjsVersion;
102 }
103 switch (protobufjsVersion) {
104 case 6: return protobuf_js_6_common.loadObject(value, options);
105 case 5:
murgatroid99b1a02312017-03-17 13:45:15 -0700106 var deprecation_message = 'Calling grpc.loadObject with an object ' +
107 'generated by ProtoBuf.js 5 is deprecated. Please upgrade to ' +
108 'ProtoBuf.js 6.';
109 common.log(grpc.logVerbosity.INFO, deprecation_message);
110 return protobuf_js_5_common.loadObject(value, options);
murgatroid99b3068542017-03-21 11:25:01 -0700111 default:
112 throw new Error('Unrecognized protobufjsVersion', protobufjsVersion);
murgatroid99cca5ffa2015-01-15 14:06:56 -0800113 }
murgatroid999cd90a62015-07-27 11:23:13 -0700114};
115
116var loadObject = exports.loadObject;
murgatroid99cca5ffa2015-01-15 14:06:56 -0800117
murgatroid99b5b5f022017-03-16 16:42:10 -0700118function applyProtoRoot(filename, root) {
119 if (_.isString(filename)) {
120 return filename;
121 }
122 filename.root = path.resolve(filename.root) + '/';
123 root.resolvePath = function(originPath, importPath, alreadyNormalized) {
124 return ProtoBuf.util.path.resolve(filename.root,
125 importPath,
126 alreadyNormalized);
127 };
128 return filename.file;
129}
130
murgatroid99cca5ffa2015-01-15 14:06:56 -0800131/**
murgatroid99654d2542016-02-17 15:36:28 -0800132 * Load a gRPC object from a .proto file. The options object can provide the
133 * following options:
murgatroid99b3068542017-03-21 11:25:01 -0700134 * - convertFieldsToCamelCase: Load this file with field names in camel case
135 * instead of their original case
murgatroid99654d2542016-02-17 15:36:28 -0800136 * - binaryAsBase64: deserialize bytes values as base64 strings instead of
137 * Buffers. Defaults to false
138 * - longsAsStrings: deserialize long values as strings instead of objects.
139 * Defaults to true
murgatroid99ac7f90d2017-03-23 18:00:09 -0700140 * - enumsAsStrings: deserialize enum values as strings instead of numbers.
141 * Defaults to true
murgatroid9927b8d902016-03-22 14:46:37 -0700142 * - deprecatedArgumentOrder: Use the beta method argument order for client
143 * methods, with optional arguments after the callback. Defaults to false.
144 * This option is only a temporary stopgap measure to smooth an API breakage.
145 * It is deprecated, and new code should not use it.
murgatroid99c02910b2016-02-17 12:59:26 -0800146 * @param {string|{root: string, file: string}} filename The file to load
murgatroid9971dbb862015-04-20 11:22:51 -0700147 * @param {string=} format The file format to expect. Must be either 'proto' or
148 * 'json'. Defaults to 'proto'
murgatroid99c02910b2016-02-17 12:59:26 -0800149 * @param {Object=} options Options to apply to the loaded file
murgatroid99cca5ffa2015-01-15 14:06:56 -0800150 * @return {Object<string, *>} The resulting gRPC object
151 */
murgatroid99c02910b2016-02-17 12:59:26 -0800152exports.load = function load(filename, format, options) {
murgatroid99b5b5f022017-03-16 16:42:10 -0700153 /* Note: format is currently unused, because the API for loading a proto
154 file or a JSON file is identical in Protobuf.js 6. In the future, there is
155 still the possibility of adding other formats that would be loaded
156 differently */
157 options = _.defaults(options, common.defaultGrpcOptions);
murgatroid99b3068542017-03-21 11:25:01 -0700158 options.protobufjs_version = 6;
murgatroid99b5b5f022017-03-16 16:42:10 -0700159 var root = new ProtoBuf.Root();
160 var parse_options = {keepCase: !options.convertFieldsToCamelCase};
161 return loadObject(root.loadSync(applyProtoRoot(filename, root),
162 parse_options),
163 options);
murgatroid999cd90a62015-07-27 11:23:13 -0700164};
murgatroid99cca5ffa2015-01-15 14:06:56 -0800165
murgatroid991d2f2892016-06-02 14:33:22 -0700166var log_template = _.template(
167 '{severity} {timestamp}\t{file}:{line}]\t{message}',
168 {interpolate: /{([\s\S]+?)}/g});
169
murgatroid99cca5ffa2015-01-15 14:06:56 -0800170/**
murgatroid999b9708a2016-06-01 11:42:20 -0700171 * Sets the logger function for the gRPC module. For debugging purposes, the C
172 * core will log synchronously directly to stdout unless this function is
173 * called. Note: the output format here is intended to be informational, and
174 * is not guaranteed to stay the same in the future.
175 * Logs will be directed to logger.error.
176 * @param {Console} logger A Console-like object.
177 */
178exports.setLogger = function setLogger(logger) {
179 common.logger = logger;
murgatroid991d2f2892016-06-02 14:33:22 -0700180 grpc.setDefaultLoggerCallback(function(file, line, severity,
181 message, timestamp) {
182 logger.error(log_template({
183 file: path.basename(file),
184 line: line,
185 severity: severity,
186 message: message,
187 timestamp: timestamp.toISOString()
188 }));
murgatroid999b9708a2016-06-01 11:42:20 -0700189 });
190};
191
192/**
193 * Sets the logger verbosity for gRPC module logging. The options are members
194 * of the grpc.logVerbosity map.
195 * @param {Number} verbosity The minimum severity to log
196 */
197exports.setLogVerbosity = function setLogVerbosity(verbosity) {
198 common.logVerbosity = verbosity;
199 grpc.setLogVerbosity(verbosity);
200};
201
202/**
murgatroid999cd90a62015-07-27 11:23:13 -0700203 * @see module:src/server.Server
murgatroid99cca5ffa2015-01-15 14:06:56 -0800204 */
murgatroid99366e64d2015-07-15 17:01:49 -0700205exports.Server = server.Server;
murgatroid99cca5ffa2015-01-15 14:06:56 -0800206
207/**
murgatroid9984e3cde2015-08-20 11:27:05 -0700208 * @see module:src/metadata
209 */
210exports.Metadata = Metadata;
211
212/**
murgatroid99cca5ffa2015-01-15 14:06:56 -0800213 * Status name to code number mapping
214 */
215exports.status = grpc.status;
murgatroid999cd90a62015-07-27 11:23:13 -0700216
murgatroid99cca5ffa2015-01-15 14:06:56 -0800217/**
murgatroid990b094572015-08-14 10:48:45 -0700218 * Propagate flag name to number mapping
219 */
220exports.propagate = grpc.propagate;
221
222/**
murgatroid99cca5ffa2015-01-15 14:06:56 -0800223 * Call error name to code number mapping
224 */
225exports.callError = grpc.callError;
murgatroid99b6ab1b42015-01-21 10:30:36 -0800226
227/**
murgatroid994a1474f2015-08-17 14:00:31 -0700228 * Write flag name to code number mapping
229 */
230exports.writeFlags = grpc.writeFlags;
231
232/**
murgatroid999b9708a2016-06-01 11:42:20 -0700233 * Log verbosity setting name to code number mapping
234 */
235exports.logVerbosity = grpc.logVerbosity;
236
237/**
murgatroid99b6ab1b42015-01-21 10:30:36 -0800238 * Credentials factories
239 */
murgatroid99153b09d2015-09-25 16:04:03 -0700240exports.credentials = require('./src/credentials.js');
murgatroid99b6ab1b42015-01-21 10:30:36 -0800241
242/**
243 * ServerCredentials factories
244 */
245exports.ServerCredentials = grpc.ServerCredentials;
murgatroid998c3ed002015-02-18 15:00:56 -0800246
murgatroid999cd90a62015-07-27 11:23:13 -0700247/**
248 * @see module:src/client.makeClientConstructor
249 */
murgatroid99e023e982015-03-18 17:17:33 -0700250exports.makeGenericClientConstructor = client.makeClientConstructor;
murgatroid9976ba1ff2015-08-28 14:57:04 -0700251
252/**
253 * @see module:src/client.getClientChannel
254 */
255exports.getClientChannel = client.getClientChannel;
256
257/**
258 * @see module:src/client.waitForClientReady
259 */
260exports.waitForClientReady = client.waitForClientReady;
murgatroid999030c812016-09-16 13:25:08 -0700261
262exports.closeClient = function closeClient(client_obj) {
murgatroid99ffac55d2017-05-05 13:54:03 -0700263 client.Client.prototype.close.apply(client_obj);
murgatroid999030c812016-09-16 13:25:08 -0700264};
murgatroid99ffac55d2017-05-05 13:54:03 -0700265
266/**
267 * @see module:src/client.Client
268 */
269exports.Client = client.Client;