blob: 3f17833a45c5baaa9af5a17df8638273ce632efa [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
pankaj390abbc2014-10-01 17:01:05 -070016package org.onlab.metrics;
17
18import java.util.concurrent.ConcurrentHashMap;
19import java.util.concurrent.ConcurrentMap;
20
21/**
22 * Components to register for metrics.
23 */
24public class MetricsComponent implements MetricsComponentRegistry {
25 private final String name;
26
27 /**
28 * Registry to hold the Features defined in this Component.
29 */
30 private final ConcurrentMap<String, MetricsFeature> featuresRegistry =
31 new ConcurrentHashMap<>();
32
33 /**
34 * Constructs a component from a name.
35 *
36 * @param newName name of the component
37 */
Jian Li7eed4172016-04-07 22:12:03 -070038 public MetricsComponent(final String newName) {
pankaj390abbc2014-10-01 17:01:05 -070039 name = newName;
40 }
41
Pavlin Radoslavovdf042bd2014-10-21 21:46:46 -070042 @Override
43 public String getName() {
pankaj390abbc2014-10-01 17:01:05 -070044 return name;
45 }
46
Pavlin Radoslavovdf042bd2014-10-21 21:46:46 -070047 @Override
48 public MetricsFeature registerFeature(final String featureName) {
pankaj390abbc2014-10-01 17:01:05 -070049 MetricsFeature feature = featuresRegistry.get(featureName);
50 if (feature == null) {
Pavlin Radoslavovdf042bd2014-10-21 21:46:46 -070051 final MetricsFeature createdFeature =
52 new MetricsFeature(featureName);
pankaj390abbc2014-10-01 17:01:05 -070053 feature = featuresRegistry.putIfAbsent(featureName, createdFeature);
54 if (feature == null) {
55 feature = createdFeature;
56 }
57 }
58 return feature;
59 }
60}