美文网首页
XPC 学习笔记

XPC 学习笔记

作者: 小如99 | 来源:发表于2019-11-07 11:48 被阅读0次

    XPC :管理安全的进程间通信。

    注:我只知道 P: process C: communication不知道X的全称是什么,希望知道的小伙伴告知我一下,谢谢~

    经过两天的学习我的理解如下:

    1. XPC分Client和Service端,Client在主进程,Service在子进程,有多少个service就可以开多少个进程。

    2. 在一个App中Client在main project中,Service在新建的target中。

    3. Client和Service通过NSXPCConnect类沟通。

       NSXPCConnection:
       即两个进程之间的双向通信信道。
       这个类是创建和配置两个进程之间的通信机制的主要方法。
       每个进程都有一个此类的实例来表示通信通道中的端点。
      

    NSXPCConnect类常用的属性有:remoteObjectInterface、exportedObject、exportedInterface、remoteObjectProxy等

    1. Client和Service端都有一个NSXPCConnect类对象,假如分别为connection和newconnection,这两个对象不为同一个对象,即便代码里写的好像newconnection是service端拦截的connection对象一样,但他们的指针地址不同,故为两个对象,由此在设置remoteObjectInterface、exportedObject、exportedInterface、remoteObjectProxy这四个属性的时候一定要分清楚,connection和newconnection分别设置的是Client端和Service端。这里容易晕。
    Xpc.002.jpeg

    就这代码看这个图片要好理解一些:
    Client端的.h文件

    @interface XpcClient : NSObject<XpcClientProtocol>
    @end
    

    Client端的.m文件设置connection的代码

    _connectionToService.remoteObjectInterface = [NSXPCInterface interfaceWithProtocol:@protocol(XpcServiceProtocol)];
    _connectionToService.exportedObject = self;
    _connectionToService.exportedInterface = [NSXPCInterface interfaceWithProtocol:@protocol(XpcClientProtocol)];
    [_connectionToService resume];
        
     /*
     [_connectionToService remoteObjectProxy] 返回 <__NSXPCInterfaceProxy_XpcServiceProtocol: 0x600002110aa0>对象
    调用service端实现XpcServiceProtocol协议的类的方法(即调用XpcService.m的方法)
    */
     [[_connectionToService remoteObjectProxy] upperCaseString:@"hello" withReply:^(NSString *aString) {
            // We have received a response. Update our text field, but do it on the main thread.
      NSLog(@"result from server is: %@", aString);
    }];
    

    Service端的main.m设置connection代码:

    - (BOOL)listener:(NSXPCListener *)listener shouldAcceptNewConnection:(NSXPCConnection *)newConnection {
        // This method is where the NSXPCListener configures, accepts, and resumes a new incoming NSXPCConnection.
        
        // Configure the connection.
        // First, set the interface that the exported object implements.
        newConnection.exportedInterface = [NSXPCInterface interfaceWithProtocol:@protocol(XpcServiceProtocol)];
        
        // Next, set the object that the connection exports. All messages sent on the connection to this service will be sent to the exported object to handle. The connection retains the exported object.
        XpcService *exportedObject = [XpcService new];
        newConnection.exportedObject = exportedObject;
        newConnection.remoteObjectInterface = [NSXPCInterface interfaceWithProtocol:@protocol(XpcClientProtocol)];
        exportedObject.xpcConnect = newConnection;
        // Resuming the connection allows the system to deliver more incoming messages.
        [newConnection resume];
        
        // Returning YES from this method tells the system that you have accepted this connection. If you want to reject the connection for some reason, call -invalidate on the connection and return NO.
        return YES;
    }
    
    

    想要看更多的附上demo地址:
    demo

    画了一个简单的UML图:


    xpc.png

    附上Apple官网各个类的中文翻译:

    XPC Client的功能如下:
    NSXPCProxyCreating
    用于新代理对象的创建方法。
    NSXPCConnection
    两个进程之间的双向通信信道
    NSXPCInterface
    可发送到导出对象或远程对象代理的接口
    
    XPC Services的功能如下:
    NSXPCListener
    等待新的connections,配置它们,并决定是否响应这些connections的listener。
    NSXPCListenerDelegate
    委托给XPC listener用于决定是否响应新连接的协议。
    NSXPCListenerEndpoint
    命名特定xpc侦听器的一个对象。
    

    相关文章

      网友评论

          本文标题:XPC 学习笔记

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