Presentation is loading. Please wait.

Presentation is loading. Please wait.

Java Distributed Objects 1

Similar presentations


Presentation on theme: "Java Distributed Objects 1"— Presentation transcript:

1 Java Distributed Objects 1
Masayuki Iwai

2 Table of contents 第1回10月11日木曜日5限 第2回10月19日金曜日6限 Rmi Advanced tutorial
Distibuted objectsの目指す世界 Rmi 以前 tutorial Rmi tutorial 第2回10月19日金曜日6限 Rmi Advanced tutorial custom socket package Activatable 第3回10月17日木曜日5限 Jini programming Java Space programming Distributed Objectsの世界

3 Distibuted objectsの目指す世界
タスクの依頼 自由な連携 take write take write read

4 Local Method Invocation
LocalClass localClass=new LocalClass(); outputObj=localClass.method(inputObj); inputObjはprimitive型でない限りcall by referenceとして渡される。 LocalRuntime LocalMainClass

5 RMI:Remote Method Invocation
Remote Classのmethodを Callbyreferenceで呼びたいのがRMI RemoteClass RemoteRuntime method LocalRuntime LocalMainClass

6 RMI:Bの側にCのクラスファイルがない場合
Interfaceを利用したCastだけではだめ BはCを保持しておく必要がないが最終的にはCの情報が必要->NetworkClassLoader Cの情報をダウンロード C NetworkClassServer NetworkClassLoader interface C C C’ A serializable B C ObjectOutputStream VM_A VM_B

7 RMI:すこし立ち止まって クラスサーバは果たしてLocalRuntimeにある必要はあるのか? Cの情報をダウンロード C
NetworkClassServer NetworkClassServer interface C C C’ A serializable B C ObjectOutputStream VM_A VM_B

8 RMI:Marshalled Object
MarshalledObject=serialized object+そのロード元 (可能な場合) となるコードベース URL BはCを知る必要がない:webserverは何処にあってもよい:動作はVM_B上 C http/get websrver Cクラスの解決情報 C C C C C’ A serializable B ObjectOutputStream VM_A VM_B

