-
概念解釋
RPC(Remote Procedure Call Protocol)——遠(yuǎn)程過程調(diào)用協(xié)議秩仆,它是一種通過網(wǎng)絡(luò)從遠(yuǎn)程計(jì)算機(jī)程序上請求服務(wù)贮匕,而不需要了解底層網(wǎng)絡(luò)技術(shù)的協(xié)議冈爹。RPC采用客戶機(jī)/服務(wù)器模式。請求程序就是一個客戶機(jī)奋构,而服務(wù)提供程序就是一個服務(wù)器手趣。首先晌该,客戶機(jī)調(diào)用進(jìn)程發(fā)送一個有進(jìn)程參數(shù)的調(diào)用信息到服務(wù)進(jìn)程,然后等待應(yīng)答信息绿渣。在服務(wù)器端朝群,進(jìn)程保持睡眠狀態(tài)直到調(diào)用信息到達(dá)為止。當(dāng)一個調(diào)用信息到達(dá)中符,服務(wù)器獲得進(jìn)程參數(shù)姜胖,計(jì)算結(jié)果,發(fā)送答復(fù)信息淀散,然后等待下一個調(diào)用信息右莱,最后,客戶端調(diào)用進(jìn)程接收答復(fù)信息档插,獲得進(jìn)程結(jié)果慢蜓,然后調(diào)用執(zhí)行繼續(xù)進(jìn)行。
-
ServerSocket 與 Socket
-
客戶端與服務(wù)端建立連接基本原理
-
客戶端與服務(wù)端建立連接流程
-
ServerSocket
ServerSocket server = new ServerSocket(1234); Socket socket = server.accept();
創(chuàng)建并監(jiān)聽一個端口為1234的ServerSocket對象郭膛,然后調(diào)用了ServerSocket對象的accept()方法晨抡,這個方法的執(zhí)行將使Server端的程序處于阻塞狀態(tài),程序?qū)⒁恢弊枞钡讲蹲降揭粋€來自Client端的請求则剃,并返回一個用于與該Client通信的Socket對象耘柱。此后Server程序只要向這個Socket對象讀寫數(shù)據(jù),就可以實(shí)現(xiàn)向遠(yuǎn)端的Client讀寫數(shù)據(jù)棍现。結(jié)束監(jiān)聽時调煎,關(guān)閉ServerSocket對象
-
Socket
Socket socket = new Socket("127.0.0.1", 1234);
客戶端創(chuàng)建一個socket對象,與服務(wù)端建立連接轴咱,服務(wù)端管理客戶連接請求的任務(wù)由操作系統(tǒng)完成汛蝙,操作系統(tǒng)把連接請求存儲在一個先進(jìn)先出的隊(duì)列中,隊(duì)列長度一般為50朴肺。當(dāng)服務(wù)端連接隊(duì)列長度大于50時窖剑,連接被拒絕。
-
-
動態(tài)代理機(jī)制
java的動態(tài)代理機(jī)制中戈稿,有兩個重要的類和接口西土,Proxy、InvocationHandler鞍盗,他們都在java.lang.reflect包下需了,這個類和接口是在實(shí)現(xiàn)動態(tài)代理過程中必須用到的-
Proxy
Proxy用于創(chuàng)建一個代理類對象跳昼,它提供了許多方法,其中應(yīng)用最多的是 newProxyInstance這個方法肋乍。public static Object newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)
參數(shù)解釋:
loader: 一個ClassLoader對象鹅颊,定義了代理對象是由哪個Classloader對象來加載
interfaces: 一個interface數(shù)組,表示代理我們將為代理對象提供一組什么接口墓造,如果我提供了一組接口堪伍,則代理對象就宣稱實(shí)現(xiàn)了該組接口,這樣我們就能通過代理對象調(diào)用相應(yīng)接口了
h: 一個InvocationHandler對象觅闽,表示動態(tài)代理對象在調(diào)用方法時具體執(zhí)行的對象 -
InvocationHandler
每個動態(tài)代理類都必須實(shí)現(xiàn)InvocationHandler接口帝雇,且每個代理類的實(shí)例都關(guān)聯(lián)到一個InvocationHandler對象,當(dāng)代理對象調(diào)用一個方法時蛉拙,這個方法的調(diào)用會映射到InvocationHandler的invoke方法執(zhí)行public Object invoke(Object proxy, Method method, Object[] args)
參數(shù)解釋:
proxy: 指代代理的真實(shí)對象
method: 指代所要調(diào)用的真實(shí)對象的某個方法
args: 指代調(diào)用真實(shí)對象方法時接受的參數(shù) -
動態(tài)代理示例
-
定義測試接口
public interface TestHello { void hello(String name); void sayGood(); }
-
定義接口實(shí)現(xiàn)
public class TestHelloImpl implements TestHello{ @Override public void hello(String name) { System.out.println("hello " + name); } @Override public void sayGood() { System.out.println("you are the best!"); } }
-
定義動態(tài)代理類
public class MyProxy implements InvocationHandler { private Object proxy; public MyProxy(Object proxy) { this.proxy = proxy; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method.invoke(this.proxy, args); return null; } }
-
模擬代理調(diào)用
public class Client { public static void main(String[] args) { TestHello th = new TestHelloImpl(); MyProxy mp = new MyProxy(th); TestHello thProxy = (TestHello) Proxy.newProxyInstance(mp.getClass().getClassLoader(), th.getClass().getInterfaces(), mp); thProxy.hello("Jerry"); thProxy.sayGood(); } }
-
測試輸出
hello Jerry you are the best!
-
-
-
一個簡單的RPC實(shí)現(xiàn)
-
簡單RPC框架類尸闸,定義服務(wù)注冊方法 export, 服務(wù)消費(fèi)方法 refer
public class RpcFramework { /** * 暴露服務(wù) * * @param service 服務(wù)實(shí)現(xiàn) * @param port 服務(wù)端口 * @throws Exception */ public static void export(final Object service, int port) throws Exception { if (service == null) throw new IllegalArgumentException("service instance == null"); if (port <= 0 || port > 65535) throw new IllegalArgumentException("Invalid port " + port); System.out.println("Export service " + service.getClass().getName() + " on port " + port); ServerSocket server = new ServerSocket(port); for(;;) { try { final Socket socket = server.accept(); new Thread(new Runnable() { @Override public void run() { try { try { ObjectInputStream input = new ObjectInputStream(socket.getInputStream()); try { String methodName = input.readUTF(); Class<?>[] parameterTypes = (Class<?>[])input.readObject(); Object[] arguments = (Object[])input.readObject(); ObjectOutputStream output = new ObjectOutputStream(socket.getOutputStream()); try { Method method = service.getClass().getMethod(methodName, parameterTypes); Object result = method.invoke(service, arguments); output.writeObject(result); } catch (Throwable t) { output.writeObject(t); } finally { output.close(); } } finally { input.close(); } } finally { socket.close(); } } catch (Exception e) { e.printStackTrace(); } } }).start(); } catch (Exception e) { e.printStackTrace(); } } } /** * 引用服務(wù) * * @param <T> 接口泛型 * @param interfaceClass 接口類型 * @param host 服務(wù)器主機(jī)名 * @param port 服務(wù)器端口 * @return 遠(yuǎn)程服務(wù) * @throws Exception */ @SuppressWarnings("unchecked") public static <T> T refer(final Class<T> interfaceClass, final String host, final int port) throws Exception { if (interfaceClass == null) throw new IllegalArgumentException("Interface class == null"); if (! interfaceClass.isInterface()) throw new IllegalArgumentException("The " + interfaceClass.getName() + " must be interface class!"); if (host == null || host.length() == 0) throw new IllegalArgumentException("Host == null!"); if (port <= 0 || port > 65535) throw new IllegalArgumentException("Invalid port " + port); System.out.println("Get remote service " + interfaceClass.getName() + " from server " + host + ":" + port); return (T) Proxy.newProxyInstance(interfaceClass.getClassLoader(), new Class<?>[] {interfaceClass}, new InvocationHandler() { public Object invoke(Object proxy, Method method, Object[] arguments) throws Throwable { Socket socket = new Socket(host, port); try { ObjectOutputStream output = new ObjectOutputStream(socket.getOutputStream()); try { output.writeUTF(method.getName()); output.writeObject(method.getParameterTypes()); output.writeObject(arguments); InputStream is = socket.getInputStream(); ObjectInputStream input = new ObjectInputStream(is); try { Object result = input.readObject(); if (result instanceof Throwable) { throw (Throwable) result; } return result; } finally { input.close(); } } finally { output.close(); } } finally { socket.close(); } } }); } }
-
定義具體接口和實(shí)現(xiàn)
public interface HelloService { String hello(String name); }
public class HelloServiceImpl implements HelloService{ @Override public String hello(String name) { return "hello " + name; } }
-
生成并注冊服務(wù)對象到服務(wù)端
public class RpcProvider { public static void main(String[] args) { try { HelloService service = new HelloServiceImpl(); RpcFramework.export(service, 1235); } catch (Exception e) { e.printStackTrace(); } } }
-
客戶端聲明服務(wù)端定義的服務(wù)對象,使用服務(wù)
public class RpcConsumer { public static void main(String[] args) { try { HelloService service = RpcFramework.refer(HelloService.class, "127.0.0.1", 1235); for (int i = 0; i < Integer.MAX_VALUE; i ++) { String hello = service.hello("World" + i); System.out.println(hello); Thread.sleep(1000); } } catch (Exception e) { e.printStackTrace(); } } }
-
-
注
- 本文多數(shù)內(nèi)容非原創(chuàng)孕锄,僅供學(xué)習(xí)使用吮廉,歡迎指正!
-
參考