src_metadata.js.html 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JSDoc: Source: src/metadata.js</title>
  6. <script src="scripts/prettify/prettify.js"> </script>
  7. <script src="scripts/prettify/lang-css.js"> </script>
  8. <!--[if lt IE 9]>
  9. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  10. <![endif]-->
  11. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  12. <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
  13. </head>
  14. <body>
  15. <div id="main">
  16. <h1 class="page-title">Source: src/metadata.js</h1>
  17. <section>
  18. <article>
  19. <pre class="prettyprint source linenums"><code>/**
  20. * @license
  21. * Copyright 2015, Google Inc.
  22. * All rights reserved.
  23. *
  24. * Redistribution and use in source and binary forms, with or without
  25. * modification, are permitted provided that the following conditions are
  26. * met:
  27. *
  28. * * Redistributions of source code must retain the above copyright
  29. * notice, this list of conditions and the following disclaimer.
  30. * * Redistributions in binary form must reproduce the above
  31. * copyright notice, this list of conditions and the following disclaimer
  32. * in the documentation and/or other materials provided with the
  33. * distribution.
  34. * * Neither the name of Google Inc. nor the names of its
  35. * contributors may be used to endorse or promote products derived from
  36. * this software without specific prior written permission.
  37. *
  38. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  39. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  40. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  41. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  42. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  43. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  44. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  45. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  46. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  47. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  48. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  49. *
  50. */
  51. 'use strict';
  52. var _ = require('lodash');
  53. var grpc = require('./grpc_extension');
  54. /**
  55. * Class for storing metadata. Keys are normalized to lowercase ASCII.
  56. * @memberof grpc
  57. * @constructor
  58. * @example
  59. * var metadata = new metadata_module.Metadata();
  60. * metadata.set('key1', 'value1');
  61. * metadata.add('key1', 'value2');
  62. * metadata.get('key1') // returns ['value1', 'value2']
  63. */
  64. function Metadata() {
  65. this._internal_repr = {};
  66. }
  67. function normalizeKey(key) {
  68. key = key.toLowerCase();
  69. if (grpc.metadataKeyIsLegal(key)) {
  70. return key;
  71. } else {
  72. throw new Error('Metadata key"' + key + '" contains illegal characters');
  73. }
  74. }
  75. function validate(key, value) {
  76. if (grpc.metadataKeyIsBinary(key)) {
  77. if (!(value instanceof Buffer)) {
  78. throw new Error('keys that end with \'-bin\' must have Buffer values');
  79. }
  80. } else {
  81. if (!_.isString(value)) {
  82. throw new Error(
  83. 'keys that don\'t end with \'-bin\' must have String values');
  84. }
  85. if (!grpc.metadataNonbinValueIsLegal(value)) {
  86. throw new Error('Metadata string value "' + value +
  87. '" contains illegal characters');
  88. }
  89. }
  90. }
  91. /**
  92. * Sets the given value for the given key, replacing any other values associated
  93. * with that key. Normalizes the key.
  94. * @param {String} key The key to set
  95. * @param {String|Buffer} value The value to set. Must be a buffer if and only
  96. * if the normalized key ends with '-bin'
  97. */
  98. Metadata.prototype.set = function(key, value) {
  99. key = normalizeKey(key);
  100. validate(key, value);
  101. this._internal_repr[key] = [value];
  102. };
  103. /**
  104. * Adds the given value for the given key. Normalizes the key.
  105. * @param {String} key The key to add to.
  106. * @param {String|Buffer} value The value to add. Must be a buffer if and only
  107. * if the normalized key ends with '-bin'
  108. */
  109. Metadata.prototype.add = function(key, value) {
  110. key = normalizeKey(key);
  111. validate(key, value);
  112. if (!this._internal_repr[key]) {
  113. this._internal_repr[key] = [];
  114. }
  115. this._internal_repr[key].push(value);
  116. };
  117. /**
  118. * Remove the given key and any associated values. Normalizes the key.
  119. * @param {String} key The key to remove
  120. */
  121. Metadata.prototype.remove = function(key) {
  122. key = normalizeKey(key);
  123. if (Object.prototype.hasOwnProperty.call(this._internal_repr, key)) {
  124. delete this._internal_repr[key];
  125. }
  126. };
  127. /**
  128. * Gets a list of all values associated with the key. Normalizes the key.
  129. * @param {String} key The key to get
  130. * @return {Array.&lt;String|Buffer>} The values associated with that key
  131. */
  132. Metadata.prototype.get = function(key) {
  133. key = normalizeKey(key);
  134. if (Object.prototype.hasOwnProperty.call(this._internal_repr, key)) {
  135. return this._internal_repr[key];
  136. } else {
  137. return [];
  138. }
  139. };
  140. /**
  141. * Get a map of each key to a single associated value. This reflects the most
  142. * common way that people will want to see metadata.
  143. * @return {Object.&lt;String,String|Buffer>} A key/value mapping of the metadata
  144. */
  145. Metadata.prototype.getMap = function() {
  146. var result = {};
  147. _.forOwn(this._internal_repr, function(values, key) {
  148. if(values.length > 0) {
  149. result[key] = values[0];
  150. }
  151. });
  152. return result;
  153. };
  154. /**
  155. * Clone the metadata object.
  156. * @return {Metadata} The new cloned object
  157. */
  158. Metadata.prototype.clone = function() {
  159. var copy = new Metadata();
  160. _.forOwn(this._internal_repr, function(value, key) {
  161. copy._internal_repr[key] = _.clone(value);
  162. });
  163. return copy;
  164. };
  165. /**
  166. * Gets the metadata in the format used by interal code. Intended for internal
  167. * use only. API stability is not guaranteed.
  168. * @private
  169. * @return {Object.&lt;String, Array.&lt;String|Buffer>>} The metadata
  170. */
  171. Metadata.prototype._getCoreRepresentation = function() {
  172. return this._internal_repr;
  173. };
  174. /**
  175. * Creates a Metadata object from a metadata map in the internal format.
  176. * Intended for internal use only. API stability is not guaranteed.
  177. * @private
  178. * @param {Object.&lt;String, Array.&lt;String|Buffer>>} The metadata
  179. * @return {Metadata} The new Metadata object
  180. */
  181. Metadata._fromCoreRepresentation = function(metadata) {
  182. var newMetadata = new Metadata();
  183. if (metadata) {
  184. _.forOwn(metadata, function(value, key) {
  185. newMetadata._internal_repr[key] = _.clone(value);
  186. });
  187. }
  188. return newMetadata;
  189. };
  190. module.exports = Metadata;
  191. </code></pre>
  192. </article>
  193. </section>
  194. </div>
  195. <nav>
  196. <h2><a href="index.html">Home</a></h2><h3>Externals</h3><ul><li><a href="external-Duplex.html">Duplex</a></li><li><a href="external-EventEmitter.html">EventEmitter</a></li><li><a href="external-GoogleCredential.html">GoogleCredential</a></li><li><a href="external-Readable.html">Readable</a></li><li><a href="external-Writable.html">Writable</a></li></ul><h3>Classes</h3><ul><li><a href="grpc.Client.html">Client</a></li><li><a href="grpc.credentials-CallCredentials.html">CallCredentials</a></li><li><a href="grpc.credentials-ChannelCredentials.html">ChannelCredentials</a></li><li><a href="grpc.Metadata.html">Metadata</a></li><li><a href="grpc.Server.html">Server</a></li><li><a href="grpc.ServerCredentials.html">ServerCredentials</a></li><li><a href="grpc-ClientDuplexStream.html">ClientDuplexStream</a></li><li><a href="grpc-ClientReadableStream.html">ClientReadableStream</a></li><li><a href="grpc-ClientUnaryCall.html">ClientUnaryCall</a></li><li><a href="grpc-ClientWritableStream.html">ClientWritableStream</a></li><li><a href="grpc-ServerDuplexStream.html">ServerDuplexStream</a></li><li><a href="grpc-ServerReadableStream.html">ServerReadableStream</a></li><li><a href="grpc-ServerUnaryCall.html">ServerUnaryCall</a></li><li><a href="grpc-ServerWritableStream.html">ServerWritableStream</a></li></ul><h3>Events</h3><ul><li><a href="grpc-ClientDuplexStream.html#event:metadata">metadata</a></li><li><a href="grpc-ClientDuplexStream.html#event:status">status</a></li><li><a href="grpc-ClientReadableStream.html#event:metadata">metadata</a></li><li><a href="grpc-ClientReadableStream.html#event:status">status</a></li><li><a href="grpc-ClientUnaryCall.html#event:metadata">metadata</a></li><li><a href="grpc-ClientUnaryCall.html#event:status">status</a></li><li><a href="grpc-ClientWritableStream.html#event:metadata">metadata</a></li><li><a href="grpc-ClientWritableStream.html#event:status">status</a></li><li><a href="grpc-ServerDuplexStream.html#~event:cancelled">cancelled</a></li><li><a href="grpc-ServerReadableStream.html#~event:cancelled">cancelled</a></li><li><a href="grpc-ServerUnaryCall.html#~event:cancelled">cancelled</a></li><li><a href="grpc-ServerWritableStream.html#~event:cancelled">cancelled</a></li></ul><h3>Namespaces</h3><ul><li><a href="grpc.html">grpc</a></li><li><a href="grpc.credentials.html">credentials</a></li></ul>
  197. </nav>
  198. <br class="clear">
  199. <footer>
  200. Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.3</a> on Wed Jun 28 2017 09:44:06 GMT-0700 (PDT)
  201. </footer>
  202. <script> prettyPrint(); </script>
  203. <script src="scripts/linenumber.js"> </script>
  204. </body>
  205. </html>