1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
/*
* Copyright (C) 2015 The Android Open Source Project
*
* 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
*
* http://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.
*/
package android.util;
import android.text.TextUtils;
import android.util.proto.ProtoOutputStream;
import java.io.PrintWriter;
import java.time.Duration;
import java.time.format.DateTimeParseException;
/**
* Parses a list of key=value pairs, separated by some delimiter, and puts the results in
* an internal Map. Values can be then queried by key, or if not found, a default value
* can be used.
* @hide
*/
public class KeyValueListParser {
private final ArrayMap<String, String> mValues = new ArrayMap<>();
private final TextUtils.StringSplitter mSplitter;
/**
* Constructs a new KeyValueListParser. This can be reused for different strings
* by calling {@link #setString(String)}.
* @param delim The delimiter that separates key=value pairs.
*/
public KeyValueListParser(char delim) {
mSplitter = new TextUtils.SimpleStringSplitter(delim);
}
/**
* Resets the parser with a new string to parse. The string is expected to be in the following
* format:
* <pre>key1=value,key2=value,key3=value</pre>
*
* where the delimiter is a comma.
*
* @param str the string to parse.
* @throws IllegalArgumentException if the string is malformed.
*/
public void setString(String str) throws IllegalArgumentException {
mValues.clear();
if (str != null) {
mSplitter.setString(str);
for (String pair : mSplitter) {
int sep = pair.indexOf('=');
if (sep < 0) {
mValues.clear();
throw new IllegalArgumentException(
"'" + pair + "' in '" + str + "' is not a valid key-value pair");
}
mValues.put(pair.substring(0, sep).trim(), pair.substring(sep + 1).trim());
}
}
}
/**
* Get the value for key as an int.
* @param key The key to lookup.
* @param def The value to return if the key was not found, or the value was not a long.
* @return the int value associated with the key.
*/
public int getInt(String key, int def) {
String value = mValues.get(key);
if (value != null) {
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
// fallthrough
}
}
return def;
}
/**
* Get the value for key as a long.
* @param key The key to lookup.
* @param def The value to return if the key was not found, or the value was not a long.
* @return the long value associated with the key.
*/
public long getLong(String key, long def) {
String value = mValues.get(key);
if (value != null) {
try {
return Long.parseLong(value);
} catch (NumberFormatException e) {
// fallthrough
}
}
return def;
}
/**
* Get the value for key as a float.
* @param key The key to lookup.
* @param def The value to return if the key was not found, or the value was not a float.
* @return the float value associated with the key.
*/
public float getFloat(String key, float def) {
String value = mValues.get(key);
if (value != null) {
try {
return Float.parseFloat(value);
} catch (NumberFormatException e) {
// fallthrough
}
}
return def;
}
/**
* Get the value for key as a string.
* @param key The key to lookup.
* @param def The value to return if the key was not found.
* @return the string value associated with the key.
*/
public String getString(String key, String def) {
String value = mValues.get(key);
if (value != null) {
return value;
}
return def;
}
/**
* Get the value for key as a boolean.
* @param key The key to lookup.
* @param def The value to return if the key was not found.
* @return the string value associated with the key.
*/
public boolean getBoolean(String key, boolean def) {
String value = mValues.get(key);
if (value != null) {
try {
return Boolean.parseBoolean(value);
} catch (NumberFormatException e) {
// fallthrough
}
}
return def;
}
/**
* Get the value for key as an integer array.
*
* The value should be encoded as "0:1:2:3:4"
*
* @param key The key to lookup.
* @param def The value to return if the key was not found.
* @return the int[] value associated with the key.
*/
public int[] getIntArray(String key, int[] def) {
String value = mValues.get(key);
if (value != null) {
try {
String[] parts = value.split(":");
if (parts.length > 0) {
int[] ret = new int[parts.length];
for (int i = 0; i < parts.length; i++) {
ret[i] = Integer.parseInt(parts[i]);
}
return ret;
}
} catch (NumberFormatException e) {
// fallthrough
}
}
return def;
}
/**
* @return the number of keys.
*/
public int size() {
return mValues.size();
}
/**
* @return the key at {@code index}. Use with {@link #size()} to enumerate all key-value pairs.
*/
public String keyAt(int index) {
return mValues.keyAt(index);
}
/**
* {@hide}
* Parse a duration in millis based on java.time.Duration or just a number (millis)
*/
public long getDurationMillis(String key, long def) {
String value = mValues.get(key);
if (value != null) {
try {
if (value.startsWith("P") || value.startsWith("p")) {
return Duration.parse(value).toMillis();
} else {
return Long.parseLong(value);
}
} catch (NumberFormatException | DateTimeParseException e) {
// fallthrough
}
}
return def;
}
/** Represents an integer config value. */
public static class IntValue {
private final String mKey;
private final int mDefaultValue;
private int mValue;
/** Constructor, initialize with a config key and a default value. */
public IntValue(String key, int defaultValue) {
mKey = key;
mDefaultValue = defaultValue;
mValue = mDefaultValue;
}
/** Read a value from {@link KeyValueListParser} */
public void parse(KeyValueListParser parser) {
mValue = parser.getInt(mKey, mDefaultValue);
}
/** Return the config key. */
public String getKey() {
return mKey;
}
/** Return the default value. */
public int getDefaultValue() {
return mDefaultValue;
}
/** Return the actual config value. */
public int getValue() {
return mValue;
}
/** Overwrites with a value. */
public void setValue(int value) {
mValue = value;
}
/** Used for dumpsys */
public void dump(PrintWriter pw, String prefix) {
pw.print(prefix);
pw.print(mKey);
pw.print("=");
pw.print(mValue);
pw.println();
}
/** Used for proto dumpsys */
public void dumpProto(ProtoOutputStream proto, long tag) {
proto.write(tag, mValue);
}
}
/** Represents an long config value. */
public static class LongValue {
private final String mKey;
private final long mDefaultValue;
private long mValue;
/** Constructor, initialize with a config key and a default value. */
public LongValue(String key, long defaultValue) {
mKey = key;
mDefaultValue = defaultValue;
mValue = mDefaultValue;
}
/** Read a value from {@link KeyValueListParser} */
public void parse(KeyValueListParser parser) {
mValue = parser.getLong(mKey, mDefaultValue);
}
/** Return the config key. */
public String getKey() {
return mKey;
}
/** Return the default value. */
public long getDefaultValue() {
return mDefaultValue;
}
/** Return the actual config value. */
public long getValue() {
return mValue;
}
/** Overwrites with a value. */
public void setValue(long value) {
mValue = value;
}
/** Used for dumpsys */
public void dump(PrintWriter pw, String prefix) {
pw.print(prefix);
pw.print(mKey);
pw.print("=");
pw.print(mValue);
pw.println();
}
/** Used for proto dumpsys */
public void dumpProto(ProtoOutputStream proto, long tag) {
proto.write(tag, mValue);
}
}
/** Represents an string config value. */
public static class StringValue {
private final String mKey;
private final String mDefaultValue;
private String mValue;
/** Constructor, initialize with a config key and a default value. */
public StringValue(String key, String defaultValue) {
mKey = key;
mDefaultValue = defaultValue;
mValue = mDefaultValue;
}
/** Read a value from {@link KeyValueListParser} */
public void parse(KeyValueListParser parser) {
mValue = parser.getString(mKey, mDefaultValue);
}
/** Return the config key. */
public String getKey() {
return mKey;
}
/** Return the default value. */
public String getDefaultValue() {
return mDefaultValue;
}
/** Return the actual config value. */
public String getValue() {
return mValue;
}
/** Overwrites with a value. */
public void setValue(String value) {
mValue = value;
}
/** Used for dumpsys */
public void dump(PrintWriter pw, String prefix) {
pw.print(prefix);
pw.print(mKey);
pw.print("=");
pw.print(mValue);
pw.println();
}
/** Used for proto dumpsys */
public void dumpProto(ProtoOutputStream proto, long tag) {
proto.write(tag, mValue);
}
}
/** Represents an float config value. */
public static class FloatValue {
private final String mKey;
private final float mDefaultValue;
private float mValue;
/** Constructor, initialize with a config key and a default value. */
public FloatValue(String key, float defaultValue) {
mKey = key;
mDefaultValue = defaultValue;
mValue = mDefaultValue;
}
/** Read a value from {@link KeyValueListParser} */
public void parse(KeyValueListParser parser) {
mValue = parser.getFloat(mKey, mDefaultValue);
}
/** Return the config key. */
public String getKey() {
return mKey;
}
/** Return the default value. */
public float getDefaultValue() {
return mDefaultValue;
}
/** Return the actual config value. */
public float getValue() {
return mValue;
}
/** Overwrites with a value. */
public void setValue(float value) {
mValue = value;
}
/** Used for dumpsys */
public void dump(PrintWriter pw, String prefix) {
pw.print(prefix);
pw.print(mKey);
pw.print("=");
pw.print(mValue);
pw.println();
}
/** Used for proto dumpsys */
public void dumpProto(ProtoOutputStream proto, long tag) {
proto.write(tag, mValue);
}
}
}
|