-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.txt
420 lines (358 loc) · 10.3 KB
/
list.txt
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
Hello.java
HelloClient.java
HelloInterface.java
list.txt
MyObject.java
MyRMI.java
File: Hello.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.rmi.*;
import java.rmi.server.UnicastRemoteObject;
/**
*
* @author tnjela
*/
public class Hello extends UnicastRemoteObject implements HelloInterface {
// Internal property of the object for storing the message
private final String message;
// Method for setting the property
public Hello (String msg) throws RemoteException {
message = msg;
}
// Method for retrieving the property
public String say() throws RemoteException {
return message;
}
// Method that adds 2 numbers
public int addNumbers(int a, int b) throws RemoteException {
return a + b;
}
// Method operating on the object-type parameter
public int calculateVolume(MyObject o) throws RemoteException
{
return o.getBreadth() * o.getHeight() * o.getLength();
}
}
-----------------
File: HelloClient.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.rmi.Naming;
import java.util.Scanner;
/**
*
* @author tnjela
*/
public class HelloClient
{
public static void main(String[] argv)
{
// The object for reading from the keyboard
Scanner keyb = new Scanner(System.in);
int x, y;
// The object that will be passed as the parameter
MyObject mo = new MyObject();
try {
// Here we retreive the interface provided by the server
HelloInterface hi = (HelloInterface)Naming.lookup("//localhost:5001/Hello");
// ... and print the message
System.out.println(hi.say());
// This is the part where we pass two numbers for additions
System.out.println("Please enter the first argument");
x = keyb.nextInt();
System.out.println("Please enter the second argument");
y = keyb.nextInt();
System.out.println("Result: " + hi.addNumbers(x,y));
// Here we perform operation on the object passed as the argument
System.out.println("Volume: " + hi.calculateVolume(mo));
}
catch (Exception e)
{
System.out.println("Client error: " + e.getMessage());
}
}
}
-----------------
File: HelloInterface.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
*/
import java.rmi.*;
/**
*
* @author tnjela
*/
public interface HelloInterface extends Remote {
// The list of operations performed by the server
public String say() throws RemoteException;
public int addNumbers(int a, int b) throws RemoteException;
public int calculateVolume(MyObject o) throws RemoteException;
}
-----------------
File: list.txt
-----------------
File: list_contents.sh
#!/usr/bin/bash
for file in *; do
echo "File: $file" >> list.txt
cat "$file" >> list.txt
echo -e "\n-----------------\n" >> list.txt
done
-----------------
File: MyObject.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.io.Serializable;
/**
*
* @author tnjela
*/
// This is the definition of the object that will be passed as the remote argument
public class MyObject implements Serializable {
// Internal properties
private int length;
private int height;
private int breadth;
// Constructor
public MyObject()
{
this.length = 4;
this.height = 5;
this.breadth = 3;
}
// Setters and getters
int getLength()
{
return this.length;
}
void setLength(int l)
{
this.length = l;
}
int getHeight()
{
return this.height;
}
void setHeight(int h)
{
this.height = h;
}
int getBreadth()
{
return this.breadth;
}
void setBreadth(int b)
{
this.breadth = b;
}
}
-----------------
File: MyRMI.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
*/
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
/**
*
* @author tnjela
*/
public class MyRMI {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
// Here we create the registry for interfaces
Registry r = LocateRegistry.createRegistry(5001);
// ... and make the Hello object available from the outside
r.rebind("Hello", new Hello("Hello from the RMI server!"));
System.out.println("The RMI server is up!");
}
catch (Exception e)
{
System.out.println("Server error: " + e.getMessage());
}
}
}
-----------------
File: Hello.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.rmi.*;
import java.rmi.server.UnicastRemoteObject;
/**
*
* @author tnjela
*/
public class Hello extends UnicastRemoteObject implements HelloInterface {
// Internal property of the object for storing the message
private final String message;
// Method for setting the property
public Hello (String msg) throws RemoteException {
message = msg;
}
// Method for retrieving the property
public String say() throws RemoteException {
return message;
}
// Method that adds 2 numbers
public int addNumbers(int a, int b) throws RemoteException {
return a + b;
}
// Method operating on the object-type parameter
public int calculateVolume(MyObject o) throws RemoteException
{
return o.getBreadth() * o.getHeight() * o.getLength();
}
}
-----------------
File: HelloClient.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.rmi.Naming;
import java.util.Scanner;
/**
*
* @author tnjela
*/
public class HelloClient
{
public static void main(String[] argv)
{
// The object for reading from the keyboard
Scanner keyb = new Scanner(System.in);
int x, y;
// The object that will be passed as the parameter
MyObject mo = new MyObject();
try {
// Here we retreive the interface provided by the server
HelloInterface hi = (HelloInterface)Naming.lookup("//localhost:5001/Hello");
// ... and print the message
System.out.println(hi.say());
// This is the part where we pass two numbers for additions
System.out.println("Please enter the first argument");
x = keyb.nextInt();
System.out.println("Please enter the second argument");
y = keyb.nextInt();
System.out.println("Result: " + hi.addNumbers(x,y));
// Here we perform operation on the object passed as the argument
System.out.println("Volume: " + hi.calculateVolume(mo));
}
catch (Exception e)
{
System.out.println("Client error: " + e.getMessage());
}
}
}
-----------------
File: HelloInterface.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
*/
import java.rmi.*;
/**
*
* @author tnjela
*/
public interface HelloInterface extends Remote {
// The list of operations performed by the server
public String say() throws RemoteException;
public int addNumbers(int a, int b) throws RemoteException;
public int calculateVolume(MyObject o) throws RemoteException;
}
-----------------
File: MyObject.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
import java.io.Serializable;
/**
*
* @author tnjela
*/
// This is the definition of the object that will be passed as the remote argument
public class MyObject implements Serializable {
// Internal properties
private int length;
private int height;
private int breadth;
// Constructor
public MyObject()
{
this.length = 4;
this.height = 5;
this.breadth = 3;
}
// Setters and getters
int getLength()
{
return this.length;
}
void setLength(int l)
{
this.length = l;
}
int getHeight()
{
return this.height;
}
void setHeight(int h)
{
this.height = h;
}
int getBreadth()
{
return this.breadth;
}
void setBreadth(int b)
{
this.breadth = b;
}
}
-----------------
File: MyRMI.java
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
*/
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
/**
*
* @author tnjela
*/
public class MyRMI {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
// Here we create the registry for interfaces
Registry r = LocateRegistry.createRegistry(5001);
// ... and make the Hello object available from the outside
r.rebind("Hello", new Hello("Hello from the RMI server!"));
System.out.println("The RMI server is up!");
}
catch (Exception e)
{
System.out.println("Server error: " + e.getMessage());
}
}
}
-----------------