Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6bafe7e976af56eba396aec54a904c5aa760f5a6 (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
/*******************************************************************************
 * Copyright (c) 2008, 2016 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.internal.debug.ui.model;

import java.util.HashMap;

import org.eclipse.debug.core.model.IExpression;
import org.eclipse.debug.core.model.IWatchExpression;

public class TCFChildrenExpressions extends TCFChildren {

    TCFChildrenExpressions(TCFNode node) {
        super(node, 128);
    }

    void onSuspended(boolean func_call) {
        for (TCFNode n : getNodes()) ((TCFNodeExpression)n).onSuspended(func_call);
    }

    void onRegisterValueChanged() {
        for (TCFNode n : getNodes()) ((TCFNodeExpression)n).onRegisterValueChanged();
    }

    void onMemoryChanged() {
        for (TCFNode n : getNodes()) ((TCFNodeExpression)n).onMemoryChanged();
    }

    void onMemoryMapChanged() {
        for (TCFNode n : getNodes()) ((TCFNodeExpression)n).onMemoryMapChanged();
    }

    private TCFNodeExpression findScript(IExpression e) {
        for (TCFNode n : getNodes()) {
            TCFNodeExpression node = (TCFNodeExpression)n;
            if (e == node.getPlatformExpression() && e.getExpressionText().equals(node.getScript())) {
                return node;
            }
        }
        return null;
    }

    private TCFNodeExpression findEmpty() {
        for (TCFNode n : getNodes()) {
            TCFNodeExpression e = (TCFNodeExpression)n;
            if (e.isEmpty()) return e;
        }
        return null;
    }

    @Override
    protected boolean startDataRetrieval() {
        int cnt = 0;
        HashMap<String,TCFNode> data = new HashMap<String,TCFNode>();
        for (final IExpression e : node.model.getExpressionManager().getExpressions()) {
            TCFNodeExpression n = findScript(e);
            if (n == null) add(n = new TCFNodeExpression(node, null, e, null, null, null, -1, false));
            n.setSortPosition(cnt++);
            if (e instanceof IWatchExpression) n.setEnabled(((IWatchExpression)e).isEnabled());
            data.put(n.id, n);
        }
        TCFNodeExpression n = findEmpty();
        if (n == null) add(n = new TCFNodeExpression(node, null, null, null, null, null, -1, false));
        n.setSortPosition(cnt++);
        data.put(n.id, n);
        set(null, null, data);
        return true;
    }
}

Back to the top