summaryrefslogtreecommitdiffstats
path: root/dcopjava/binding/org/kde/DCOP/Stub.java
blob: e9267fa588430af6a605cce21355fbbd873863e7 (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
183
184
185
186
187
188
189
190
191
192
193
package org.kde.DCOP;


import java.io.*;


public class Stub
{
    private String _app, _obj;
    private int _status;
    private Client _client;

    public Stub(String app, String obj)
    {
	_app = app;
	_obj = obj;
	_status = 0;

	// TODO: The client should be shared between stubs.
	_client = new Client();
	_client.attach();
    }
    
    public String app()
    {
	return _app;
    }

    public String obj()
    {
	return _obj;
    }

  
    public Client client()
    {
	return _client;
    }


    public final static int CallFailed    = 0;
    public final static int CallSucceeded = 1;

    public int status()
    {
	return _status;
    }

    public void setStatus(int status)
    {
	_status = status;
    }

    public boolean ok()
    {
	return _status == CallSucceeded;
    }

    public void callFailed()
    {
	_status = CallFailed;
    }


    // accessor methods for the datatypes used ---------------------------

    protected boolean read_bool(DataInputStream is) throws IOException
    {
	return is.readBoolean();
    }
    
    protected void write_bool(DataOutputStream os, boolean val) throws IOException
    {
	os.writeBoolean(val);
    }

    protected short read_short_int(DataInputStream is) throws IOException
    {
	return is.readShort();
    }
    
    protected void write_short_int(DataOutputStream os, short val) throws IOException
    {
	os.writeShort(val);
    }

    protected int read_int(DataInputStream is) throws IOException
    {
	return is.readInt();
    }
    
    protected void write_int(DataOutputStream os, int val) throws IOException
    {
	os.writeInt(val);
    }

    protected int read_long_int(DataInputStream is) throws IOException
    {
	return is.readInt();
    }
    
    protected void write_long_int(DataOutputStream os, int val) throws IOException
    {
	os.writeInt(val);
    }

    protected float read_float(DataInputStream is) throws IOException
    {
	return is.readFloat();
    }
    
    protected void write_float(DataOutputStream os, float val) throws IOException
    {
	os.writeFloat(val);
    }

    protected double read_double(DataInputStream is) throws IOException
    {
	return is.readDouble();
    }
    
    protected void write_double(DataOutputStream os, double val) throws IOException
    {
	os.writeDouble(val);
    }

    protected String read_QString(DataInputStream is) throws IOException
    {
	int len = is.readInt();
	if (len == 0xffffffff)
	    return new String();
	else
	    {
		StringBuffer b = new StringBuffer();
		for (int i=0; i<len/2; ++i)
		    b.append(is.readChar());
		return b.toString();
	    }
    }
    
    protected void write_QString(DataOutputStream os, String val) throws IOException
    {
	os.writeInt(val.length()*2);
	for (int i=0; i<val.length(); ++i)
	    os.writeChar(val.charAt(i));
    }

    protected String read_QCString(DataInputStream is) throws IOException
    {
	int len = is.readInt();
	StringBuffer b = new StringBuffer();
	for (int i=0; i<len; ++i)
	    b.append((char)is.readByte());
	return b.toString();
    }
    
    protected void write_QCString(DataOutputStream os, String val) throws IOException
    {
	os.writeInt(val.length()+1);
	for (int i=0; i<val.length(); ++i)
	    os.writeByte(val.charAt(i));
	os.writeByte(0);
    }

    protected String[] read_QStringList(DataInputStream is) throws IOException
    {
	int n = is.readInt();
	String[] result = new String[n];
	for (int i=0; i<n; ++i)
	    result[i] = read_QString(is);
	return result;
    }
    
    protected void write_QStringList(DataOutputStream os, String[] val) throws IOException
    {
	os.writeInt(val.length);
	for (int i=0; i<val.length; ++i)
	    write_QCString(os, val[i]);
    }

    protected void write_DCOPRef(DataOutputStream os, DCOPRef ref) throws IOException
    {
	write_QCString(os, ref.app());
	write_QCString(os, ref.object());
	write_QCString(os, ref.type());
    }

    protected DCOPRef read_DCOPRef(DataInputStream is) throws IOException
    {
	return new DCOPRef(read_QCString(is), read_QCString(is), read_QCString(is));
    }

}