Browse Source
Merge branch 'master' of ssh://git@gogs.informatik.hs-fulda.de/srieger/verteilte-systeme-bsc-ai-examples.git
master
Merge branch 'master' of ssh://git@gogs.informatik.hs-fulda.de/srieger/verteilte-systeme-bsc-ai-examples.git
master
Sebastian Rieger
6 years ago
19 changed files with 666 additions and 400 deletions
-
BINVerteilteSysteme-Examples/build/RMIEchoServer.jar
-
BINVerteilteSysteme-Examples/build/RMIMandelbrotCalculationsServer.jar
-
BINVerteilteSysteme-Examples/build/TCPPerfServer.jar
-
BINVerteilteSysteme-Examples/build/TCPServer.jar
-
BINVerteilteSysteme-Examples/build/TCPServerMulti.jar
-
BINVerteilteSysteme-Examples/build/TCPTimeCounterRESTServer.jar
-
BINVerteilteSysteme-Examples/build/TCPTimeCounterServer.jar
-
BINVerteilteSysteme-Examples/build/UDPServer.jar
-
BINVerteilteSysteme-Examples/build/UDPServerMulti.jar
-
BINVerteilteSysteme-Examples/build/UDPTimeCounterServer.jar
-
38VerteilteSysteme-Examples/src/verteiltesysteme/aws/TCPTimeCounterRESTServer.java
-
27VerteilteSysteme-Examples/src/verteiltesysteme/aws/TCPTimeCounterRESTService.java
-
202VerteilteSysteme-Examples/src/verteiltesysteme/mandelbrot/rmi/MGuiRMI.java
-
3VerteilteSysteme-Examples/src/verteiltesysteme/mandelbrot/rmi/RMIMandelbrotCalculationsServer.java
-
115VerteilteSysteme-Examples/src/verteiltesysteme/mandelbrot/rmi/RMIMandelbrotCalculationsServer2.java
-
2VerteilteSysteme-Examples/src/verteiltesysteme/socket/simple/TCPClient.java
-
4VerteilteSysteme-Examples/src/verteiltesysteme/socket/simple/TCPServer.java
-
2VerteilteSysteme-Examples/src/verteiltesysteme/socket/simple/UDPClient.java
-
3VerteilteSysteme-Examples/src/verteiltesysteme/socket/simple/UDPServer.java
@ -0,0 +1,115 @@ |
|||||
|
package verteiltesysteme.mandelbrot.rmi; |
||||
|
|
||||
|
//import java.io.IOException; |
||||
|
//import java.net.InetAddress; |
||||
|
//import java.net.ServerSocket; |
||||
|
//import java.net.Socket; |
||||
|
import java.rmi.registry.LocateRegistry; |
||||
|
import java.rmi.registry.Registry; |
||||
|
//import java.rmi.server.RMISocketFactory; |
||||
|
import java.rmi.server.UnicastRemoteObject; |
||||
|
|
||||
|
/* |
||||
|
class LoopbackSocketFactory extends RMISocketFactory { |
||||
|
public ServerSocket createServerSocket(int port) throws IOException { |
||||
|
return new ServerSocket(port, 5, InetAddress.getByName("127.0.0.1")); |
||||
|
} |
||||
|
|
||||
|
public Socket createSocket(String host, int port) throws IOException { |
||||
|
// just call the default client socket factory |
||||
|
return RMISocketFactory.getDefaultSocketFactory() |
||||
|
.createSocket(host, port); |
||||
|
} |
||||
|
} |
||||
|
*/ |
||||
|
|
||||
|
public class RMIMandelbrotCalculationsServer2 implements RMIMandelbrotCalculationsInterface { |
||||
|
public RMIMandelbrotCalculationsServer2() {} |
||||
|
|
||||
|
public static void main(String args[]) { |
||||
|
|
||||
|
try { |
||||
|
//RMISocketFactory.setSocketFactory(new LoopbackSocketFactory()); |
||||
|
|
||||
|
RMIMandelbrotCalculationsServer2 obj = new RMIMandelbrotCalculationsServer2(); |
||||
|
RMIMandelbrotCalculationsInterface stub = (RMIMandelbrotCalculationsInterface) UnicastRemoteObject.exportObject(obj, 0); |
||||
|
|
||||
|
// Bind the remote object's stub in the registry |
||||
|
Registry registry = LocateRegistry.getRegistry(); |
||||
|
registry.bind("RMIMandelbrotCalculationsInterface2", stub); |
||||
|
|
||||
|
System.err.println("Server ready"); |
||||
|
} catch (Exception e) { |
||||
|
System.err.println("Server exception: " + e.toString()); |
||||
|
e.printStackTrace(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// hier wird das Ergebnis von iterateAll() gespeichert |
||||
|
protected int[] result = null; |
||||
|
|
||||
|
// der augenblicklich gewaehlte Ausschnitt |
||||
|
double ULx = -2, ULy = 2, LRx = 2, LRy = -2; |
||||
|
|
||||
|
int iterateOnePoint(Complex c, int maxIterations, double maxModulus) { |
||||
|
Complex z = new Complex(0., 0.); |
||||
|
|
||||
|
for (int i = 0; i < maxIterations; i++) { |
||||
|
z.mulBy(z); |
||||
|
z.add(c); |
||||
|
double m = z.absValue(); |
||||
|
if (m > maxModulus) { |
||||
|
return i; |
||||
|
} |
||||
|
} |
||||
|
return maxIterations; |
||||
|
} |
||||
|
|
||||
|
public void iterateAllPoints(int maxIterations, double nrPointsX, double nrPointsY) { |
||||
|
|
||||
|
this.result = new int[(int) (nrPointsX * nrPointsY)]; |
||||
|
|
||||
|
int counter = 0; |
||||
|
double stepX = (this.LRx - this.ULx) / nrPointsX; |
||||
|
double stepY = (this.LRy - this.ULy) / nrPointsY; |
||||
|
double i = this.ULy; |
||||
|
for (int cy = 0; cy < nrPointsY; cy++) { |
||||
|
double r = this.ULx; |
||||
|
for (int cx = 0; cx < nrPointsX; cx++) { |
||||
|
Complex c = new Complex(r, i); |
||||
|
this.result[counter] = maxIterations - this.iterateOnePoint(c, maxIterations, 2.0); |
||||
|
counter += 1; |
||||
|
r += stepX; |
||||
|
} |
||||
|
i += stepY; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public int[] getResult() { |
||||
|
return this.result; |
||||
|
} |
||||
|
|
||||
|
public double getULx() { |
||||
|
return this.ULx; |
||||
|
} |
||||
|
|
||||
|
public double getLRx() { |
||||
|
return this.LRx; |
||||
|
} |
||||
|
|
||||
|
public double getULy() { |
||||
|
return this.ULy; |
||||
|
} |
||||
|
|
||||
|
public double getLRy() { |
||||
|
return this.LRy; |
||||
|
} |
||||
|
|
||||
|
public void setView(double ULx, double ULy, double LRx, double LRy) { |
||||
|
this.ULx = ULx; |
||||
|
this.ULy = ULy; |
||||
|
this.LRx = LRx; |
||||
|
this.LRy = LRy; |
||||
|
} |
||||
|
|
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue