tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfEventField.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Updated as per TMF Event Model 1.0
12 * Alexandre Montplaisir - Removed Cloneable, made immutable
13 *******************************************************************************/
14
15 package org.eclipse.linuxtools.tmf.core.event;
16
17 import java.util.HashMap;
18 import java.util.Map;
19
20 /**
21 * A basic implementation of ITmfEventField.
22 * <p>
23 * Non-value fields are structural (i.e. used to represent the event structure
24 * including optional fields) while the valued fields are actual event fields.
25 *
26 * @version 1.0
27 * @author Francois Chouinard
28 *
29 * @see ITmfEvent
30 * @see ITmfEventType
31 */
32 public class TmfEventField implements ITmfEventField {
33
34 // ------------------------------------------------------------------------
35 // Attributes
36 // ------------------------------------------------------------------------
37
38 private final String fName;
39 private final Object fValue;
40 private final ITmfEventField[] fFields;
41
42 private final String[] fFieldNames;
43 private final Map<String, ITmfEventField> fNameMapping;
44
45 // ------------------------------------------------------------------------
46 // Constructors
47 // ------------------------------------------------------------------------
48
49 /**
50 * Full constructor
51 *
52 * @param name the event field id
53 * @param value the event field value
54 * @param fields the list of subfields
55 */
56 public TmfEventField(final String name, final Object value, final ITmfEventField[] fields) {
57 if (name == null) {
58 throw new IllegalArgumentException();
59 }
60 fName = name;
61 fValue = value;
62 fFields = fields;
63
64 /* Fill the fFieldNames and fNameMapping structures */
65 final int nbFields = (fFields != null) ? fFields.length : 0;
66 fFieldNames = new String[nbFields];
67 fNameMapping = new HashMap<String, ITmfEventField>();
68
69 for (int i = 0; i < nbFields; i++) {
70 final String curName = fFields[i].getName();
71 fFieldNames[i] = curName;
72 fNameMapping.put(curName, fFields[i]);
73 }
74 }
75
76 /**
77 * Copy constructor
78 *
79 * @param field the other event field
80 */
81 public TmfEventField(final TmfEventField field) {
82 if (field == null) {
83 throw new IllegalArgumentException();
84 }
85 fName = field.fName;
86 fValue = field.fValue;
87 fFields = field.fFields;
88 fFieldNames = field.fFieldNames;
89 fNameMapping = field.fNameMapping;
90 }
91
92 // ------------------------------------------------------------------------
93 // ITmfEventField
94 // ------------------------------------------------------------------------
95
96 @Override
97 public String getName() {
98 return fName;
99 }
100
101 @Override
102 public Object getValue() {
103 return fValue;
104 }
105
106 @Override
107 public String[] getFieldNames() {
108 return fFieldNames;
109 }
110
111 @Override
112 public String getFieldName(final int index) {
113 final ITmfEventField field = getField(index);
114 if (field != null) {
115 return field.getName();
116 }
117 return null;
118 }
119
120 @Override
121 public ITmfEventField[] getFields() {
122 return (fFields != null) ? fFields : new ITmfEventField[0];
123 }
124
125 @Override
126 public ITmfEventField getField(final String name) {
127 return fNameMapping.get(name);
128 }
129
130 @Override
131 public ITmfEventField getField(final int index) {
132 if (fFields != null && index >= 0 && index < fFields.length) {
133 return fFields[index];
134 }
135 return null;
136 }
137
138 // ------------------------------------------------------------------------
139 // Operations
140 // ------------------------------------------------------------------------
141
142 /**
143 * Create a root field from a list of labels.
144 *
145 * @param labels the list of labels
146 * @return the (flat) root list
147 */
148 public final static ITmfEventField makeRoot(final String[] labels) {
149 final ITmfEventField[] fields = new ITmfEventField[labels.length];
150 for (int i = 0; i < labels.length; i++) {
151 fields[i] = new TmfEventField(labels[i], null, null);
152 }
153 // Return a new root field;
154 return new TmfEventField(ITmfEventField.ROOT_FIELD_ID, null, fields);
155 }
156
157 // ------------------------------------------------------------------------
158 // Object
159 // ------------------------------------------------------------------------
160
161 @Override
162 public int hashCode() {
163 final int prime = 31;
164 int result = 1;
165 result = prime * result + fName.hashCode();
166 result = prime * result + ((fValue == null) ? 0 : fValue.hashCode());
167 return result;
168 }
169
170 @Override
171 public boolean equals(final Object obj) {
172 if (this == obj) {
173 return true;
174 }
175 if (obj == null) {
176 return false;
177 }
178 if (!(obj instanceof TmfEventField)) {
179 return false;
180 }
181 final TmfEventField other = (TmfEventField) obj;
182 if (!fName.equals(other.fName)) {
183 return false;
184 }
185 if (fValue == null) {
186 if (other.fValue != null) {
187 return false;
188 }
189 } else if (!fValue.equals(other.fValue)) {
190 return false;
191 }
192 return true;
193 }
194
195 @Override
196 public String toString() {
197 StringBuilder ret = new StringBuilder();
198 if (fName.equals(ITmfEventField.ROOT_FIELD_ID)) {
199 /*
200 * If this field is a top-level "field container", we will print its
201 * sub-fields directly.
202 */
203 appendSubFields(ret);
204
205 } else {
206 /* The field has its own values */
207 ret.append(fName);
208 ret.append('=');
209 ret.append(fValue);
210
211 if (fFields != null && fFields.length > 0) {
212 /*
213 * In addition to its own name/value, this field also has
214 * sub-fields.
215 */
216 ret.append(" ["); //$NON-NLS-1$
217 appendSubFields(ret);
218 ret.append(']');
219 }
220 }
221 return ret.toString();
222 }
223
224 private void appendSubFields(StringBuilder sb) {
225 ITmfEventField field;
226 for (int i = 0; i < getFields().length; i++) {
227 field = getFields()[i];
228 if (i != 0) {
229 sb.append(", ");//$NON-NLS-1$
230 }
231 sb.append(field.toString());
232 }
233 }
234
235 /**
236 * @since 2.0
237 */
238 @Override
239 public String getFormattedValue() {
240 return getValue().toString();
241 }
242
243 }
This page took 0.036347 seconds and 5 git commands to generate.