blob: ba73e3dac8f2e98fdecf6fe417b13441a89b636a [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
murgatroid99dca966d2015-02-19 14:37:18 -080034'use strict';
35
murgatroid996d6009f2015-10-15 09:57:31 -070036var path = require('path');
murgatroid996f607662016-04-27 16:38:33 -070037var fs = require('fs');
murgatroid996d6009f2015-10-15 09:57:31 -070038
39var SSL_ROOTS_PATH = path.resolve(__dirname, '..', '..', 'etc', 'roots.pem');
40
murgatroid9955739d52015-06-03 10:58:21 -070041var _ = require('lodash');
murgatroid99cca5ffa2015-01-15 14:06:56 -080042
43var ProtoBuf = require('protobufjs');
44
murgatroid99e7879552015-02-12 12:21:15 -080045var client = require('./src/client.js');
murgatroid99cca5ffa2015-01-15 14:06:56 -080046
murgatroid99e7879552015-02-12 12:21:15 -080047var server = require('./src/server.js');
murgatroid99cca5ffa2015-01-15 14:06:56 -080048
murgatroid999b9708a2016-06-01 11:42:20 -070049var common = require('./src/common.js');
50
murgatroid9984e3cde2015-08-20 11:27:05 -070051var Metadata = require('./src/metadata.js');
52
murgatroid99e190f352016-01-20 13:52:08 -080053var grpc = require('./src/grpc_extension');
murgatroid99cca5ffa2015-01-15 14:06:56 -080054
murgatroid99b5b5f022017-03-16 16:42:10 -070055var protobuf_js_5_common = require('./src/protobuf_js_5_common');
56var protobuf_js_6_common = require('./src/protobuf_js_6_common');
57
murgatroid996f607662016-04-27 16:38:33 -070058grpc.setDefaultRootsPem(fs.readFileSync(SSL_ROOTS_PATH, 'ascii'));
59
murgatroid99b3068542017-03-21 11:25:01 -070060/**
61 * Load a ProtoBuf.js object as a gRPC object. The options object can provide
62 * the following options:
63 * - binaryAsBase64: deserialize bytes values as base64 strings instead of
64 * Buffers. Defaults to false
65 * - longsAsStrings: deserialize long values as strings instead of objects.
66 * Defaults to true
67 * - deprecatedArgumentOrder: Use the beta method argument order for client
68 * methods, with optional arguments after the callback. Defaults to false.
69 * This option is only a temporary stopgap measure to smooth an API breakage.
70 * It is deprecated, and new code should not use it.
71 * - protobufjsVersion: Available values are 5, 6, and 'detect'. 5 and 6
72 * respectively indicate that an object from the corresponding version of
73 * ProtoBuf.js is provided in the value argument. If the option is 'detect',
74 * gRPC will guess what the version is based on the structure of the value.
75 * Defaults to 'detect'.
76 * @param {Object} value The ProtoBuf.js reflection object to load
77 * @param {Object=} options Options to apply to the loaded file
78 * @return {Object<string, *>} The resulting gRPC object
79 */
murgatroid99c02910b2016-02-17 12:59:26 -080080exports.loadObject = function loadObject(value, options) {
murgatroid99b1a02312017-03-17 13:45:15 -070081 options = _.defaults(options, common.defaultGrpcOptions);
murgatroid99b3068542017-03-21 11:25:01 -070082 options = _.defaults(options, {'protobufjsVersion': 'detect'});
83 var protobufjsVersion;
84 if (options.protobufjsVersion === 'detect') {
85 if (protobuf_js_6_common.isProbablyProtobufJs6(value)) {
86 protobufjsVersion = 6;
87 } else if (protobuf_js_5_common.isProbablyProtobufJs5(value)) {
88 protobufjsVersion = 5;
89 } else {
90 var error_message = 'Could not detect ProtoBuf.js version. Please ' +
91 'specify the version number with the "protobufjs_version" option';
92 throw new Error(error_message);
93 }
murgatroid99b1a02312017-03-17 13:45:15 -070094 } else {
murgatroid99b3068542017-03-21 11:25:01 -070095 protobufjsVersion = options.protobufjsVersion;
96 }
97 switch (protobufjsVersion) {
98 case 6: return protobuf_js_6_common.loadObject(value, options);
99 case 5:
murgatroid99b1a02312017-03-17 13:45:15 -0700100 var deprecation_message = 'Calling grpc.loadObject with an object ' +
101 'generated by ProtoBuf.js 5 is deprecated. Please upgrade to ' +
102 'ProtoBuf.js 6.';
103 common.log(grpc.logVerbosity.INFO, deprecation_message);
104 return protobuf_js_5_common.loadObject(value, options);
murgatroid99b3068542017-03-21 11:25:01 -0700105 default:
106 throw new Error('Unrecognized protobufjsVersion', protobufjsVersion);
murgatroid99cca5ffa2015-01-15 14:06:56 -0800107 }
murgatroid999cd90a62015-07-27 11:23:13 -0700108};
109
110var loadObject = exports.loadObject;
murgatroid99cca5ffa2015-01-15 14:06:56 -0800111
murgatroid99b5b5f022017-03-16 16:42:10 -0700112function applyProtoRoot(filename, root) {
113 if (_.isString(filename)) {
114 return filename;
115 }
116 filename.root = path.resolve(filename.root) + '/';
117 root.resolvePath = function(originPath, importPath, alreadyNormalized) {
118 return ProtoBuf.util.path.resolve(filename.root,
119 importPath,
120 alreadyNormalized);
121 };
122 return filename.file;
123}
124
murgatroid99cca5ffa2015-01-15 14:06:56 -0800125/**
murgatroid99654d2542016-02-17 15:36:28 -0800126 * Load a gRPC object from a .proto file. The options object can provide the
127 * following options:
murgatroid99b3068542017-03-21 11:25:01 -0700128 * - convertFieldsToCamelCase: Load this file with field names in camel case
129 * instead of their original case
murgatroid99654d2542016-02-17 15:36:28 -0800130 * - binaryAsBase64: deserialize bytes values as base64 strings instead of
131 * Buffers. Defaults to false
132 * - longsAsStrings: deserialize long values as strings instead of objects.
133 * Defaults to true
murgatroid9927b8d902016-03-22 14:46:37 -0700134 * - deprecatedArgumentOrder: Use the beta method argument order for client
135 * methods, with optional arguments after the callback. Defaults to false.
136 * This option is only a temporary stopgap measure to smooth an API breakage.
137 * It is deprecated, and new code should not use it.
murgatroid99c02910b2016-02-17 12:59:26 -0800138 * @param {string|{root: string, file: string}} filename The file to load
murgatroid9971dbb862015-04-20 11:22:51 -0700139 * @param {string=} format The file format to expect. Must be either 'proto' or
140 * 'json'. Defaults to 'proto'
murgatroid99c02910b2016-02-17 12:59:26 -0800141 * @param {Object=} options Options to apply to the loaded file
murgatroid99cca5ffa2015-01-15 14:06:56 -0800142 * @return {Object<string, *>} The resulting gRPC object
143 */
murgatroid99c02910b2016-02-17 12:59:26 -0800144exports.load = function load(filename, format, options) {
murgatroid99b5b5f022017-03-16 16:42:10 -0700145 /* Note: format is currently unused, because the API for loading a proto
146 file or a JSON file is identical in Protobuf.js 6. In the future, there is
147 still the possibility of adding other formats that would be loaded
148 differently */
149 options = _.defaults(options, common.defaultGrpcOptions);
murgatroid99b3068542017-03-21 11:25:01 -0700150 options.protobufjs_version = 6;
murgatroid99b5b5f022017-03-16 16:42:10 -0700151 var root = new ProtoBuf.Root();
152 var parse_options = {keepCase: !options.convertFieldsToCamelCase};
153 return loadObject(root.loadSync(applyProtoRoot(filename, root),
154 parse_options),
155 options);
murgatroid999cd90a62015-07-27 11:23:13 -0700156};
murgatroid99cca5ffa2015-01-15 14:06:56 -0800157
murgatroid991d2f2892016-06-02 14:33:22 -0700158var log_template = _.template(
159 '{severity} {timestamp}\t{file}:{line}]\t{message}',
160 {interpolate: /{([\s\S]+?)}/g});
161
murgatroid99cca5ffa2015-01-15 14:06:56 -0800162/**
murgatroid999b9708a2016-06-01 11:42:20 -0700163 * Sets the logger function for the gRPC module. For debugging purposes, the C
164 * core will log synchronously directly to stdout unless this function is
165 * called. Note: the output format here is intended to be informational, and
166 * is not guaranteed to stay the same in the future.
167 * Logs will be directed to logger.error.
168 * @param {Console} logger A Console-like object.
169 */
170exports.setLogger = function setLogger(logger) {
171 common.logger = logger;
murgatroid991d2f2892016-06-02 14:33:22 -0700172 grpc.setDefaultLoggerCallback(function(file, line, severity,
173 message, timestamp) {
174 logger.error(log_template({
175 file: path.basename(file),
176 line: line,
177 severity: severity,
178 message: message,
179 timestamp: timestamp.toISOString()
180 }));
murgatroid999b9708a2016-06-01 11:42:20 -0700181 });
182};
183
184/**
185 * Sets the logger verbosity for gRPC module logging. The options are members
186 * of the grpc.logVerbosity map.
187 * @param {Number} verbosity The minimum severity to log
188 */
189exports.setLogVerbosity = function setLogVerbosity(verbosity) {
190 common.logVerbosity = verbosity;
191 grpc.setLogVerbosity(verbosity);
192};
193
194/**
murgatroid999cd90a62015-07-27 11:23:13 -0700195 * @see module:src/server.Server
murgatroid99cca5ffa2015-01-15 14:06:56 -0800196 */
murgatroid99366e64d2015-07-15 17:01:49 -0700197exports.Server = server.Server;
murgatroid99cca5ffa2015-01-15 14:06:56 -0800198
199/**
murgatroid9984e3cde2015-08-20 11:27:05 -0700200 * @see module:src/metadata
201 */
202exports.Metadata = Metadata;
203
204/**
murgatroid99cca5ffa2015-01-15 14:06:56 -0800205 * Status name to code number mapping
206 */
207exports.status = grpc.status;
murgatroid999cd90a62015-07-27 11:23:13 -0700208
murgatroid99cca5ffa2015-01-15 14:06:56 -0800209/**
murgatroid990b094572015-08-14 10:48:45 -0700210 * Propagate flag name to number mapping
211 */
212exports.propagate = grpc.propagate;
213
214/**
murgatroid99cca5ffa2015-01-15 14:06:56 -0800215 * Call error name to code number mapping
216 */
217exports.callError = grpc.callError;
murgatroid99b6ab1b42015-01-21 10:30:36 -0800218
219/**
murgatroid994a1474f2015-08-17 14:00:31 -0700220 * Write flag name to code number mapping
221 */
222exports.writeFlags = grpc.writeFlags;
223
224/**
murgatroid999b9708a2016-06-01 11:42:20 -0700225 * Log verbosity setting name to code number mapping
226 */
227exports.logVerbosity = grpc.logVerbosity;
228
229/**
murgatroid99b6ab1b42015-01-21 10:30:36 -0800230 * Credentials factories
231 */
murgatroid99153b09d2015-09-25 16:04:03 -0700232exports.credentials = require('./src/credentials.js');
murgatroid99b6ab1b42015-01-21 10:30:36 -0800233
234/**
235 * ServerCredentials factories
236 */
237exports.ServerCredentials = grpc.ServerCredentials;
murgatroid998c3ed002015-02-18 15:00:56 -0800238
murgatroid999cd90a62015-07-27 11:23:13 -0700239/**
240 * @see module:src/client.makeClientConstructor
241 */
murgatroid99e023e982015-03-18 17:17:33 -0700242exports.makeGenericClientConstructor = client.makeClientConstructor;
murgatroid9976ba1ff2015-08-28 14:57:04 -0700243
244/**
245 * @see module:src/client.getClientChannel
246 */
247exports.getClientChannel = client.getClientChannel;
248
249/**
250 * @see module:src/client.waitForClientReady
251 */
252exports.waitForClientReady = client.waitForClientReady;
murgatroid999030c812016-09-16 13:25:08 -0700253
254exports.closeClient = function closeClient(client_obj) {
255 client.getClientChannel(client_obj).close();
256};