9 RMI: MarshalledObjectの実装
public final class MarshalledObject implements Serializable { /** Bytes of serialized representation. If <code>objBytes</code> is * <code>null</code> then the object marshalled was a <code>null</code> * reference. */ private byte[] objBytes = null; Bytes of location annotations, which are ignored by * <code>equals</code>. If <code>locBytes</code> is null, there were no * non-<code>null</code> annotations during marshalling. private byte[] locBytes = null; Stored hash code of contained object. * #hashCode }

10 RMI:Object I/O Streamの2つの問題
オブジェクト単位 public class Account implements Serializable{ public void setMoney(){….} public Money getMony(){….} public void addMony(){….} public void subMony(){….} } =================書き出す側 VM_A=================== Socket s = ss.accept(); ObjectOutputStream oos = new ObjectOutputStream(s.getOutputStream()); Account acc= Bank.getAccount(me); oos.writeObject(acc); s.close(); =================読み出す側 VM_B=================== ObjectInputStream ois = new ObjectInputStream(s.getInputStream()); Account acc= (Account) (ois.readObject()); acc.addMony(1000); AccountクラスってRemoteに最新のものあるの? これって変更されるのRemoteのAccountクラスだよね

11 RMI: Socket/ObjectStreamレベルのことはStabが行う。
Stabクラスはrmic –v1.2 ServerClassのコマンドで生成 実はMarshalledObjectを利用してRMIは実装されている。 コードベースのためWebserverが必要 スタブオブジェクトが必要:動作はVM_A上 C クラスCは必要ない WEBSERVER インタフェースC’ UnicastRemoteObject C C C’ A C_stub C_stub B RMI VM_A VM_B

12 RMI:SocketProgrammingではない。
=================サーバ側 VM_A=================== public class AccountImple extends UnicastRemoteObject implements IAccount{ } AccountImple acc= Bank.getAccountImple (me); Naming.rebind(“registryhostname/Account_Iwai”,acc); 起動方法 >>java MainClass java.rmi.server.codebase= =================クライアンド側 VM_B=================== String location = "rmi://registryhostname/Account_Iwai" ; acc=(IAccount)Naming.lookup(location); acc.addMony(1000); Socketプログラミングあらたな問題

13 Remote インタフェースの実装 public interface MoneyRemote extends Remote {
public void increment() throws RemoteException; public void printMoney() throws RemoteException; public int getMoney() throws RemoteException; }

14 MoneyLocalClient public class MoneyLocalClient {
public static void main(String argv[]){   MoneyRemote remotemoney; //インタフェースのみの宣言である点に注意 //codebaseがなければキャスト例外を起すはず try { String location = "rmi://localhost/MoneyServer" ;  remotemoney=(MoneyRemote)Naming.lookup(location); System.out.println("Remote obj: " + remotemoney ); System.out.println("money local client:"+remotemoney.getMoney()); remotemoney.increment();  //remote呼び出し remotemoney.printMoney(); //remote呼び出し } catch (Exception e) { System.out.println("err: " + e); e.printStackTrace(); }

15 MoneyRemoteImpl public class MoneyRemoteImpl extends UnicastRemoteObject implements MoneyRemote { //ここのpublic必須 <- なぜか理由を考えてみてね。 public MoneyRemoteImpl() throws RemoteException { super(); } int money = 0; public void increment() throws RemoteException { money++; public void printMoney() throws RemoteException { System.out.println("Remote Money is:" + money); public int getMoney() throws RemoteException { return money;

16 RemoteMain public class RemoteMain {
public static void main(String argv[]) { if (System.getSecurityManager() == null) { System.setSecurityManager(new RMISecurityManager()); } try { MoneyRemoteImpl money = new MoneyRemoteImpl(); money.increment(); Naming.rebind("rmi://localhost/MoneyServer", money); //実は名前は何でもよい。 System.out.println("MoneyServer bound in registry"); money.printMoney(); } catch (Exception e) { System.out.println(e.getMessage()); e.printStackTrace();

17 コマンド Stubの生成 Codebaseのためのjar化 Rmiregistryの起動 サーバの起動 クライアントの起動
rmic -v1.2 jp.ac.sfc.keio.sfc.tailor.rmi.test.remote.MoneyRemoteImpl Stubはクライアントにコピーが必要 Codebaseのためのjar化 jar cvf 1rmiMoneyRemoteImpl.jar jp\ac\sfc\keio\sfc\tailor\rmi\test\ Rmiregistryの起動 サーバの起動 java -Djava.rmi.server.codebase= -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.test.remote.RemoteMain クライアントの起動 java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.test.local.MoneyLocalClient

18 わざとcodebaseでエラーを起す。 java -Djava.rmi.server.codebase= -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.test.remote.RemoteMain Rmiregistryのcodebaseに開発コードがないことを確認

19 rmiregistryの正体 package jp.ac.sfc.keio.sfc.tailor.rmi.registry;
import java.rmi.AlreadyBoundException; import java.rmi.Naming; import java.rmi.RemoteException; import java.rmi.registry.LocateRegistry; import java.rmi.registry.Registry; import jp.ac.sfc.keio.sfc.tailor.rmi.test.remote.MoneyRemoteImpl; public class RegistryMain { /** * rmiregistryが何をしているか知るプログラム */ public static void main(String[] args) { MoneyRemoteImpl money; try { money = new MoneyRemoteImpl(); money.increment(); Registry reg = LocateRegistry.createRegistry(1099); reg.bind("MoneyServer", money); } catch (RemoteException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } catch (AlreadyBoundException e) { }

20 万能rmiサーバを作成する。 public interface Compute extends Remote {
Object executeTask(Task t) throws RemoteException; }

21 Task import java.io.Serializable;
public interface Task extends Serializable { Object execute(); }

22 TaskMillis //executeはObjectを返しますので、プリミティブ・タイプのlongではなく、そのラッパーのLongが返り値
public class TaskMillis implements Task { public Object execute() { //executeはObjectを返しますので、プリミティブ・タイプのlongではなく、そのラッパーのLongが返り値 return new Long(System.currentTimeMillis()); }

23 ComputeEngine Compute engine = new ComputeEngine();
public class ComputeEngine extends UnicastRemoteObject implements Compute { public ComputeEngine() throws RemoteException { super(); } public Object executeTask(Task t) { return t.execute(); public static void main(String[] args) { if (System.getSecurityManager() == null) { System.setSecurityManager(new RMISecurityManager()); try { String name = "rmi://localhost/Compute"; Compute engine = new ComputeEngine(); Naming.rebind(name, engine); System.out.println("ComputeEngine bound"); } catch (Exception e) { System.err.println("ComputeEngine exception: " + e.getMessage()); e.printStackTrace();

24 ComputeClientMillis public class ComputeClientMillis {
static void main(String[] args) { if (System.getSecurityManager() == null) { System.setSecurityManager(new RMISecurityManager()); } try { String name = "rmi://localhost/Compute"; Compute comp = (Compute) Naming.lookup(name); // ここからは、処理に応じて変わる。これは、サーバ時計を表示する例。 Long millis = (Long) (comp.executeTask(new TaskMillis())); System.out.println("Remote Date : " + new Date(millis.longValue())); System.out.println("Local Date : " + new Date()); } catch (Exception e) { System.err.println("ComputePi exception: " + e.getMessage()); e.printStackTrace();

25 実行コマンド rmic -v1.2 jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeEngine
jar cvf 2rmiCompute.jar jp\ac\sfc\keio\sfc\tailor\rmi\compute\ start rmiregistry java -Djava.rmi.server.codebase= -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeEngine java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeClientMillis

26 ComputeClientPrime ublic class ComputeClientPrime {
public static void main(String[] args) { if (System.getSecurityManager() == null) { System.setSecurityManager(new RMISecurityManager()); } try { String name = "rmi://localhost/Compute"; Compute comp = (Compute) Naming.lookup(name); TaskPrime taskprime =new TaskPrime(); //taskprime.setPrimenum("69143"); taskprime.setPrimenum(args[0]); // ここからは、処理に応じて変わる。これは、サーバ時計を表示する例。 Boolean ansprime = (Boolean) (comp.executeTask(taskprime)); System.out.println("prime : " + ansprime.booleanValue()); } catch (Exception e) { System.err.println("ComputePi exception: " + e.getMessage()); e.printStackTrace();

27 TaskPrime package jp.ac.sfc.keio.sfc.tailor.rmi.compute;
import java.math.BigInteger; public class TaskPrime implements Task { String primenum="69127"; public Object execute() { return new Boolean(getPrime(primenum)); } private boolean getPrime(String prime) { BigInteger n = new BigInteger(prime); if (n.compareTo(BigInteger.ZERO) <= 0) { System.out.println("自然数を入力して下さい"); System.exit(1); System.out.println("入力された数は " + n.toString()); if (n.compareTo(BigInteger.ONE) == 0) { System.out.println("素数ではありません"); return false; else if (n.compareTo(BigInteger.valueOf(2)) == 0) { System.out.println("素数です"); BigInteger r = n.mod(BigInteger.valueOf(2)); if (r.compareTo(BigInteger.ZERO) == 0) { System.out.println("除算可能な数は 2"); System.out.println("素数ではありません"); return false; } BigInteger s = this.bigIntegerSqrt(n); for (BigInteger d = BigInteger.valueOf(3); d.compareTo(s) <= 0; d = d.add(BigInteger.valueOf(2))) { r = n.mod(d); System.out.println("除算可能な数は " + d.toString()); System.out.println("素数です"); return true; public static BigInteger bigIntegerSqrt(BigInteger x){ BigInteger b1 = new BigInteger(x.toString()), b2 = (b1.pow(2).add(x)).shiftRight(1).divide(b1); while(b2.compareTo(b1) < 0){ b1 = new BigInteger(b2.toString()); b2 = (b1.pow(2).add(x)).shiftRight(1).divide(b1); return b1; public String getPrimenum() { return primenum; public void setPrimenum(String primenum) { this.primenum = primenum;

28 素数計算をさせる java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeClientPrime 69143 java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeClientPrime 69149 java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeClientPrime 69151 java -Djava.security.policy=securitypolicy.txt jp.ac.sfc.keio.sfc.tailor.rmi.compute.ComputeClientPrime 69157

29

30


Download ppt "Java Distributed Objects 1"

Similar presentations


Ads by Google