我正在开发一个Mac应用程序,我需要实现IPC机制。情景是这样的:
我的应用程序包含两个可执行文件,一个是Native Mac App(NSStatusItem app),另一个是在CPP上编码的终端应用程序。我想在这两个过程之间建立IPC通信。我希望能够发送和接收从CPP到Objective C的消息,反之亦然。
哪种IPC机制更适合这种情况?
此wiki(http://en.wikipedia.org/wiki/Inter-process_communication#Main_IPC_methods)显示,POSIX和Windows支持IPC命名管道。我想澄清一下,如果我使用命名管道(我知道它是单向的),它是否支持Mac和Objective C ..?
[P.S:如果可能,请提供示例代码或链接到C ++中的IPC&目标C)。
答案 0 :(得分:4)
如果您定位到Mac OS X 10.7及更高版本,则可以使用XPC使用Mach的服务连接。
在您的服务器上创建Mach服务,设置一个接受新连接并恢复连接的事件处理程序:
xpc_connection_t conn = xpc_connection_create_mach_service( "com.yourname.product.service", dispatch_get_main_queue(), XPC_CONNECTION_MACH_SERVICE_LISTENER );
xpc_connection_set_event_handler( conn, ^( xpc_object_t client ) {
xpc_connection_set_event_handler( client, ^(xpc_object_t object) {
NSLog( @"received message: %s", xpc_copy_description( object ) );
xpc_object_t reply = xpc_dictionary_create_reply( object );
xpc_dictionary_set_string( reply, "reply", "Back from the service" );
xpc_connection_t remote = xpc_dictionary_get_remote_connection( object );
xpc_connection_send_message( remote, reply );
} );
xpc_connection_resume( client );
}) ;
xpc_connection_resume( conn );
我假设这是在你的Cocoa应用程序中运行,它有一个事件循环。如果没有事件循环,您需要确保有一个正在运行(NSRunloop
,dispatch_main()
,...)
在您的客户端中,您还可以创建没有XPC_CONNECTION_MACH_SERVICE_LISTENER
标志的Mach服务连接,设置事件处理程序然后恢复它。之后,您可以向服务器发送消息并收到答案:
xpc_connection_t conn = xpc_connection_create_mach_service( "com.yourname.product.service", NULL, 0 );
xpc_connection_set_event_handler( conn, ^(xpc_object_t object) {
NSLog( @"client received event: %s", xpc_copy_description( object ) );
});
xpc_connection_resume( conn );
xpc_object_t message = xpc_dictionary_create( NULL, NULL, 0 );
xpc_dictionary_set_string( message, "message", "hello world" );
xpc_connection_send_message_with_reply( conn, message, dispatch_get_main_queue(), ^(xpc_object_t object) {
NSLog( @"received reply from service: %s", xpc_copy_description( object ));
});
dispatch_main();
请注意,要使其工作,您的客户端(可能是您的命令行工具)需要运行一个事件循环才能使其正常工作。在我的例子中,dispatch_main()
。这一开始可能看起来不方便,但这是必要且值得的。
另请注意,我的示例代码错过了所有必要的错误处理。
XPC API是普通的C,因此可以从C,C ++和Objective-C中使用。您只需要使用支持块的编译器。
答案 1 :(得分:3)
Unix域套接字非常适用于此。 http://www.cs.cf.ac.uk/Dave/C/node28.html