This project has retired. For details please refer to its
Attic page.
ChukwaRecordKey xref
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.hadoop.chukwa.extraction.engine;
20
21
22 public class ChukwaRecordKey extends org.apache.hadoop.record.Record {
23 private static final org.apache.hadoop.record.meta.RecordTypeInfo _rio_recTypeInfo;
24 private static org.apache.hadoop.record.meta.RecordTypeInfo _rio_rtiFilter;
25 private static int[] _rio_rtiFilterFields;
26 static {
27 _rio_recTypeInfo = new org.apache.hadoop.record.meta.RecordTypeInfo(
28 "ChukwaRecordKey");
29 _rio_recTypeInfo.addField("reduceType",
30 org.apache.hadoop.record.meta.TypeID.StringTypeID);
31 _rio_recTypeInfo.addField("key",
32 org.apache.hadoop.record.meta.TypeID.StringTypeID);
33 }
34
35 private String reduceType;
36 private String key;
37
38 public ChukwaRecordKey() {
39 }
40
41 public ChukwaRecordKey(final String reduceType, final String key) {
42 this.reduceType = reduceType;
43 this.key = key;
44 }
45
46 public static org.apache.hadoop.record.meta.RecordTypeInfo getTypeInfo() {
47 return _rio_recTypeInfo;
48 }
49
50 public static void setTypeFilter(
51 org.apache.hadoop.record.meta.RecordTypeInfo rti) {
52 if (null == rti)
53 return;
54 _rio_rtiFilter = rti;
55 _rio_rtiFilterFields = null;
56 }
57
58 private static void setupRtiFields() {
59 if (null == _rio_rtiFilter)
60 return;
61
62 if (null != _rio_rtiFilterFields)
63 return;
64 int _rio_i, _rio_j;
65 _rio_rtiFilterFields = new int[_rio_rtiFilter.getFieldTypeInfos().size()];
66 for (_rio_i = 0; _rio_i < _rio_rtiFilterFields.length; _rio_i++) {
67 _rio_rtiFilterFields[_rio_i] = 0;
68 }
69 java.util.Iterator<org.apache.hadoop.record.meta.FieldTypeInfo> _rio_itFilter = _rio_rtiFilter
70 .getFieldTypeInfos().iterator();
71 _rio_i = 0;
72 while (_rio_itFilter.hasNext()) {
73 org.apache.hadoop.record.meta.FieldTypeInfo _rio_tInfoFilter = _rio_itFilter
74 .next();
75 java.util.Iterator<org.apache.hadoop.record.meta.FieldTypeInfo> _rio_it = _rio_recTypeInfo
76 .getFieldTypeInfos().iterator();
77 _rio_j = 1;
78 while (_rio_it.hasNext()) {
79 org.apache.hadoop.record.meta.FieldTypeInfo _rio_tInfo = _rio_it.next();
80 if (_rio_tInfo.equals(_rio_tInfoFilter)) {
81 _rio_rtiFilterFields[_rio_i] = _rio_j;
82 break;
83 }
84 _rio_j++;
85 }
86 _rio_i++;
87 }
88 }
89
90 public String getReduceType() {
91 return reduceType;
92 }
93
94 public void setReduceType(final String reduceType) {
95 this.reduceType = reduceType;
96 }
97
98 public String getKey() {
99 return key;
100 }
101
102 public void setKey(final String key) {
103 this.key = key;
104 }
105
106 public void serialize(final org.apache.hadoop.record.RecordOutput _rio_a,
107 final String _rio_tag) throws java.io.IOException {
108 _rio_a.startRecord(this, _rio_tag);
109 _rio_a.writeString(reduceType, "reduceType");
110 _rio_a.writeString(key, "key");
111 _rio_a.endRecord(this, _rio_tag);
112 }
113
114 private void deserializeWithoutFilter(
115 final org.apache.hadoop.record.RecordInput _rio_a, final String _rio_tag)
116 throws java.io.IOException {
117 _rio_a.startRecord(_rio_tag);
118 reduceType = _rio_a.readString("reduceType");
119 key = _rio_a.readString("key");
120 _rio_a.endRecord(_rio_tag);
121 }
122
123 public void deserialize(final org.apache.hadoop.record.RecordInput _rio_a,
124 final String _rio_tag) throws java.io.IOException {
125 if (null == _rio_rtiFilter) {
126 deserializeWithoutFilter(_rio_a, _rio_tag);
127 return;
128 }
129
130 _rio_a.startRecord(_rio_tag);
131 setupRtiFields();
132 for (int _rio_i = 0; _rio_i < _rio_rtiFilter.getFieldTypeInfos().size(); _rio_i++) {
133 if (1 == _rio_rtiFilterFields[_rio_i]) {
134 reduceType = _rio_a.readString("reduceType");
135 } else if (2 == _rio_rtiFilterFields[_rio_i]) {
136 key = _rio_a.readString("key");
137 } else {
138 java.util.ArrayList<org.apache.hadoop.record.meta.FieldTypeInfo> typeInfos = (java.util.ArrayList<org.apache.hadoop.record.meta.FieldTypeInfo>) (_rio_rtiFilter
139 .getFieldTypeInfos());
140 org.apache.hadoop.record.meta.Utils.skip(_rio_a, typeInfos.get(_rio_i)
141 .getFieldID(), typeInfos.get(_rio_i).getTypeID());
142 }
143 }
144 _rio_a.endRecord(_rio_tag);
145 }
146
147 public int compareTo(final Object _rio_peer_) throws ClassCastException {
148 if (!(_rio_peer_ instanceof ChukwaRecordKey)) {
149 throw new ClassCastException("Comparing different types of records.");
150 }
151 ChukwaRecordKey _rio_peer = (ChukwaRecordKey) _rio_peer_;
152 int _rio_ret = 0;
153 _rio_ret = reduceType.compareTo(_rio_peer.reduceType);
154 if (_rio_ret != 0)
155 return _rio_ret;
156 _rio_ret = key.compareTo(_rio_peer.key);
157 if (_rio_ret != 0)
158 return _rio_ret;
159 return _rio_ret;
160 }
161
162 public boolean equals(final Object _rio_peer_) {
163 if (!(_rio_peer_ instanceof ChukwaRecordKey)) {
164 return false;
165 }
166 if (_rio_peer_ == this) {
167 return true;
168 }
169 ChukwaRecordKey _rio_peer = (ChukwaRecordKey) _rio_peer_;
170 boolean _rio_ret = false;
171 _rio_ret = reduceType.equals(_rio_peer.reduceType);
172 if (!_rio_ret)
173 return _rio_ret;
174 _rio_ret = key.equals(_rio_peer.key);
175 if (!_rio_ret)
176 return _rio_ret;
177 return _rio_ret;
178 }
179
180 public Object clone() throws CloneNotSupportedException {
181 ChukwaRecordKey _rio_other = new ChukwaRecordKey();
182 _rio_other.reduceType = this.reduceType;
183 _rio_other.key = this.key;
184 return _rio_other;
185 }
186
187 public int hashCode() {
188 int _rio_result = 17;
189 int _rio_ret;
190 _rio_ret = reduceType.hashCode();
191 _rio_result = 37 * _rio_result + _rio_ret;
192 _rio_ret = key.hashCode();
193 _rio_result = 37 * _rio_result + _rio_ret;
194 return _rio_result;
195 }
196
197 public static String signature() {
198 return "LChukwaRecordKey(ss)";
199 }
200
201 public static class Comparator extends
202 org.apache.hadoop.record.RecordComparator {
203 public Comparator() {
204 super(ChukwaRecordKey.class);
205 }
206
207 static public int slurpRaw(byte[] b, int s, int l) {
208 try {
209 int os = s;
210 {
211 int i = org.apache.hadoop.record.Utils.readVInt(b, s);
212 int z = org.apache.hadoop.record.Utils.getVIntSize(i);
213 s += (z + i);
214 l -= (z + i);
215 }
216 {
217 int i = org.apache.hadoop.record.Utils.readVInt(b, s);
218 int z = org.apache.hadoop.record.Utils.getVIntSize(i);
219 s += (z + i);
220 l -= (z + i);
221 }
222 return (os - s);
223 } catch (java.io.IOException e) {
224 throw new RuntimeException(e);
225 }
226 }
227
228 static public int compareRaw(byte[] b1, int s1, int l1, byte[] b2, int s2,
229 int l2) {
230 try {
231 int os1 = s1;
232 {
233 int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1);
234 int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2);
235 int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1);
236 int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2);
237 s1 += z1;
238 s2 += z2;
239 l1 -= z1;
240 l2 -= z2;
241 int r1 = org.apache.hadoop.record.Utils.compareBytes(b1, s1, i1, b2,
242 s2, i2);
243 if (r1 != 0) {
244 return (r1 < 0) ? -1 : 0;
245 }
246 s1 += i1;
247 s2 += i2;
248 l1 -= i1;
249 l1 -= i2;
250 }
251 {
252 int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1);
253 int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2);
254 int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1);
255 int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2);
256 s1 += z1;
257 s2 += z2;
258 l1 -= z1;
259 l2 -= z2;
260 int r1 = org.apache.hadoop.record.Utils.compareBytes(b1, s1, i1, b2,
261 s2, i2);
262 if (r1 != 0) {
263 return (r1 < 0) ? -1 : 0;
264 }
265 s1 += i1;
266 s2 += i2;
267 l1 -= i1;
268 l1 -= i2;
269 }
270 return (os1 - s1);
271 } catch (java.io.IOException e) {
272 throw new RuntimeException(e);
273 }
274 }
275
276 public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) {
277 int ret = compareRaw(b1, s1, l1, b2, s2, l2);
278 return (ret == -1) ? -1 : ((ret == 0) ? 1 : 0);
279 }
280 }
281
282 static {
283 org.apache.hadoop.record.RecordComparator.define(ChukwaRecordKey.class,
284 new Comparator());
285 }
286 }