Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4ff66c2014e7176a7ef938911d0eddc97c3c1fa2 (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
/*******************************************************************************
 * Copyright (c) 2004, 2011 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * IBM - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.make.internal.core.scannerconfig.util;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.cdt.internal.core.SafeStringInterner;


/**
 * Represents a symbol definition with possible multiple values
 * example:
 * 		LOG_LEVEL
 * 		LOG_LEVEL = 2
 * 		LOG_LEVEL = LOG_BASE + 1
 * @author vhirsl
 */
public class SymbolEntry {
	private static final String UNSPECIFIED_VALUE = "1";	//$NON-NLS-1$
	private String name;
	private Map<String, Boolean> values;	// Values can be either in the active (selected) group or in the removed group 
	
	public SymbolEntry(String name, String value, boolean active) {
		this.name = SafeStringInterner.safeIntern(name);
		if (values == null) {
			values = new LinkedHashMap<String, Boolean>(1);
		}
		values.put(SafeStringInterner.safeIntern(value), Boolean.valueOf(active));
	}

	public boolean add(String value, boolean active) {
		Boolean old= values.put(SafeStringInterner.safeIntern(value), Boolean.valueOf(active));
		return old == null || old.booleanValue() != active;
	}
		
	public void remove(String value) {
		values.remove(value);
	}
	
	public void removeAll() {
		values = null;
	}
	
	public List<String> getActive() {
		return get(true, true, true);
	}
	public List<String> getActiveRaw() {
		return get(false, true, true);
	}
	
	public List<String> getRemoved() {
		return get(true, true, false);
	}
	public List<String> getRemovedRaw() {
		return get(false, true, false);
	}
	
	public List<String> getAll() {
		return get(true, false, true /*don't care*/);
	}
	public List<String> getAllRaw() {
		return get(false, false, true /*don't care*/);
	}

	/**
	 * Utility function to retrieve values as a set.
	 * 
	 * @param format - false = raw
	 * @param subset - false = all
	 * @param active - false = removed
	 * @return List
	 */
	private List<String> get(boolean format, boolean subset, boolean active) {
		List<String> rv = new ArrayList<String>(values.size());
		for (String val : values.keySet()) {
			if (subset && (values.get(val)).booleanValue() != active)
				continue;
			if (format) {
				rv.add(name + "=" + (val == null ? UNSPECIFIED_VALUE : val));//$NON-NLS-1$
			}
			else {
				rv.add(name + (val == null ? "" : "=" + val));//$NON-NLS-1$ //$NON-NLS-2$
			}				
		}
		return rv;
	}
	/**
	 * Returns only value part of all active entries
	 * @return List
	 */
	public List<String> getValuesOnly(boolean active) {
		List<String> rv = new ArrayList<String>(values.size());
		for (Object element : values.keySet()) {
			String val = (String) element;
			if ((values.get(val)).booleanValue() == active) {
				rv.add(val == null ? UNSPECIFIED_VALUE : val);
			}
		}
		return rv;
	}
	
	public int numberOfValues() {
		return values.size();
	}
	
	@Override
	public String toString() {
		StringBuilder buffer = new StringBuilder(name);
		buffer.append(':');
		for (String val : values.keySet()) {
			buffer.append('\t');
			buffer.append((val == null) ? "null" : val);//$NON-NLS-1$
			if ((values.get(val)).booleanValue() == true) {
				buffer.append("(active)");//$NON-NLS-1$
			}
			buffer.append('\n');
		}
		return SafeStringInterner.safeIntern(buffer.toString());
	}
}

Back to the top