summaryrefslogtreecommitdiffstats
path: root/appc-common/src/main/java/org/onap/appc/util/ObjectMapper.java
blob: e4b76dd7c327288cc7bef66448e8da149073b7c2 (plain)
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
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 * 
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.util;

import java.lang.reflect.Array;
import java.util.Map;

public class ObjectMapper {

	private ObjectMapper() {
	}

	private static void dispatch(PathContext context, Object obj) {

		if (obj == null) {
			return;
		}

		final Class<?> cls = obj.getClass();

		if (cls.isPrimitive()
				|| String.class.isAssignableFrom(cls)
				|| Number.class.isAssignableFrom(cls)
				|| Boolean.class.isAssignableFrom(cls)) {
			handlePrimitive(context, obj);
		} else if (cls.isArray()) {
			handleArray(context, obj);
		} else if (Map.class.isAssignableFrom(cls)) {
			handleMap(context, (Map<?, ?>) obj);
		} else if (Iterable.class.isAssignableFrom(cls)) {
			handleCollection(context, Iterable.class.cast(obj));
		} else {
			throw new IllegalArgumentException(obj.getClass().getName());
		}
	}

	public static Map<String, String> map(Object obj) {
		PathContext context = new PathContext();
		dispatch(context, obj);
		return context.entries();
	}

	private static void handleMap(PathContext context, Map<?, ?> val) {
		for (Map.Entry<?, ?> entry : val.entrySet()) {
			context.pushToken(entry.getKey().toString());
			dispatch(context, entry.getValue());
			context.popToken();
		}
	}

	private static void handleCollection(PathContext context, Iterable<?> val) {
		int index = 0;
		for (Object elem : val) {
			handleElement(context, index++, elem);
		}
	}

	private static void handleArray(PathContext context, Object val) {
		for (int i = 0, n = Array.getLength(val); i < n; i++) {
			handleElement(context, i, Array.get(val, i));
		}
	}

	private static void handleElement(PathContext context, int index, Object val) {
		if (val == null) {
			return;
		}

		String modifier = new StringBuilder().append('[').append(Integer.valueOf(index)).append(']').toString();

		context.pushModifier(modifier);
		dispatch(context, val);
		context.popModifier();
	}

	private static void handlePrimitive(PathContext context, Object val) {
		context.entry(context.getPath(), val.toString());
	}
}