| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
| Craig Tiller | 6169d5f | 2016-03-31 07:46:18 -0700 | [diff] [blame] | 3 | * Copyright 2015, Google Inc. |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 4 | * 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 | |
| murgatroid99 | dca966d | 2015-02-19 14:37:18 -0800 | [diff] [blame] | 34 | 'use strict'; |
| 35 | |
| murgatroid99 | 6d6009f | 2015-10-15 09:57:31 -0700 | [diff] [blame] | 36 | var path = require('path'); |
| murgatroid99 | 6f60766 | 2016-04-27 16:38:33 -0700 | [diff] [blame] | 37 | var fs = require('fs'); |
| murgatroid99 | 6d6009f | 2015-10-15 09:57:31 -0700 | [diff] [blame] | 38 | |
| 39 | var SSL_ROOTS_PATH = path.resolve(__dirname, '..', '..', 'etc', 'roots.pem'); |
| 40 | |
| murgatroid99 | 55739d5 | 2015-06-03 10:58:21 -0700 | [diff] [blame] | 41 | var _ = require('lodash'); |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 42 | |
| 43 | var ProtoBuf = require('protobufjs'); |
| 44 | |
| murgatroid99 | e787955 | 2015-02-12 12:21:15 -0800 | [diff] [blame] | 45 | var client = require('./src/client.js'); |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 46 | |
| murgatroid99 | e787955 | 2015-02-12 12:21:15 -0800 | [diff] [blame] | 47 | var server = require('./src/server.js'); |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 48 | |
| murgatroid99 | 9b9708a | 2016-06-01 11:42:20 -0700 | [diff] [blame] | 49 | var common = require('./src/common.js'); |
| 50 | |
| murgatroid99 | 84e3cde | 2015-08-20 11:27:05 -0700 | [diff] [blame] | 51 | var Metadata = require('./src/metadata.js'); |
| 52 | |
| murgatroid99 | e190f35 | 2016-01-20 13:52:08 -0800 | [diff] [blame] | 53 | var grpc = require('./src/grpc_extension'); |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 54 | |
| murgatroid99 | b5b5f02 | 2017-03-16 16:42:10 -0700 | [diff] [blame] | 55 | var protobuf_js_5_common = require('./src/protobuf_js_5_common'); |
| 56 | var protobuf_js_6_common = require('./src/protobuf_js_6_common'); |
| 57 | |
| murgatroid99 | 6f60766 | 2016-04-27 16:38:33 -0700 | [diff] [blame] | 58 | grpc.setDefaultRootsPem(fs.readFileSync(SSL_ROOTS_PATH, 'ascii')); |
| 59 | |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 60 | /** |
| 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 | */ |
| murgatroid99 | c02910b | 2016-02-17 12:59:26 -0800 | [diff] [blame] | 80 | exports.loadObject = function loadObject(value, options) { |
| murgatroid99 | b1a0231 | 2017-03-17 13:45:15 -0700 | [diff] [blame] | 81 | options = _.defaults(options, common.defaultGrpcOptions); |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 82 | 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 | } |
| murgatroid99 | b1a0231 | 2017-03-17 13:45:15 -0700 | [diff] [blame] | 94 | } else { |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 95 | protobufjsVersion = options.protobufjsVersion; |
| 96 | } |
| 97 | switch (protobufjsVersion) { |
| 98 | case 6: return protobuf_js_6_common.loadObject(value, options); |
| 99 | case 5: |
| murgatroid99 | b1a0231 | 2017-03-17 13:45:15 -0700 | [diff] [blame] | 100 | 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); |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 105 | default: |
| 106 | throw new Error('Unrecognized protobufjsVersion', protobufjsVersion); |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 107 | } |
| murgatroid99 | 9cd90a6 | 2015-07-27 11:23:13 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | var loadObject = exports.loadObject; |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 111 | |
| murgatroid99 | b5b5f02 | 2017-03-16 16:42:10 -0700 | [diff] [blame] | 112 | function 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 | |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 125 | /** |
| murgatroid99 | 654d254 | 2016-02-17 15:36:28 -0800 | [diff] [blame] | 126 | * Load a gRPC object from a .proto file. The options object can provide the |
| 127 | * following options: |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 128 | * - convertFieldsToCamelCase: Load this file with field names in camel case |
| 129 | * instead of their original case |
| murgatroid99 | 654d254 | 2016-02-17 15:36:28 -0800 | [diff] [blame] | 130 | * - 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 |
| murgatroid99 | 27b8d90 | 2016-03-22 14:46:37 -0700 | [diff] [blame] | 134 | * - 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. |
| murgatroid99 | c02910b | 2016-02-17 12:59:26 -0800 | [diff] [blame] | 138 | * @param {string|{root: string, file: string}} filename The file to load |
| murgatroid99 | 71dbb86 | 2015-04-20 11:22:51 -0700 | [diff] [blame] | 139 | * @param {string=} format The file format to expect. Must be either 'proto' or |
| 140 | * 'json'. Defaults to 'proto' |
| murgatroid99 | c02910b | 2016-02-17 12:59:26 -0800 | [diff] [blame] | 141 | * @param {Object=} options Options to apply to the loaded file |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 142 | * @return {Object<string, *>} The resulting gRPC object |
| 143 | */ |
| murgatroid99 | c02910b | 2016-02-17 12:59:26 -0800 | [diff] [blame] | 144 | exports.load = function load(filename, format, options) { |
| murgatroid99 | b5b5f02 | 2017-03-16 16:42:10 -0700 | [diff] [blame] | 145 | /* 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); |
| murgatroid99 | b306854 | 2017-03-21 11:25:01 -0700 | [diff] [blame^] | 150 | options.protobufjs_version = 6; |
| murgatroid99 | b5b5f02 | 2017-03-16 16:42:10 -0700 | [diff] [blame] | 151 | 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); |
| murgatroid99 | 9cd90a6 | 2015-07-27 11:23:13 -0700 | [diff] [blame] | 156 | }; |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 157 | |
| murgatroid99 | 1d2f289 | 2016-06-02 14:33:22 -0700 | [diff] [blame] | 158 | var log_template = _.template( |
| 159 | '{severity} {timestamp}\t{file}:{line}]\t{message}', |
| 160 | {interpolate: /{([\s\S]+?)}/g}); |
| 161 | |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 162 | /** |
| murgatroid99 | 9b9708a | 2016-06-01 11:42:20 -0700 | [diff] [blame] | 163 | * 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 | */ |
| 170 | exports.setLogger = function setLogger(logger) { |
| 171 | common.logger = logger; |
| murgatroid99 | 1d2f289 | 2016-06-02 14:33:22 -0700 | [diff] [blame] | 172 | 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 | })); |
| murgatroid99 | 9b9708a | 2016-06-01 11:42:20 -0700 | [diff] [blame] | 181 | }); |
| 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 | */ |
| 189 | exports.setLogVerbosity = function setLogVerbosity(verbosity) { |
| 190 | common.logVerbosity = verbosity; |
| 191 | grpc.setLogVerbosity(verbosity); |
| 192 | }; |
| 193 | |
| 194 | /** |
| murgatroid99 | 9cd90a6 | 2015-07-27 11:23:13 -0700 | [diff] [blame] | 195 | * @see module:src/server.Server |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 196 | */ |
| murgatroid99 | 366e64d | 2015-07-15 17:01:49 -0700 | [diff] [blame] | 197 | exports.Server = server.Server; |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 198 | |
| 199 | /** |
| murgatroid99 | 84e3cde | 2015-08-20 11:27:05 -0700 | [diff] [blame] | 200 | * @see module:src/metadata |
| 201 | */ |
| 202 | exports.Metadata = Metadata; |
| 203 | |
| 204 | /** |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 205 | * Status name to code number mapping |
| 206 | */ |
| 207 | exports.status = grpc.status; |
| murgatroid99 | 9cd90a6 | 2015-07-27 11:23:13 -0700 | [diff] [blame] | 208 | |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 209 | /** |
| murgatroid99 | 0b09457 | 2015-08-14 10:48:45 -0700 | [diff] [blame] | 210 | * Propagate flag name to number mapping |
| 211 | */ |
| 212 | exports.propagate = grpc.propagate; |
| 213 | |
| 214 | /** |
| murgatroid99 | cca5ffa | 2015-01-15 14:06:56 -0800 | [diff] [blame] | 215 | * Call error name to code number mapping |
| 216 | */ |
| 217 | exports.callError = grpc.callError; |
| murgatroid99 | b6ab1b4 | 2015-01-21 10:30:36 -0800 | [diff] [blame] | 218 | |
| 219 | /** |
| murgatroid99 | 4a1474f | 2015-08-17 14:00:31 -0700 | [diff] [blame] | 220 | * Write flag name to code number mapping |
| 221 | */ |
| 222 | exports.writeFlags = grpc.writeFlags; |
| 223 | |
| 224 | /** |
| murgatroid99 | 9b9708a | 2016-06-01 11:42:20 -0700 | [diff] [blame] | 225 | * Log verbosity setting name to code number mapping |
| 226 | */ |
| 227 | exports.logVerbosity = grpc.logVerbosity; |
| 228 | |
| 229 | /** |
| murgatroid99 | b6ab1b4 | 2015-01-21 10:30:36 -0800 | [diff] [blame] | 230 | * Credentials factories |
| 231 | */ |
| murgatroid99 | 153b09d | 2015-09-25 16:04:03 -0700 | [diff] [blame] | 232 | exports.credentials = require('./src/credentials.js'); |
| murgatroid99 | b6ab1b4 | 2015-01-21 10:30:36 -0800 | [diff] [blame] | 233 | |
| 234 | /** |
| 235 | * ServerCredentials factories |
| 236 | */ |
| 237 | exports.ServerCredentials = grpc.ServerCredentials; |
| murgatroid99 | 8c3ed00 | 2015-02-18 15:00:56 -0800 | [diff] [blame] | 238 | |
| murgatroid99 | 9cd90a6 | 2015-07-27 11:23:13 -0700 | [diff] [blame] | 239 | /** |
| 240 | * @see module:src/client.makeClientConstructor |
| 241 | */ |
| murgatroid99 | e023e98 | 2015-03-18 17:17:33 -0700 | [diff] [blame] | 242 | exports.makeGenericClientConstructor = client.makeClientConstructor; |
| murgatroid99 | 76ba1ff | 2015-08-28 14:57:04 -0700 | [diff] [blame] | 243 | |
| 244 | /** |
| 245 | * @see module:src/client.getClientChannel |
| 246 | */ |
| 247 | exports.getClientChannel = client.getClientChannel; |
| 248 | |
| 249 | /** |
| 250 | * @see module:src/client.waitForClientReady |
| 251 | */ |
| 252 | exports.waitForClientReady = client.waitForClientReady; |
| murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 253 | |
| 254 | exports.closeClient = function closeClient(client_obj) { |
| 255 | client.getClientChannel(client_obj).close(); |
| 256 | }; |