| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 | import Check from "../Core/Check.js";import defaultValue from "../Core/defaultValue.js";import defined from "../Core/defined.js";/** * A property table for use with the <code>EXT_structural_metadata</code> extension or * legacy <code>EXT_feature_metadata</code> glTF extension. It also includes some * options to be compatible with the 3D Tiles 1.0 batch table. * <p> * For batch tables, properties are resolved in the following order: * </p> * <ol> *   <li>binary properties from options.metadataTable</li> *   <li>JSON properties from options.jsonMetadataTable</li> *   <li>batch table hierarchy properties from options.batchTableHierarchy</li> * </ol> * <p> * See the {@link https://github.com/CesiumGS/glTF/tree/3d-tiles-next/extensions/2.0/Vendor/EXT_structural_metadata|EXT_structural_metadata Extension} as well as the * previous {@link https://github.com/CesiumGS/glTF/tree/3d-tiles-next/extensions/2.0/Vendor/EXT_feature_metadata|EXT_feature_metadata Extension} for glTF. * </p> * * @param {Object} options Object with the following properties: * @param {String} [options.name] Human-readable name to describe the table * @param {String|Number} [options.id] A unique id to identify the property table, useful for debugging. For <code>EXT_structural_metadata</code>, this is the array index in the property tables array, for <code>EXT_feature_metadata</code> this is the dictionary key in the property tables dictionary. * @param {Number} options.count The number of features in the table. * @param {MetadataTable} [options.metadataTable] A table of binary properties. * @param {JsonMetadataTable} [options.jsonMetadataTable] For compatibility with the old batch table, free-form JSON properties can be passed in. * @param {BatchTableHierarchy} [options.batchTableHierarchy] For compatibility with the <code>3DTILES_batch_table_hierarchy</code> extension, a hierarchy can be provided. * @param {Object} [options.extras] Extra user-defined properties * @param {Object} [options.extensions] An object containing extensions * * @alias PropertyTable * @constructor * * @private * @experimental This feature is using part of the 3D Tiles spec that is not final and is subject to change without Cesium's standard deprecation policy. */function PropertyTable(options) {  options = defaultValue(options, defaultValue.EMPTY_OBJECT);  //>>includeStart('debug', pragmas.debug);  Check.typeOf.number("options.count", options.count);  //>>includeEnd('debug');  this._name = options.name;  this._id = options.id;  this._count = options.count;  this._extras = options.extras;  this._extensions = options.extensions;  this._metadataTable = options.metadataTable;  this._jsonMetadataTable = options.jsonMetadataTable;  this._batchTableHierarchy = options.batchTableHierarchy;}Object.defineProperties(PropertyTable.prototype, {  /**   * A human-readable name for this table   *   * @memberof PropertyTable.prototype   * @type {String}   * @readonly   * @private   */  name: {    get: function () {      return this._name;    },  },  /**   * An identifier for this table. Useful for debugging.   *   * @memberof PropertyTable.prototype   * @type {String|Number}   * @readonly   * @private   */  id: {    get: function () {      return this._id;    },  },  /**   * The number of features in the table.   *   * @memberof PropertyTable.prototype   * @type {Number}   * @readonly   * @private   */  count: {    get: function () {      return this._count;    },  },  /**   * The class that properties conform to.   *   * @memberof PropertyTable.prototype   * @type {MetadataClass}   * @readonly   */  class: {    get: function () {      if (defined(this._metadataTable)) {        return this._metadataTable.class;      }      return undefined;    },  },  /**   * Extras in the JSON object.   *   * @memberof PropertyTable.prototype   * @type {*}   * @readonly   * @private   */  extras: {    get: function () {      return this._extras;    },  },  /**   * Extensions in the JSON object.   *   * @memberof PropertyTable.prototype   * @type {Object}   * @readonly   * @private   */  extensions: {    get: function () {      return this._extensions;    },  },});/** * Returns whether the feature has this property. For compatibility with the <code>3DTILES_batch_table_hierarchy</code> extension, this is computed for a specific feature. * * @param {Number} index The index of the feature. * @param {String} propertyId The case-sensitive ID of the property. * @returns {Boolean} Whether the feature has this property. * @private */PropertyTable.prototype.hasProperty = function (index, propertyId) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.number("index", index);  Check.typeOf.string("propertyId", propertyId);  //>>includeEnd('debug');  if (    defined(this._metadataTable) &&    this._metadataTable.hasProperty(propertyId)  ) {    return true;  }  if (    defined(this._jsonMetadataTable) &&    this._jsonMetadataTable.hasProperty(propertyId)  ) {    return true;  }  if (    defined(this._batchTableHierarchy) &&    this._batchTableHierarchy.hasProperty(index, propertyId)  ) {    return true;  }  return false;};/** * Returns whether the feature has a property with the given semantic. * * @param {String} semantic The case-sensitive semantic of the property. * @returns {Boolean} Whether the feature has a property with the given semantic. * @private */PropertyTable.prototype.hasPropertyBySemantic = function (index, semantic) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.number("index", index);  Check.typeOf.string("semantic", semantic);  //>>includeEnd('debug');  if (defined(this._metadataTable)) {    return this._metadataTable.hasPropertyBySemantic(semantic);  }  return false;};/** * Returns whether any feature has this property. * This is mainly useful for checking whether a property exists in the class * hierarchy when using the <code>3DTILES_batch_table_hierarchy</code> extension. * * @param {String} propertyId The case-sensitive ID of the property. * @returns {Boolean} Whether any feature has this property. * @private */PropertyTable.prototype.propertyExists = function (propertyId) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.string("propertyId", propertyId);  //>>includeEnd('debug');  if (    defined(this._metadataTable) &&    this._metadataTable.hasProperty(propertyId)  ) {    return true;  }  if (    defined(this._jsonMetadataTable) &&    this._jsonMetadataTable.hasProperty(propertyId)  ) {    return true;  }  if (    defined(this._batchTableHierarchy) &&    this._batchTableHierarchy.propertyExists(propertyId)  ) {    return true;  }  return false;};/** * Returns whether any feature has a property with the given semantic. * * @param {String} semantic The case-sensitive semantic of the property. * @returns {Boolean} Whether any feature has a property with the given semantic. * @private */PropertyTable.prototype.propertyExistsBySemantic = function (semantic) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.string("semantic", semantic);  //>>includeEnd('debug');  if (defined(this._metadataTable)) {    return this._metadataTable.hasPropertyBySemantic(semantic);  }  return false;};const scratchResults = [];/** * Returns an array of property IDs. For compatibility with the <code>3DTILES_batch_table_hierarchy</code> extension, this is computed for a specific feature. * * @param {Number} index The index of the feature. * @param {String[]} [results] An array into which to store the results. * @returns {String[]} The property IDs. * @private */PropertyTable.prototype.getPropertyIds = function (index, results) {  results = defined(results) ? results : [];  results.length = 0;  if (defined(this._metadataTable)) {    // concat in place to avoid unnecessary array allocation    results.push.apply(      results,      this._metadataTable.getPropertyIds(scratchResults)    );  }  if (defined(this._jsonMetadataTable)) {    results.push.apply(      results,      this._jsonMetadataTable.getPropertyIds(scratchResults)    );  }  if (defined(this._batchTableHierarchy)) {    results.push.apply(      results,      this._batchTableHierarchy.getPropertyIds(index, scratchResults)    );  }  return results;};/** * Returns a copy of the value of the property with the given ID. * <p> * If the property is normalized the normalized value is returned. * </p> * * @param {Number} index The index of the feature. * @param {String} propertyId The case-sensitive ID of the property. * @returns {*} The value of the property or <code>undefined</code> if the feature does not have this property. * @private */PropertyTable.prototype.getProperty = function (index, propertyId) {  let result;  if (defined(this._metadataTable)) {    result = this._metadataTable.getProperty(index, propertyId);    if (defined(result)) {      return result;    }  }  if (defined(this._jsonMetadataTable)) {    result = this._jsonMetadataTable.getProperty(index, propertyId);    if (defined(result)) {      return result;    }  }  if (defined(this._batchTableHierarchy)) {    result = this._batchTableHierarchy.getProperty(index, propertyId);    if (defined(result)) {      return result;    }  }  return undefined;};/** * Sets the value of the property with the given ID. * <p> * If the property is normalized a normalized value must be provided to this function. * </p> * * @param {Number} index The index of the feature. * @param {String} propertyId The case-sensitive ID of the property. * @param {*} value The value of the property that will be copied. * @returns {Boolean} <code>true</code> if the property was set, <code>false</code> otherwise. * @private */PropertyTable.prototype.setProperty = function (index, propertyId, value) {  if (    defined(this._metadataTable) &&    this._metadataTable.setProperty(index, propertyId, value)  ) {    return true;  }  if (    defined(this._jsonMetadataTable) &&    this._jsonMetadataTable.setProperty(index, propertyId, value)  ) {    return true;  }  return (    defined(this._batchTableHierarchy) &&    this._batchTableHierarchy.setProperty(index, propertyId, value)  );};/** * Returns a copy of the value of the property with the given semantic. * <p> * This only operates on the underlying {@link MetadataTable} (if present) as * {@link JsonMetadataTable} and {@link BatchTableHierarchy} do not have * semantics. * </p> * * @param {Number} index The index of the feature. * @param {String} semantic The case-sensitive semantic of the property. * @returns {*} The value of the property or <code>undefined</code> if the feature does not have this semantic. * @private */PropertyTable.prototype.getPropertyBySemantic = function (index, semantic) {  if (defined(this._metadataTable)) {    return this._metadataTable.getPropertyBySemantic(index, semantic);  }  return undefined;};/** * Sets the value of the property with the given semantic. * <p> * This only operates on the underlying {@link MetadataTable} (if present) as * {@link JsonMetadataTable} and {@link BatchTableHierarchy} do not have * semantics. * </p> * * @param {Number} index The index of the feature. * @param {String} semantic The case-sensitive semantic of the property. * @param {*} value The value of the property that will be copied. * @returns {Boolean} <code>true</code> if the property was set, <code>false</code> otherwise. * @private */PropertyTable.prototype.setPropertyBySemantic = function (  index,  semantic,  value) {  if (defined(this._metadataTable)) {    return this._metadataTable.setPropertyBySemantic(index, semantic, value);  }  return false;};/** * Returns a typed array containing the property values for a given propertyId. * <p> * This only operates on the underlying {@link MetadataTable} (if present) as * {@link JsonMetadataTable} and {@link BatchTableHierarchy} do not store * values in typed arrays. * </p> * * @param {String} propertyId The case-sensitive ID of the property. * @returns {*} The typed array containing the property values or <code>undefined</code> if the property values are not stored in a typed array. * * @private */PropertyTable.prototype.getPropertyTypedArray = function (propertyId) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.string("propertyId", propertyId);  //>>includeEnd('debug');  if (defined(this._metadataTable)) {    return this._metadataTable.getPropertyTypedArray(propertyId);  }  return undefined;};/** * Returns a typed array containing the property values for the property with the given semantic. * <p> * This only operates on the underlying {@link MetadataTable} (if present) as * {@link JsonMetadataTable} and {@link BatchTableHierarchy} do not have * semantics. * </p> * * @param {String} semantic The case-sensitive semantic of the property. * @returns {*} The typed array containing the property values or <code>undefined</code> if the property values are not stored in a typed array. * * @private */PropertyTable.prototype.getPropertyTypedArrayBySemantic = function (semantic) {  //>>includeStart('debug', pragmas.debug);  Check.typeOf.string("semantic", semantic);  //>>includeEnd('debug');  if (defined(this._metadataTable)) {    return this._metadataTable.getPropertyTypedArrayBySemantic(semantic);  }  return undefined;};export default PropertyTable;
 |