summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/btr/proxy/util/PListParser.java
blob: b6789002eb1e2617a3d9cbcfd9e475f0d97f466a (plain) (blame)
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
package com.btr.proxy.util;

import java.io.Closeable;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.TimeZone;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

/**
 * Plist xml handling (serialization and deserialization)
 * <p>
 * <em>The xml plist dtd can be found at http://www.apple.com/DTDs/PropertyList-1.0.dtd</em>
 * <p>
 * The plist spec handles 8 types of objects: booleans, real, integers, dates, binary data,
 * strings, arrays (lists) and dictionaries (maps).
 * <p>
 * The java Plist lib handles converting xml plists to a nested {@code Map<String, Object>}
 * that can be trivially read from java. It also provides a simple way to convert a nested
 * {@code Map<String, Object>} into an xml plist representation.
 * <p>
 * The following mapping will be done when converting from plist to <tt>Map</tt>:
 * <pre>
 * true/false -> Boolean
 * real -> Double
 * integer -> Integer/Long (depends on size, values exceeding an int will be rendered as longs)
 * data -> byte[]
 * string -> String
 * array -> List
 * dict -> Map
 * </pre>
 * <p>
 * When converting from Map -> plist the conversion is as follows:
 * <pre>
 * Boolean -> true/false
 * Float/Double -> real
 * Byte/Short/Integer/Long -> integer
 * byte[] -> data
 * List -> array
 * Map -> dict
 * </pre> 
 *
 * @author Christoffer Lerno / Modified by Bernd Rosstauscher
 */
public final class PListParser
{
    /*****************************************************************************
	 * Exception is used for XML parse problems. 
	 * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
	 ****************************************************************************/

	public static class XmlParseException extends Exception {

		/** Comment for <code>serialVersionUID</code>*/
		private static final long serialVersionUID = 1L;

		/*************************************************************************
		 * Constructor
		 ************************************************************************/
		
		public XmlParseException() {
			super();
		}
		
		/*************************************************************************
		 * Constructor
		 * @param msg the error message 
		 ************************************************************************/
		
		public XmlParseException(String msg) {
			super(msg);
		}

		/*************************************************************************
		 * Constructor
		 * @param msg error message 
		 * @param e the cause.
		 ************************************************************************/
		
		public XmlParseException(String msg, Exception e) {
			super(msg, e);
		}

	}
	
	/*****************************************************************************
	 * Small helper class representing a tree node. 
	 * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
	 ****************************************************************************/
	
	public static class Dict implements Iterable<Map.Entry<String, Object>> {
		private Map<String, Object> children;
		
		/*************************************************************************
		 * Constructor
		 ************************************************************************/
		
		public Dict() {
			super();
			this.children = new HashMap<String, Object>();
		}

		/*************************************************************************
		 * @param key of the child node.
		 * @return the child node, null if not existing.
		 ************************************************************************/
		
		public Object get(String key) {
			return this.children.get(key);
		}

		/*************************************************************************
		 * iterator
		 * @see java.lang.Iterable#iterator()
		 ************************************************************************/

		public Iterator<Entry<String, Object>> iterator() {
			return this.children.entrySet().iterator();
		}

		/*************************************************************************
		 * @return the size of this dictionary.
		 ************************************************************************/
		
		public int size() {
			return this.children.size();
		}
		
	    /*************************************************************************
         * Dumps a dictionary with all sub-nodes to the console.
         ************************************************************************/
        
        public void dump() {
			System.out.println("PList");
        	dumpInternal(this, 1);
        }

		/*************************************************************************
		 * @param plist
		 * @param indent
		 ************************************************************************/
		
		private static void dumpInternal(Dict plist, int indent) {
			for (Map.Entry<String, Object> child : plist) {
				if (child.getValue() instanceof Dict) {
					for (int j = 0; j < indent; j++) {
						System.out.print("  ");
					}
					System.out.println(child.getKey());
					dumpInternal((Dict) child.getValue(), indent+1);
				} else {
					for (int j = 0; j < indent; j++) {
						System.out.print("  ");
					}
					System.out.println(child.getKey()+" = "+child.getValue());
				}
			}
			
		}
		
		/*************************************************************************
         * Get a node at a given path.
         * @param path a / separated path into the plist hirarchy.
         * @return the object located at the given path, null if it does not exist.
         ************************************************************************/
        
		public Object getAtPath(String path) {
        	Dict currentNode = this;
        	
        	String[] pathSegments = path.trim().split("/");
        	for (int i = 0; i < pathSegments.length; i++) {
        		String segment = pathSegments[i].trim();
        		if (segment.length() == 0) {
        			continue;
        		}
				Object o = currentNode.get(segment);
        		if (i >= pathSegments.length-1) {
        			return o;
        		}
        		if (o == null || !(o instanceof Dict)){
        			break;
        		}
        		currentNode = (Dict) o;
        	}
        	return null;
        }
		
	}
	
		/**
         * Singleton instance.
         */
        private final static PListParser PLIST = new PListParser();

