aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/ShaderSourceDetailsProvider.java
blob: ca986c3559e26e160f92c75daec17a70ba1f4534 (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
/*
 * Copyright (C) 2012 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.views.detail;

import com.android.ide.eclipse.gltrace.state.GLCompositeProperty;
import com.android.ide.eclipse.gltrace.state.GLStateType;
import com.android.ide.eclipse.gltrace.state.GLStringProperty;
import com.android.ide.eclipse.gltrace.state.IGLProperty;

import org.eclipse.jface.action.IContributionItem;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Text;

import java.util.Collections;
import java.util.List;

public class ShaderSourceDetailsProvider implements IStateDetailProvider {
    private Text mTextControl;

    @Override
    public boolean isApplicable(IGLProperty state) {
        return getShaderSourceProperty(state) != null;
    }

    @Override
    public void createControl(Composite parent) {
        mTextControl = new Text(parent, SWT.BORDER| SWT.READ_ONLY
                | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL | SWT.H_SCROLL);
        mTextControl.setEditable(false);
    }

    @Override
    public void disposeControl() {
    }

    @Override
    public Control getControl() {
        return mTextControl;
    }

    @Override
    public void updateControl(IGLProperty state) {
        IGLProperty shaderSrcProperty = getShaderSourceProperty(state);
        if (shaderSrcProperty instanceof GLStringProperty) {
            String shaderSrc = ((GLStringProperty) shaderSrcProperty).getStringValue();
            mTextControl.setText(shaderSrc);
            mTextControl.setEnabled(true);
        } else {
            mTextControl.setText(""); //$NON-NLS-1$
            mTextControl.setEnabled(false);
        }
    }

    /**
     * Get the {@link GLStateType#SHADER_SOURCE} property given a node in
     * the state hierarchy.
     * @param state any node in the GL state hierarchy
     * @return The {@link GLStateType#SHADER_SOURCE} property if a unique instance
     *         of it can be accessed from the given node, null otherwise.
     *         A unique instance can be accessed if the given node is
     *         either the requested node itself, or its parent or sibling.
     */
    private IGLProperty getShaderSourceProperty(IGLProperty state) {
        if (state.getType() == GLStateType.SHADER_SOURCE) {
            // given node is the requested node
            return state;
        }

        if (state.getType() != GLStateType.PER_SHADER_STATE) {
            // if it is not the parent, then it could be a sibling, in which case
            // we go up a level to its parent
            state = state.getParent();
        }

        if (state != null && state.getType() == GLStateType.PER_SHADER_STATE) {
            // if it is the parent, we can access the required property
            return ((GLCompositeProperty) state).getProperty(GLStateType.SHADER_SOURCE);
        }

        return null;
    }

    @Override
    public List<IContributionItem> getToolBarItems() {
        return Collections.emptyList();
    }
}