src_metadata.js.html 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. *
  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. /**
  52. * Metadata module
  53. *
  54. * This module defines the Metadata class, which represents header and trailer
  55. * metadata for gRPC calls. Here is an example of how to use it:
  56. *
  57. * var metadata = new metadata_module.Metadata();
  58. * metadata.set('key1', 'value1');
  59. * metadata.add('key1', 'value2');
  60. * metadata.get('key1') // returns ['value1', 'value2']
  61. *
  62. * @module
  63. */
  64. 'use strict';
  65. var _ = require('lodash');
  66. var grpc = require('./grpc_extension');
  67. /**
  68. * Class for storing metadata. Keys are normalized to lowercase ASCII.
  69. * @constructor
  70. */
  71. function Metadata() {
  72. this._internal_repr = {};
  73. }
  74. function normalizeKey(key) {
  75. key = key.toLowerCase();
  76. if (grpc.metadataKeyIsLegal(key)) {
  77. return key;
  78. } else {
  79. throw new Error('Metadata key"' + key + '" contains illegal characters');
  80. }
  81. }
  82. function validate(key, value) {
  83. if (grpc.metadataKeyIsBinary(key)) {
  84. if (!(value instanceof Buffer)) {
  85. throw new Error('keys that end with \'-bin\' must have Buffer values');
  86. }
  87. } else {
  88. if (!_.isString(value)) {
  89. throw new Error(
  90. 'keys that don\'t end with \'-bin\' must have String values');
  91. }
  92. if (!grpc.metadataNonbinValueIsLegal(value)) {
  93. throw new Error('Metadata string value "' + value +
  94. '" contains illegal characters');
  95. }
  96. }
  97. }
  98. /**
  99. * Sets the given value for the given key, replacing any other values associated
  100. * with that key. Normalizes the key.
  101. * @param {String} key The key to set
  102. * @param {String|Buffer} value The value to set. Must be a buffer if and only
  103. * if the normalized key ends with '-bin'
  104. */
  105. Metadata.prototype.set = function(key, value) {
  106. key = normalizeKey(key);
  107. validate(key, value);
  108. this._internal_repr[key] = [value];
  109. };
  110. /**
  111. * Adds the given value for the given key. Normalizes the key.
  112. * @param {String} key The key to add to.
  113. * @param {String|Buffer} value The value to add. Must be a buffer if and only
  114. * if the normalized key ends with '-bin'
  115. */
  116. Metadata.prototype.add = function(key, value) {
  117. key = normalizeKey(key);
  118. validate(key, value);
  119. if (!this._internal_repr[key]) {
  120. this._internal_repr[key] = [];
  121. }
  122. this._internal_repr[key].push(value);
  123. };
  124. /**
  125. * Remove the given key and any associated values. Normalizes the key.
  126. * @param {String} key The key to remove
  127. */
  128. Metadata.prototype.remove = function(key) {
  129. key = normalizeKey(key);
  130. if (Object.prototype.hasOwnProperty.call(this._internal_repr, key)) {
  131. delete this._internal_repr[key];
  132. }
  133. };
  134. /**
  135. * Gets a list of all values associated with the key. Normalizes the key.
  136. * @param {String} key The key to get
  137. * @return {Array.&lt;String|Buffer>} The values associated with that key
  138. */
  139. Metadata.prototype.get = function(key) {
  140. key = normalizeKey(key);
  141. if (Object.prototype.hasOwnProperty.call(this._internal_repr, key)) {
  142. return this._internal_repr[key];
  143. } else {
  144. return [];
  145. }
  146. };
  147. /**
  148. * Get a map of each key to a single associated value. This reflects the most
  149. * common way that people will want to see metadata.
  150. * @return {Object.&lt;String,String|Buffer>} A key/value mapping of the metadata
  151. */
  152. Metadata.prototype.getMap = function() {
  153. var result = {};
  154. _.forOwn(this._internal_repr, function(values, key) {
  155. if(values.length > 0) {
  156. result[key] = values[0];
  157. }
  158. });
  159. return result;
  160. };
  161. /**
  162. * Clone the metadata object.
  163. * @return {Metadata} The new cloned object
  164. */
  165. Metadata.prototype.clone = function() {
  166. var copy = new Metadata();
  167. _.forOwn(this._internal_repr, function(value, key) {
  168. copy._internal_repr[key] = _.clone(value);
  169. });
  170. return copy;
  171. };
  172. /**
  173. * Gets the metadata in the format used by interal code. Intended for internal
  174. * use only. API stability is not guaranteed.
  175. * @private
  176. * @return {Object.&lt;String, Array.&lt;String|Buffer>>} The metadata
  177. */
  178. Metadata.prototype._getCoreRepresentation = function() {
  179. return this._internal_repr;
  180. };
  181. /**
  182. * Creates a Metadata object from a metadata map in the internal format.
  183. * Intended for internal use only. API stability is not guaranteed.
  184. * @private
  185. * @param {Object.&lt;String, Array.&lt;String|Buffer>>} The metadata
  186. * @return {Metadata} The new Metadata object
  187. */
  188. Metadata._fromCoreRepresentation = function(metadata) {
  189. var newMetadata = new Metadata();
  190. if (metadata) {
  191. _.forOwn(metadata, function(value, key) {
  192. newMetadata._internal_repr[key] = _.clone(value);
  193. });
  194. }
  195. return newMetadata;
  196. };
  197. module.exports = Metadata;
  198. </code></pre>
  199. </article>
  200. </section>
  201. </div>
  202. <nav>
  203. <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-src_client.html">src/client</a></li><li><a href="module-src_common.html">src/common</a></li><li><a href="module-src_credentials.html">src/credentials</a></li><li><a href="module-src_metadata.html">src/metadata</a></li><li><a href="module-src_server.html">src/server</a></li></ul><h3>Classes</h3><ul><li><a href="module-src_client.makeClientConstructor-Client.html">Client</a></li><li><a href="module-src_client-ClientDuplexStream.html">ClientDuplexStream</a></li><li><a href="module-src_client-ClientReadableStream.html">ClientReadableStream</a></li><li><a href="module-src_client-ClientWritableStream.html">ClientWritableStream</a></li><li><a href="module-src_metadata-Metadata.html">Metadata</a></li><li><a href="module-src_server-Server.html">Server</a></li><li><a href="module-src_server-ServerDuplexStream.html">ServerDuplexStream</a></li><li><a href="module-src_server-ServerReadableStream.html">ServerReadableStream</a></li><li><a href="module-src_server-ServerWritableStream.html">ServerWritableStream</a></li></ul><h3>Global</h3><ul><li><a href="global.html#callError">callError</a></li><li><a href="global.html#credentials">credentials</a></li><li><a href="global.html#getClientChannel">getClientChannel</a></li><li><a href="global.html#load">load</a></li><li><a href="global.html#loadObject">loadObject</a></li><li><a href="global.html#logVerbosity">logVerbosity</a></li><li><a href="global.html#makeGenericClientConstructor">makeGenericClientConstructor</a></li><li><a href="global.html#Metadata">Metadata</a></li><li><a href="global.html#propagate">propagate</a></li><li><a href="global.html#Server">Server</a></li><li><a href="global.html#ServerCredentials">ServerCredentials</a></li><li><a href="global.html#setLogger">setLogger</a></li><li><a href="global.html#setLogVerbosity">setLogVerbosity</a></li><li><a href="global.html#status">status</a></li><li><a href="global.html#waitForClientReady">waitForClientReady</a></li><li><a href="global.html#writeFlags">writeFlags</a></li></ul>
  204. </nav>
  205. <br class="clear">
  206. <footer>
  207. Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a> on Thu Aug 18 2016 12:19:14 GMT-0700 (PDT)
  208. </footer>
  209. <script> prettyPrint(); </script>
  210. <script src="scripts/linenumber.js"> </script>
  211. </body>
  212. </html>