美文网首页
dubbo作者实现简易rpc

dubbo作者实现简易rpc

作者: Ace_b90f | 来源:发表于2020-07-09 10:11 被阅读0次

首先定义公共的接口

public interface HelloService {
    String hello(String name);
}

服务提供者进行接口的实现部分

public class HelloServieImpl implements HelloService {
    @Override
    public String hello(String name) {
        return "ace";
    }
}

实现rpc,主要为socket通信和协议的商定

public class LfEasyRpc {

    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("Invaild 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 ex) {
                            ex.printStackTrace();
                        }
                    }
                }).start();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static <T> T refer(final Class<T> interfaceClass, final String host, final int port) throws Exception {
        if (interfaceClass == null) {
            throw new IllegalArgumentException("interfaceClass == 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() {
            @Override
            public Object invoke(Object proxy, Method method, Object[] args) 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(args);
                        ObjectInputStream input = new ObjectInputStream(socket.getInputStream());
                        try {
                            Object result = input.readObject();
                            if (result instanceof Throwable) {
                                throw (Throwable) result;
                            }
                            return result;
                        } finally {
                            input.close();
                        }
                    } finally {
                        output.close();
                    }
                } finally {
                    socket.close();
                }
            }
        });
    }
}

服务提供者暴露需要调用的方法实现

public class RpcProvider {
    public static void main(String[] args) throws Exception {
        HelloService service = new HelloServieImpl();
        LfEasyRpc.export(service, 1234);
    }
}

服务消费者调用rpc

public class RpcConsumer {
    public static void main(String[] args) throws Exception {
        HelloService service = LfEasyRpc.refer(HelloService.class, "127.0.0.1", 1234);
        for (int i = 0; i < Integer.MAX_VALUE; i++) {
            String hello = service.hello(" come on " + i);
            System.out.println(hello);
            Thread.sleep(1000);
        }
    }

}

相关文章

  • dubbo作者实现简易rpc

    首先定义公共的接口 服务提供者进行接口的实现部分 实现rpc,主要为socket通信和协议的商定 服务提供者暴露需...

  • netty4.x学习六使netty实现自己的RPC

    一提到netty实现rpc,就让人情不自禁的想起Dubbo服务间的调用。下面就根据问题实现rpc。 dubbo服务...

  • dubbo源码分析

    dubbo源码中包简介 dubbo-rpc,rpc通讯协议的实现,其中最为核心的就是dubbo协议,以及一些业界主...

  • Dubbo

    Dubbo(服务治理框架) RPC 各服务都要实现rpc协议,才能实现服务间的调用 rpc:远程过程调用协议,是一...

  • 从零开始手写 dubbo rpc 框架

    rpc rpc 是基于 netty 实现的 java rpc 框架,类似于 dubbo。 主要用于个人学习,由渐入...

  • 架构相关文章索引(1)

    Dubbo Dubbo架构设计详解 Dubbo实现RPC调用使用入门 Netty Netty百度百科 通俗地讲,N...

  • 0528--RPC简易实现

    RPC 主要实现远程过程调用 一、实现思路 二、简易实现 RPCServer 接口 RPCServerImpl 实...

  • dubbo 原理解析

    rpc 流程:1、dubbo spi 中的 warp 机制,实现类增强2、dubbo spi 中的自适应机制,通过...

  • RPC框架的最简单实现

    一个最简单的RPC框架实现包含暴露服务、引用服务、Socket通讯三部分。 RPC框架简易实现 接口 接口实现 服...

  • 微服务架构Day30-Dubbo之服务治理

    Dubbo+Kryo实现高速序列化 Dubbo RPC是Dubbo体系中最核心的一种高性能,高吞吐量的远程调用方式...

网友评论

      本文标题:dubbo作者实现简易rpc

      本文链接:https://www.haomeiwen.com/subject/avljcktx.html