aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLListProperty.java
blob: 6840abff4c01809f26460a8804452f2ab87a0433 (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
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
/*
 * Copyright (C) 2011 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 com.android.ide.eclipse.gltrace.state;

import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

/**
 * A list property is a container for a list of properties, addressed by index.
 */
public class GLListProperty implements IGLProperty {
    private final List<IGLProperty> mList;
    private final GLStateType mType;
    private IGLProperty mParent;
    private IGLProperty mTemplate;

    /**
     * Construct a list of properties of given size from the provided template.
     * @param template property that will be cloned and used as members of the list
     * @param size size of the list
     */
    public GLListProperty(GLStateType type, IGLProperty template, int size) {
        mType = type;
        mTemplate = template;

        mList = new ArrayList<IGLProperty>(size);
        for (int i = 0; i < size; i++) {
            IGLProperty p = template.clone();
            mList.add(p);

            p.setParent(this);
        }
    }

    private GLListProperty(GLStateType type, List<IGLProperty> props) {
        mList = props;
        mType = type;

        for (IGLProperty p : mList) {
            p.setParent(this);
        }
    }

    public List<IGLProperty> getList() {
        return mList;
    }

    public IGLProperty get(int index) {
        return mList.get(index);
    }

    public boolean add(IGLProperty property) {
        property.setParent(this);
        return mList.add(property);
    }

    public boolean remove(IGLProperty property) {
        return mList.remove(property);
    }

    public void set(int index, IGLProperty property) {
        ensureCapacity(index + 1);
        mList.set(index, property);
        property.setParent(this);
    }

    private void ensureCapacity(int capactiy) {
        for (int i = mList.size(); i < capactiy; i++) {
            mList.add(mTemplate);
        }
    }

    @Override
    public GLListProperty clone() {
        List<IGLProperty> props = new ArrayList<IGLProperty>(
                mList.size());

        for (IGLProperty p : mList) {
            props.add(p.clone());
        }

        return new GLListProperty(getType(), props);
    }

    @Override
    public String toString() {
        StringBuffer sb = new StringBuffer();
        sb.append("GLListProperty [");      //$NON-NLS-1$

        int i = 0;
        for (IGLProperty p : mList) {
            sb.append(i);
            sb.append(':');
            sb.append(p.toString());
            sb.append(", ");                //$NON-NLS-1$
            i++;
        }

        sb.append("]");
        return sb.toString();
    }

    @Override
    public String getStringValue() {
        // This method is called for displaying objects in the UI.
        // We do not display any values for composites in the UI as they are only intermediate
        // nodes in the tree.
        return "";
    }

    @Override
    public GLStateType getType() {
        return mType;
    }

    @Override
    public boolean isComposite() {
        return true;
    }

    @Override
    public boolean isDefault() {
        return false;
    }

    @Override
    public IGLProperty getParent() {
        return mParent;
    }

    @Override
    public void setParent(IGLProperty parent) {
        mParent = parent;
    }

    public int indexOf(IGLProperty property) {
        return mList.indexOf(property);
    }

    @Override
    public void setValue(Object value) {
        throw new UnsupportedOperationException(
                "Values cannot be set for composite properties."); //$NON-NLS-1$
    }

    @Override
    public Object getValue() {
        throw new UnsupportedOperationException(
                "Values cannot be obtained for composite properties."); //$NON-NLS-1$
    }

    public int size() {
        return mList.size();
    }

    @Override
    public void prettyPrint(StatePrettyPrinter pp) {
        pp.prettyPrint(mType, null);
        pp.incrementIndentLevel();
        for (int i = 0; i < mList.size(); i++) {
            pp.prettyPrint(String.format(Locale.US, "Index %d:", i));
            IGLProperty p = mList.get(i);
            p.prettyPrint(pp);
        }
        pp.decrementIndentLevel();
    }
}