/* * Copyright The OpenTelemetry Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ var ViewRegistry = /** @class */ (function () { function ViewRegistry() { this._registeredViews = []; } ViewRegistry.prototype.addView = function (view) { this._registeredViews.push(view); }; ViewRegistry.prototype.findViews = function (instrument, meter) { var _this = this; var views = this._registeredViews .filter(function (registeredView) { return _this._matchInstrument(registeredView.instrumentSelector, instrument) && _this._matchMeter(registeredView.meterSelector, meter); }); return views; }; ViewRegistry.prototype._matchInstrument = function (selector, instrument) { return (selector.getType() === undefined || instrument.type === selector.getType()) && selector.getNameFilter().match(instrument.name); }; ViewRegistry.prototype._matchMeter = function (selector, meter) { return selector.getNameFilter().match(meter.name) && (meter.version === undefined || selector.getVersionFilter().match(meter.version)) && (meter.schemaUrl === undefined || selector.getSchemaUrlFilter().match(meter.schemaUrl)); }; return ViewRegistry; }()); export { ViewRegistry }; //# sourceMappingURL=ViewRegistry.js.map