        /**
         * All element types possible for a plist.
         */
        private static enum ElementType
        {
                INTEGER,
                STRING,
                REAL,
                DATA,
                DATE,
                DICT,
                ARRAY,
                TRUE,
                FALSE,
        }

        private static final String BASE64_STRING
                        = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
        private static final char[] BASE64_CHARS = BASE64_STRING.toCharArray();
        private final DateFormat m_dateFormat;
        private final Map<Class<?>, ElementType> m_simpleTypes;

        /**
         * Utility method to close a closeable.
         *
         * @param closeable or null.
         */
        static void silentlyClose(Closeable closeable)
        {
                try
                        {
                                if (closeable != null) {
									closeable.close();
								}
                }
                catch (IOException e)
                {
                        // Ignore
                }
        }

		/*************************************************************************
		 * @param input
		 * @return
		 * @throws XmlParseException
		 ************************************************************************/
		
		private static Dict parse(InputSource input)
				throws XmlParseException {
			try {
				DocumentBuilder documentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
				documentBuilder.setEntityResolver(new EmptyXMLResolver());
				Document doc = documentBuilder.parse(input);
				Element element = doc.getDocumentElement();
	            return PLIST.parse(element);
			} catch (ParserConfigurationException e) {
				throw new XmlParseException("Error reading input", e);
			} catch (SAXException e) {
				throw new XmlParseException("Error reading input", e);
			} catch (IOException e) {
				throw new XmlParseException("Error reading input", e);
			}
		}

        /**
         * Create a nested {@code map<String, Object>} from a plist xml file using the default mapping.
         *
         * @param file the File containing the the plist xml.
         * @return the resulting map as read from the plist data.
         * @throws XmlParseException if the plist could not be properly parsed.
         * @throws IOException if there was an issue reading the plist file.
         */
        public static Dict load(File file) throws XmlParseException, IOException
        {
			FileInputStream byteStream = new FileInputStream(file);
			try {
				InputSource input = new InputSource(byteStream);
				return parse(input);
			} finally {
				silentlyClose(byteStream);
			}
        }

        /**
         * Create a plist handler.
         */
        PListParser()
        {
                this.m_dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
                this.m_dateFormat.setTimeZone(TimeZone.getTimeZone("Z"));
                this.m_simpleTypes = new HashMap<Class<?>, ElementType>();
                this.m_simpleTypes.put(Integer.class, ElementType.INTEGER);
                this.m_simpleTypes.put(Byte.class, ElementType.INTEGER);
                this.m_simpleTypes.put(Short.class, ElementType.INTEGER);
                this.m_simpleTypes.put(Short.class, ElementType.INTEGER);
                this.m_simpleTypes.put(Long.class, ElementType.INTEGER);
                this.m_simpleTypes.put(String.class, ElementType.STRING);
                this.m_simpleTypes.put(Float.class, ElementType.REAL);
                this.m_simpleTypes.put(Double.class, ElementType.REAL);
                this.m_simpleTypes.put(byte[].class, ElementType.DATA);
                this.m_simpleTypes.put(Boolean.class, ElementType.TRUE);
                this.m_simpleTypes.put(Date.class, ElementType.DATE);
        }

        /**
         * Parses a plist top element into a map dictionary containing all the data
         * in the plist.
         *
         * @param element the top plist element.
         * @return the resulting data tree structure.
         * @throws XmlParseException if there was any error parsing the xml.
         */
		Dict parse(Element element) throws XmlParseException
        {
                if (!"plist".equalsIgnoreCase(element.getNodeName())) {
					throw new XmlParseException("Expected plist top element, was: " + element.getNodeName());
				}

                Node n = element.getFirstChild();
                while (n != null && !n.getNodeName().equals("dict")) {
                	n = n.getNextSibling();
                }

                Dict result = (Dict) parseElement(n);
				return result;
        }

        /**
         * Parses a (non-top) xml element.
         *
         * @param element the element to parse.
         * @return the resulting object.
         * @throws XmlParseException if there was some error in the xml.
         */
        private Object parseElement(Node element) throws XmlParseException
        {
                try
                {
                        return parseElementRaw(element);
                }
                catch (Exception e)
                {
                        throw new XmlParseException("Failed to parse: " + element.getNodeName(), e);
                }
        }


        /**
         * Parses a (non-top) xml element.
         *
         * @param element the element to parse.
         * @return the resulting object.
         * @throws ParseException if there was some error parsing the xml.
         */
        private Object parseElementRaw(Node element) throws ParseException 
        {
                ElementType type = ElementType.valueOf(element.getNodeName().toUpperCase());
                switch (type)
                {
                        case INTEGER:
                                return parseInt(getValue(element));
                        case REAL:
                                return Double.valueOf(getValue(element));
                        case STRING:
                                return getValue(element);
                        case DATE:
                                return this.m_dateFormat.parse(getValue(element));
                        case DATA:
                                return base64decode(getValue(element));
                        case ARRAY:
                             	return parseArray(element.getChildNodes());
                        case TRUE:
                                return Boolean.TRUE;
                        case FALSE:
                                return Boolean.FALSE;
                        case DICT:
                                return parseDict(element.getChildNodes());
                        default:
                                throw new RuntimeException("Unexpected type: " + element.getNodeName());
                }
        }
        
