Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 65d0b7dd7db35626fcc44444fbd6043a4c87b18d (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
/*******************************************************************************
 * Copyright (c) 2008, 2011 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.internal.debug.tests;

import java.util.LinkedList;

import org.eclipse.tcf.protocol.IChannel;
import org.eclipse.tcf.protocol.IErrorReport;
import org.eclipse.tcf.protocol.IToken;
import org.eclipse.tcf.services.IDiagnostics;

class TestEcho implements ITCFTest, IDiagnostics.DoneEcho {

    private final TCFTestSuite test_suite;
    private final IDiagnostics diag;
    private final LinkedList<String> msgs = new LinkedList<String>();
    private int count = 0;
    private long start_time;

    TestEcho(TCFTestSuite test_suite, IChannel channel) {
        this.test_suite = test_suite;
        diag = channel.getRemoteService(IDiagnostics.class);
    }

    public void start() {
        if (diag == null) {
            test_suite.done(this, null);
        }
        else {
            diag.not_implemented_command(new IDiagnostics.DoneNotImplementedCommand() {

                public void doneNotImplementedCommand(IToken token, Throwable error) {
                    if (!test_suite.isActive(TestEcho.this)) return;
                    if (!(error instanceof IErrorReport)) {
                        Throwable x = new Exception("Invalid responce to unimplemented command", error);
                        test_suite.done(TestEcho.this, x);
                        return;
                    }
                    if (((IErrorReport)error).getErrorCode() != IErrorReport.TCF_ERROR_INV_COMMAND) {
                        test_suite.done(TestEcho.this, new Exception("Invalid error code in responce to unimplemented command"));
                        return;
                    }
                    start_time = System.currentTimeMillis();
                    for (int i = 0; i < 32; i++) sendMessage();
                }
            });
        }
    }

    private void sendMessage() {
        StringBuffer buf = new StringBuffer();
        buf.append(Integer.toHexString(count));
        for (int i = 0; i < 64; i++) {
            buf.append('-');
            buf.append((char)(0x400 * i + count));
        }
        String s =  buf.toString();
        msgs.add(s);
        diag.echo(s, this);
        count++;
    }

    public void doneEcho(IToken token, Throwable error, String b) {
        String s = msgs.removeFirst();
        if (!test_suite.isActive(this)) return;
        if (error != null) {
            test_suite.done(this, error);
        }
        else if (!s.equals(b)) {
            test_suite.done(this, new Exception("Echo test failed: " + s + " != " + b));
        }
        else if (count < 0x400) {
            sendMessage();
            // Don't run the test much longer then 4 seconds
            if (count % 0x10 == 0 && System.currentTimeMillis() - start_time >= 4000) {
                count = 0x400;
            }
        }
        else if (msgs.isEmpty()){
            test_suite.done(this, null);
        }
    }

    public boolean canResume(String id) {
        return true;
    }
}

Back to the top