        /*************************************************************************
         * @param n
         * @return
         ************************************************************************/
        
        private String getValue(Node n) {
        	StringBuilder sb = new StringBuilder();
        	Node c = n.getFirstChild();
        	while (c != null) {
        		if (c.getNodeType() == Node.TEXT_NODE) {
        			sb.append(c.getNodeValue());
        		}
        		c = c.getNextSibling(); 
        	}
        	return sb.toString();
        }

        /**
         * Parses a string into a Long or Integer depending on size.
         *
         * @param value the value as a string.
         * @return the long value of this string is the value doesn't fit in an integer,
         * otherwise the int value of the string.
         */
        private Number parseInt(String value)
        {
                Long l = Long.valueOf(value);
                if (l.intValue() == l) {
					return l.intValue();
				}
                return l;
        }

        /**
         * Parse a list of xml elements as a plist dict.
         *
         * @param elements the elements to parse.
         * @return the dict deserialized as a map.
         * @throws ParseException if there are any problems deserializing the map.
         */
        private Dict parseDict(NodeList elements) throws ParseException 
        {
        		Dict dict = new Dict();
            	for (int i = 0; i < elements.getLength(); i++) {
                		Node key = elements.item(i);
                		if (key.getNodeType() != Node.ELEMENT_NODE) {
                			continue;
                		}
                        if (!"key".equals(key.getNodeName())) {
							throw new ParseException("Expected key but was " + key.getNodeName(), -1);
						}
                        i++;
                		Node value = elements.item(i);
                		while (value.getNodeType() != Node.ELEMENT_NODE) {
                            i++;
                    		value = elements.item(i);
                		}
                        Object o = parseElementRaw(value);
                        String dictName = getValue(key);
						dict.children.put(dictName, o);
                }
                return dict;
        }
      
        /**
         * Parse a list of xml elements as a plist array.
         *
         * @param elements the elements to parse.
         * @return the array deserialized as a list.
         * @throws ParseException if there are any problems deserializing the list.
         */
        private List<Object> parseArray(NodeList elements) throws ParseException
        {
                ArrayList<Object> list = new ArrayList<Object>();
                for (int i = 0; i < elements.getLength(); i++) {
                	Node o = elements.item(i);
                	if (o.getNodeType() != Node.ELEMENT_NODE) {
            			continue;
            		}                        
                	list.add(parseElementRaw(o));
                }
                return list;
        }

        /**
         * Encode an array of bytes to a string using base64 encoding.
         *
         * @param bytes the bytes to convert.
         * @return the base64 representation of the bytes.
         */
        static String base64encode(byte[] bytes)
        {
                StringBuilder builder = new StringBuilder(((bytes.length + 2)/ 3) * 4);
                for (int i = 0; i < bytes.length; i += 3)
                {
                        byte b0 = bytes[i];
                        byte b1 = i < bytes.length - 1 ? bytes[i + 1] : 0;
                        byte b2 = i < bytes.length - 2 ? bytes[i + 2] : 0;
                        builder.append(BASE64_CHARS[(b0 & 0xFF) >> 2]);
                        builder.append(BASE64_CHARS[((b0 & 0x03) << 4) | ((b1  & 0xF0) >> 4)]);
                        builder.append(i < bytes.length - 1 ? BASE64_CHARS[((b1 & 0x0F) << 2) | ((b2 & 0xC0) >> 6)] : "=");
                        builder.append(i < bytes.length - 2 ? BASE64_CHARS[b2 & 0x3F] : "=");
                }
                return builder.toString();
        }

        /**
         * Converts a string to a byte array assuming the string uses base64-encoding.
         *
         * @param base64 the string to convert.
         * @return the resulting byte array.
         */
        static byte[] base64decode(String base64)
        {
                base64 = base64.trim();
                int endTrim = base64.endsWith("==") ? 2 : base64.endsWith("=") ? 1 : 0;
                int length = (base64.length() / 4) * 3 - endTrim;
                base64 = base64.replace('=', 'A');
                byte[] result = new byte[length];
                int stringLength = base64.length();
                int index = 0;
                for (int i = 0; i < stringLength; i += 4)
                {
                        int i0 = BASE64_STRING.indexOf(base64.charAt(i));
                        int i1 = BASE64_STRING.indexOf(base64.charAt(i + 1));
                        int i2 = BASE64_STRING.indexOf(base64.charAt(i + 2));
                        int i3 = BASE64_STRING.indexOf(base64.charAt(i + 3));
                        byte b0 = (byte) ((i0 << 2) | (i1 >> 4));
                        byte b1 = (byte) ((i1 << 4) | (i2 >> 2));
                        byte b2 = (byte) ((i2 << 6) | i3);
                        result[index++] = b0;
                        if (index < length)
                        {
                                result[index++] = b1;
                                if (index < length)
                                {
                                        result[index++] = b2;
                                }
                        }
                }
                return result;
        }
        
        
  
 
}