WO2015135221A1 - 基于Android的应用层的进程间通信方法及基础应用通信系统 - Google Patents
基于Android的应用层的进程间通信方法及基础应用通信系统 Download PDFInfo
- Publication number
- WO2015135221A1 WO2015135221A1 PCT/CN2014/073496 CN2014073496W WO2015135221A1 WO 2015135221 A1 WO2015135221 A1 WO 2015135221A1 CN 2014073496 W CN2014073496 W CN 2014073496W WO 2015135221 A1 WO2015135221 A1 WO 2015135221A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- application
- ipcservice
- daemon
- communication
- service
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/50—Network services
- H04L67/51—Discovery or management thereof, e.g. service location protocol [SLP] or web services
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04W—WIRELESS COMMUNICATION NETWORKS
- H04W4/00—Services specially adapted for wireless communication networks; Facilities therefor
- H04W4/50—Service provisioning or reconfiguring
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04W—WIRELESS COMMUNICATION NETWORKS
- H04W4/00—Services specially adapted for wireless communication networks; Facilities therefor
- H04W4/60—Subscription-based services using application servers or record carriers, e.g. SIM application toolkits
Definitions
- the present invention relates to the field of data communications, and in particular, to an application communication technology based on Android. Background technique
- Android devices represented by smart phones have mushroomed and prospered. Since the launch of the Android system, it has gradually expanded its market share with obvious advantages. In China, the application of Android system has not only been limited to the mobile phone industry. In recent years, it has rapidly expanded to adjacent areas, such as tablet PCs, car systems, TV STBs, Smart appliances, intelligent conference systems, etc.
- each resource module After adopting the SOCKET mechanism, the coupling of each resource module can be reduced.
- the independent module can implement an independent resource interface, so that the system can still operate normally after a module crashes.
- due to the versatility of the SOCKET interface its transmission efficiency is low and the overhead is large. It is not suitable for real-time communication between multiple processes, and is more suitable for data transmission and communication between different machines.
- each module After adopting the SOCKET mechanism, each module needs a port number to communicate with each other, so that when the third-party application is integrated, the port number needs to be assigned, and if each system application needs to communicate with the third-party application, It is possible to communicate after going to the port number of each application, which greatly hinders the development of the software platform and the access of rich third-party applications. So use the SOCKET mechanism to build the system.
- the mechanism of the level application has obvious drawbacks.
- the main object of the present invention is to provide an Android-based application communication scheme.
- the present invention proposes an inter-process communication method based on the application layer of Android, creating a framework encapsulation Application in which a system-level application and a user application communicate with each other, and virtualizing as a client; creating a daemon IPCService for the process
- the communication service is virtualized as the server side; the application registers the binding with the IPCService, and each of the applications implements communication between the applications through the IPCService.
- the present invention proposes a basic application communication system based on Android, which includes:
- Application a framework package for system-level applications and user applications to communicate with each other, virtual as a client
- the daemon IPCService used for interprocess communication services, virtual for the server;
- the application registers a binding with the IPCService, and each of the applications implements communication between the applications through the IPCService.
- the present invention proposes an intelligent terminal that uses the above-described Android-based application layer-to-process communication method or basic application communication system to realize mutual communication of applications.
- the present invention proposes a smart television terminal which is solidified with the above-described Android-based basic application communication system.
- the present invention proposes an electronic data carrier storing a computer program for implementing the above-described Android-based application layer inter-process communication method.
- the communication scheme of the Android application of the invention is composed of a specific application and a daemon process.
- a set of communication mechanism can be established quickly and safely, and communication of each system application is more convenient.
- the system can easily and easily integrate third-party applications, and greatly facilitate the development of free developers on the system platform This will not only enrich the application of the system platform, but also reduce the application development cost.
- the invention is based on the communication scheme of the Android application, quickly establishes a set of communication mechanism between each application on the Android system, and realizes communication not only between the application processes but also to an Activity or Service of the application. To make interprocess communication less mysterious and difficult to apply.
- the development of the application on the communication system based on the solution will be very simple, and the application can be implemented as an independent Android application, which can form a system, a suite form to the user, more concise and orderly, user experience I don't feel a lot of apps, it's messy.
- FIG. 1 is a schematic diagram of system communication of a basic application communication system of the present invention
- FIG. 1 Schematic diagram of the Binder mechanism in the present invention
- FIG. 3 shows the process of binding an Application IPCService service in the embodiment of the present invention
- FIG. 4 is a schematic diagram of a registration mechanism of an embodiment of the present invention.
- FIG. 5 is a schematic structural diagram of a data packet according to an embodiment of the present invention.
- FIG. 6 is a schematic diagram of a process of receiving data according to an embodiment of the present invention.
- FIG. 7 is a schematic flowchart of sending data according to an embodiment of the present invention.
- FIG. 8 is a flow chart of communication of an Activity and a Service according to an embodiment of the present invention.
- Application mainly refers to a specific application or Android Application object.
- this application mainly refers to the system level (that is, the basic application on which user applications can be developed).
- the Application layer which refers to the application layer, contains Application and IPCService.
- IPCService the daemon, used for interprocess communication services.
- Activity Android application component that provides a screen that users can use to interact.
- Service service one of the Android components, runs an application component that performs time-consuming operations in the background without a user interface.
- ServiceManager service management an important process of Android, used to manage the services in the system.
- the invention adopts the communication mode of C/S (Client/Server, client/server).
- C/S Client/Server, client/server.
- Fig. 1 is composed of Application and IPCService, registers with IPCService through Application, and then implements each Application. The process of communicating with each other.
- the inter-process communication method of the Android-based application layer in this example is implemented by creating an Android-based basic application (referred to as all system applications and user applications) communication system, including:
- Binding service mainly refers to the Application layer in the Activity and Service in oncreated () (one of the seven life cycle related functions, is the first time the activity is executed, mainly to initialize some variables;) Send a request for the IPCService service to the ServiceManager. Please use the Binder mechanism of Android as shown in Figure 2 and Figure 3.
- IPCService requests to create a Binder entity First, IPCService applies to the Binder driver to create an IPCService Binder entity in its own process;
- the Binder driver creates the IPCService service:
- the Binder driver creates the IPCService Binder entity node and the Binder reference for the IPCService in the kernel. It actually informs the ServiceManager to register a service called IPCService for the interprocess communication service.
- Association lookup table After the ServiceManager receives the data packet, it extracts the IPCService name and reference from it, and fills in a lookup table;
- Application applies for and obtains the binding service of IPCService: Application initiates a request to the ServiceManager to apply for the IPCService service, then the ServiceManager can find the reference of IPCService in the lookup table, and IPCService returns the Binder reference to Application.
- each Application layer saves each instance object inherited from Sky Activity and SkyService in a corresponding table to receive data. It can be distributed to each specific Activity and Service object. By saving the specific instance object, the data can be accurately transferred to the specified Activity and the specified Service of the specified application, and the logical structure of the accurate transmission communication is realized.
- the two tables used in this example Specifically, each Application stores a corresponding table, which is a collection of its own Service and Activity; and IPCService's lookup table, a communication platform, saves all of the platform Application reference, etc. This is completely absent in the prior art solutions.
- Android itself can implement Activity to Activity or Service communication, but its shortcomings are too obvious. It implements process-to-process communication, adopts a process-to-process table, and if there are multiple services in one process. And activity, there is no way to achieve specific communication or activity communication, so only point-to-point communication can be achieved, the communication data can only be the basic type of data structure (int, String, Li S t, etc.); After saving the concrete instance object, it is equivalent to placing all the applications on a communication platform, not only peer-to-peer, but also communicating with each other at multiple points.
- Binder is used to communicate between processes, and the reference to the return must be IBinder. If Application A needs to communicate with the application Application B, the IBinder of Application B must be saved. If Application A is to communicate with Application C, Then Application A also needs to save Application C's IBinder. The more points that Application A needs to communicate, the more times Application A needs to bind, the more references are saved, and if these applications need to communicate with each other, then Every application has to save all references except itself, which is very cumbersome and complicated. And subject to the interface of the Binder mechanism, the structure of the communication data is also limited to the basic data structure of Android communication, and basically uses String to communicate.
- the core of the Binder mechanism is the communication between two processes or two components. After the package and utilization of this case, it can be oriented to one platform, and the complexity of upper-layer application development is greatly reduced, but at the same time, multiple points of the upper layer application are realized. Communication. After the byte stream is directly used in this case, the user can adopt any data structure, and only need to ensure that both sides of the communication can be serialized and deserialized normally, and many complex data structures of Java also support byte serialization and deserialization. , greatly reducing the performance consumption of the data structure to String conversion.
- Send data the data to be communicated by the Application is encapsulated into the data structure as shown in FIG. 5, which is mainly composed of a header header and a data body, and the header mainly includes the sender identity information from, the destination to, the communication command.
- Cmd priority priority, reply to needack and other fields; body is mainly the byte stream of the message; the meaning of each field of the header is as follows:
- 3.1. from mainly contains the package name, Activity or Service name of the sending data party, which is automatically assembled and obtained by the Application layer.
- the specific user can not care;
- 3.2. to mainly refers to the data to be sent to an Activity or Service in a package, which is passed by the user who specifically sends the command;
- priority mainly refers to the priority of the command, and distinguishes the priority when the IPCService processes the command;
- the assembled data packet can be directly sent to the IPCService, and then processed and forwarded by the IPCService. Moreover, in this case, the data is re-encoded and compressed in the form of a byte stream.
- the byte stream can be directly transmitted; whereas most of the prior art interfaces are characters. Strings, or a negotiated data structure, are not universal and flexible. Byte is the basic unit of transmission. The user (that is, the user who uses this communication) has the right to determine its own data structure and serialization mode.
- the user's requirements for serialization and other operations are limited. After opening the byte stream to the user, the user can decide which way to serialize according to his own needs, which way to deserialize, not limited to the serialization of Java, or the serialization of Android, or A custom serialization, etc., allows the user to adopt a more diverse data structure, which is no longer limited to the underlying data structure, breaking the communication mode of the fixed data structure.
- the received data packet is dropped into a command pool, which is a package for the existing Java thread pool. Mainly implements the control processing for the request; the command pool is dedicated to processing the received data packet, and a thread will continuously fetch the data packet from the command pool, parse the header of the data packet, and then according to the specific Activity name or Service name, query the specific Activity instance from the corresponding saved table, and then hand it to the specific Activity instance to process the specific data package.
- IPCService manages all the services provided by Application, that is, all the Binders that receive Data by Application. IPCService saves the package name of all communication applications while managing all Application services, and corresponds the application package name to Binder reference. It forms a lookup table and implements any packet-to-packet communication. This greatly facilitates the integration and development of third-party applications, because it is no longer limited to the communication of existing system applications, and extends the scope to any application that uses this framework, whether it is self-developed or a third party. Integrated.
- the IPCService responds to all Application requests and assigns corresponding services to them.
- the IPCService fetches the requested Binder reference according to the package name, and then calls the Binder interface to forward the data.
- IPCService sends data to Application B.
- IPCService receives the request from Application A, it processes the header of the sent packet, parses the object of to, that is, Application B, and then extracts Application B from the saved lookup table.
- the Binder reference then call Application B's reference, so the data is sent to Application B. If there is no object sent to the lookup table, it means that Application B is not started, and the data packet can be directly discarded, because all applications that inherit from the communication mechanism will initiate registration and binding services to IPCService at startup.
- the application request is easy to manage.
- the connection to the IPCService can be established, and the IPCService function can be implemented in a very small amount of time.
- the communication scheme based on the Android system-level application of this example is composed of a specific application and a daemon process, and solves some drawbacks of inter-process communication of each application on the Android system, and can quickly and safely establish itself.
- a set of communication mechanisms and not only to achieve communication between the various application processes, but also to the application of an Activity or Service, so that inter-process communication is no longer so mysterious and application difficulties.
- it is very simple to develop an application on a communication system based on the solution, and it can realize that the application is no longer an independent Android application, and can form a system, a suite form is presented to the user, so that the user does not I will feel that the application is very messy.
- a unique system can be made more simple and open. And very good scalability, no longer a single system, but an open platform.
- Activity and P Service are initialized and saved in a corresponding table by Application in OnCreateO. If there are 2 Activity and 3 Service in the application A, then the corresponding relationship of the saved table is as follows. All the Activity and Service of the application are saved in two HashMaps, forming an application corresponding table, including the application. The package name and class name of all base components (the order of key and value can be changed).
- the table records all the activities and services created by the process that need to communicate; when the Activity and Service are initialized, the Application takes its own instance package name as a parameter,
- the ServiceManager sends a request to apply for the IPCService service; after receiving the request, the ServiceManager returns a reference to the IPCService to the Application; and at the same time, the IPCService saves the reference of the binder (that is, Application) in a lookup table,
- the table includes information about the bearer's package name, the services provided, and so on.
- a hashmap ⁇ Stmg, ICmdReceiver> consisting of an instance of the ICmdReceiver interface returned by the package name corresponding to the binder application forms a lookup table in the IPCService.
- the reason why the communication framework is encapsulated in the application layer is that on the basis of Android, the first component of the application runtime will create a process for the application, and first instantiate the specified
- Blocking the call mode the main process is to send commands and data to the receiver, while waiting for the return of the receiver to process, at this point the sender's thread is blocked until the call returns.
- the non-blocking mode when the command and data are sent to the receiver, the command is processed by the thread in the framework first, and the sender does not wait for the command to return; the thread pool in the framework will thread according to the priority and time of the command. All commands in the pool are handed over to the receiver in order of priority.
- this example has been applied in the process of reconstruction and optimization of the Tianci system.
- the solution proposed by the present invention can be applied not only to television, but also to any Android-based system.
- the program conducts inter-process communication and in-depth development and system development of the system.
- the solution is re-encapsulated and innovated on the basis of the communication mechanism of the Android system, which makes the development of the application simpler, and makes the application differentiation work for different platforms easier to carry out, so that the platform is simplified and unified. Apply a diversified goal. In short, this solution realizes the simplicity and openness of system application communication.
- Embodiment 3 realizes the simplicity and openness of system application communication.
- This example is an intelligent terminal, in which an inter-process communication method based on the Android-based application layer in the first embodiment or a program of the basic application communication system is built in. By enabling the program, each application in the intelligent terminal can communicate with each other. . It realizes the simplicity and openness of system application communication, and is easy for third-party application development to achieve the goal of diversification of applications.
- Smart terminals include, but are not limited to, smart TVs, smart phones, personal computers, tablets, or cloud system personal terminals.
- the example is a smart TV terminal, wherein the program for implementing the inter-process communication method of the Android-based application layer in the first embodiment or the basic application communication system is solidified.
- the program for implementing the inter-process communication method of the Android-based application layer in the first embodiment or the basic application communication system is solidified.
- each application of the intelligent terminal can be realized. Communication.
- this basic application communication system it is easy for third parties to develop user applications and achieve the goal of diversification of applications.
- third-party developers don't even have to understand the framework, they only need two steps to call some interfaces of the system.
- the third-party applications such as iQiyi and Youpeng in the Skyworth Tianci system can easily and quickly realize the same cloud collection and other functions for different applications.
- Embodiment 5 Embodiment 5
- the example is a computer-readable electronic data carrier, including but not limited to an optical disk, a flash disk, a hard disk, a network disk, etc., in which an inter-process communication method for implementing the Android-based application layer in the first embodiment is stored or A computer program for a basic application communication system. It can be used for personalized upgrade of operating system based on Android-based smart terminal, and it can also be used for application development by third parties.
- Smart terminals include, but are not limited to, smart TVs, smart phones, personal computers, tablets, or cloud system personal terminals.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
- Mobile Radio Communication Systems (AREA)
Abstract
Description
Claims
Priority Applications (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US14/906,563 US9923992B2 (en) | 2014-03-12 | 2014-03-17 | Inter-process communication method based on application layer of android and basic application communication system |
| AU2014386583A AU2014386583B8 (en) | 2014-03-12 | 2014-03-17 | Inter-process communication method based on application layer of android and basic application communication system |
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN201410090696.1A CN103902390B (zh) | 2014-03-12 | 2014-03-12 | 基于Android的应用层的进程间通信方法及基础应用通信系统 |
| CN201410090696.1 | 2014-03-12 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2015135221A1 true WO2015135221A1 (zh) | 2015-09-17 |
Family
ID=50993728
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2014/073496 Ceased WO2015135221A1 (zh) | 2014-03-12 | 2014-03-17 | 基于Android的应用层的进程间通信方法及基础应用通信系统 |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US9923992B2 (zh) |
| CN (1) | CN103902390B (zh) |
| AU (1) | AU2014386583B8 (zh) |
| WO (1) | WO2015135221A1 (zh) |
Cited By (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN113326067A (zh) * | 2021-05-11 | 2021-08-31 | 深圳市捷视飞通科技股份有限公司 | 命令执行方法、系统、计算机设备和存储介质 |
| CN113378166A (zh) * | 2021-06-25 | 2021-09-10 | 北京百度网讯科技有限公司 | 调用操作系统的应用程序接口api的方法和装置 |
| CN115098076A (zh) * | 2022-07-18 | 2022-09-23 | 扬州航盛科技有限公司 | 一种用于Android系统的代码生成方法 |
Families Citing this family (39)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN103826156B (zh) * | 2014-03-17 | 2017-09-19 | 华为技术有限公司 | 终端遥控方法、机顶盒、移动终端及网页服务器 |
| CN104486389B (zh) * | 2014-12-04 | 2018-02-13 | 上海斐讯数据通信技术有限公司 | 一种窗口管理服务与app间的通信通道建立方法和系统 |
| CN104461555A (zh) * | 2014-12-22 | 2015-03-25 | 浪潮软件集团有限公司 | 一种Home应用中直接操控各个播放应用的方法 |
| US9674465B2 (en) * | 2015-06-03 | 2017-06-06 | Omnivision Technologies, Inc. | Non-visible illumination scheme |
| CN106469089A (zh) * | 2015-08-21 | 2017-03-01 | 百度在线网络技术(北京)有限公司 | 用于使得终端上的非系统应用实现系统级别接口调用的方法及装置、终端 |
| CN105204951A (zh) * | 2015-10-10 | 2015-12-30 | 上海斐讯数据通信技术有限公司 | 一种安卓系统中Activity间通信的方法和装置 |
| CN105354081B (zh) * | 2015-11-26 | 2018-06-12 | 北京奇虎科技有限公司 | 同步绑定服务的方法及装置 |
| CN105550049A (zh) * | 2015-12-16 | 2016-05-04 | 汉柏科技有限公司 | 一种通信系统及其使用方法 |
| CN106027365A (zh) * | 2016-04-29 | 2016-10-12 | 乐视控股(北京)有限公司 | 一种信息交互的方法及装置 |
| CN106250165A (zh) * | 2016-06-12 | 2016-12-21 | 杭州无量网络科技有限公司 | 应用程序组件管理方法及系统 |
| CN106354573A (zh) * | 2016-08-29 | 2017-01-25 | 汉柏科技有限公司 | 一种基于优先级队列的进程间通信方法及装置 |
| CN106547631B (zh) * | 2016-09-26 | 2021-04-20 | 腾讯科技(深圳)有限公司 | 基于安卓平台的跨进程通信方法和装置 |
| CN106547567A (zh) * | 2016-11-25 | 2017-03-29 | 山东大学 | 一种安卓系统中多业务下进程间通信系统及其实现方法 |
| CN106708634B (zh) * | 2016-12-09 | 2020-08-25 | 福建省天奕网络科技有限公司 | Vr应用设备与厂家设备的通讯方法及其系统 |
| CN106933636B (zh) * | 2017-03-16 | 2020-08-18 | 北京奇虎科技有限公司 | 启动插件服务的方法、装置和终端设备 |
| CN108804236B (zh) * | 2017-05-04 | 2022-05-03 | Tcl科技集团股份有限公司 | 一种aidl文件的共享方法及系统 |
| CN107172197A (zh) * | 2017-06-26 | 2017-09-15 | 努比亚技术有限公司 | 一种业务处理方法、系统及设备 |
| FR3069669B1 (fr) * | 2017-07-25 | 2019-10-18 | Worldline | Un systeme de communication et un procede d'acces et de deploiement des microservices ephemeres sur une plateforme heterogene |
| CN108829391B (zh) * | 2018-05-04 | 2021-08-31 | 武汉极意网络科技有限公司 | 一种Fragment中控件识别方法及系统 |
| CN109062705B (zh) * | 2018-06-29 | 2021-06-01 | Oppo(重庆)智能科技有限公司 | 进程间通信的监控方法、电子装置以及可读存储介质 |
| CN109117340B (zh) * | 2018-06-29 | 2022-03-29 | Oppo(重庆)智能科技有限公司 | 一种移动终端及其进程间通信的监控方法、存储介质 |
| CN109117278B (zh) * | 2018-06-29 | 2021-02-26 | Oppo(重庆)智能科技有限公司 | 一种移动终端及其进程间通信的限制方法、存储介质 |
| CN109144745B (zh) * | 2018-06-29 | 2021-04-27 | Oppo(重庆)智能科技有限公司 | 进程间通信的监控方法、电子装置以及可读存储介质 |
| CN109634573A (zh) * | 2018-12-18 | 2019-04-16 | 宁夏隆基宁光仪表股份有限公司 | Android操作系统App开发方法、装置及介质 |
| CN109933443B (zh) * | 2019-03-07 | 2021-06-25 | 腾讯科技(深圳)有限公司 | 进程间通信方法、装置、计算机设备及可读存储介质 |
| CN110121197A (zh) * | 2019-06-19 | 2019-08-13 | 深圳市沃特沃德股份有限公司 | 多卡通信系统、方法及装置 |
| CN110275790A (zh) * | 2019-06-26 | 2019-09-24 | 北京金山安全软件有限公司 | 应用程序中的进程间通信同步回调方法、系统及相关设备 |
| CN110784404B (zh) * | 2019-10-08 | 2022-03-25 | 烽火通信科技股份有限公司 | 一种多网口设备应用程序发包策略的调整方法及装置 |
| CN112947993B (zh) * | 2019-12-31 | 2021-12-07 | 深圳市明源云链互联网科技有限公司 | 系统框架的重构方法、装置、电子设备及存储介质 |
| CN111339541B (zh) * | 2020-02-20 | 2022-08-02 | Oppo广东移动通信有限公司 | 基于binder驱动的进程间通信IPC机制的复用方法及装置 |
| CN111443961B (zh) * | 2020-03-24 | 2023-04-11 | 广州方硅信息技术有限公司 | 终端设备及其跨进程通信方法 |
| CN111640191B (zh) * | 2020-06-05 | 2023-04-21 | 南京爱奇艺智能科技有限公司 | 基于vr一体机的投录屏画面采集处理方法 |
| CN111756846B (zh) * | 2020-06-24 | 2023-09-29 | 杭州安森智能信息技术有限公司 | 一种轻量型机器人跨进程通信的方法 |
| CN112783675B (zh) * | 2021-01-29 | 2023-08-22 | 中汽创智科技有限公司 | Ipc通信方法 |
| CN114726905B (zh) * | 2022-03-07 | 2023-09-15 | 中科创达软件股份有限公司 | 一种Tbox网络接入Android系统的方法、装置、设备及存储介质 |
| CN115437706A (zh) * | 2022-08-17 | 2022-12-06 | 中国银联股份有限公司 | 一种应用软件中服务能力调用方法和装置 |
| CN116775161B (zh) * | 2023-07-12 | 2024-10-15 | 深圳技威时代科技有限公司 | 一种Android平台跨进程音视频加载方法 |
| CN119536966A (zh) * | 2023-08-29 | 2025-02-28 | 华为技术有限公司 | 系统服务的控制方法、电子设备及可读存储介质 |
| CN119556994A (zh) * | 2023-09-01 | 2025-03-04 | 中兴终端有限公司 | 双系统控制方法、电子设备和计算机可读存储介质 |
Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN101141742A (zh) * | 2007-10-12 | 2008-03-12 | 中兴通讯股份有限公司 | 一种终端的应用通信方法 |
| WO2011032453A1 (zh) * | 2009-09-16 | 2011-03-24 | 研祥智能科技股份有限公司 | 一种cpci热插拔系统 |
| CN102833080A (zh) * | 2011-06-15 | 2012-12-19 | 康佳集团股份有限公司 | 一种应用软件的进程间通信方法和系统 |
Family Cites Families (9)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN101739300A (zh) * | 2008-11-18 | 2010-06-16 | 中兴通讯股份有限公司 | 一种多媒体终端进程间通讯的方法和系统 |
| US9389877B2 (en) * | 2009-07-20 | 2016-07-12 | Google Technology Holdings LLC | Multi-environment operating system |
| WO2012044546A2 (en) * | 2010-10-01 | 2012-04-05 | Imerj, Llc | Auto-waking of a suspended os in a dockable system |
| CN102520936B (zh) * | 2011-11-30 | 2017-02-08 | 厦门雅迅网络股份有限公司 | 一种在Android上实现Socket通讯服务共享的方法 |
| CN102591726B (zh) * | 2011-12-31 | 2014-04-09 | 青岛海信宽带多媒体技术有限公司 | 一种多进程通信方法 |
| US9063792B2 (en) * | 2012-04-18 | 2015-06-23 | Entrata Systems, Inc. | Managing mobile execution environments |
| US9405562B2 (en) * | 2012-10-18 | 2016-08-02 | Broadcom Corporation | Set top box application in a concurrent dual environment |
| CN103593225B (zh) * | 2013-10-30 | 2016-10-05 | 浙江大学 | 移动虚拟化场景中多Android系统复用Binder IPC机制的方法 |
| US9361163B2 (en) * | 2013-11-28 | 2016-06-07 | Good Technology Corporation | Managing containerized applications on a mobile device while bypassing operating system implemented inter process communication |
-
2014
- 2014-03-12 CN CN201410090696.1A patent/CN103902390B/zh active Active
- 2014-03-17 WO PCT/CN2014/073496 patent/WO2015135221A1/zh not_active Ceased
- 2014-03-17 AU AU2014386583A patent/AU2014386583B8/en active Active
- 2014-03-17 US US14/906,563 patent/US9923992B2/en active Active
Patent Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN101141742A (zh) * | 2007-10-12 | 2008-03-12 | 中兴通讯股份有限公司 | 一种终端的应用通信方法 |
| WO2011032453A1 (zh) * | 2009-09-16 | 2011-03-24 | 研祥智能科技股份有限公司 | 一种cpci热插拔系统 |
| CN102833080A (zh) * | 2011-06-15 | 2012-12-19 | 康佳集团股份有限公司 | 一种应用软件的进程间通信方法和系统 |
Cited By (5)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN113326067A (zh) * | 2021-05-11 | 2021-08-31 | 深圳市捷视飞通科技股份有限公司 | 命令执行方法、系统、计算机设备和存储介质 |
| CN113326067B (zh) * | 2021-05-11 | 2024-02-06 | 深圳市捷视飞通科技股份有限公司 | 命令执行方法、系统、计算机设备和存储介质 |
| CN113378166A (zh) * | 2021-06-25 | 2021-09-10 | 北京百度网讯科技有限公司 | 调用操作系统的应用程序接口api的方法和装置 |
| CN113378166B (zh) * | 2021-06-25 | 2024-05-31 | 北京百度网讯科技有限公司 | 调用操作系统的应用程序接口api的方法和装置 |
| CN115098076A (zh) * | 2022-07-18 | 2022-09-23 | 扬州航盛科技有限公司 | 一种用于Android系统的代码生成方法 |
Also Published As
| Publication number | Publication date |
|---|---|
| AU2014386583B2 (en) | 2019-02-14 |
| AU2014386583A1 (en) | 2016-02-18 |
| AU2014386583A8 (en) | 2019-02-21 |
| US20160344846A1 (en) | 2016-11-24 |
| US9923992B2 (en) | 2018-03-20 |
| CN103902390B (zh) | 2017-04-19 |
| AU2014386583B8 (en) | 2019-02-21 |
| CN103902390A (zh) | 2014-07-02 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| WO2015135221A1 (zh) | 基于Android的应用层的进程间通信方法及基础应用通信系统 | |
| EP3964953B1 (en) | Containerized vnf deployment method and related device | |
| CN102520936B (zh) | 一种在Android上实现Socket通讯服务共享的方法 | |
| JP7100154B2 (ja) | プロセッサコアのスケジューリング方法、装置、端末及び記憶媒体 | |
| CN101207568B (zh) | 多协议适配器及其对多种业务实现适配处理的方法 | |
| US20200052982A1 (en) | In situ triggered function as a service within a service mesh | |
| CN109815025B (zh) | 一种业务模型调用方法、装置及存储介质 | |
| WO2017049945A1 (zh) | 加速器虚拟化的方法、装置及集中资源管理器 | |
| CN114039930B (zh) | 数据包处理方法及系统 | |
| WO2025002287A1 (zh) | 一种计算资源的提供方法、系统、电子设备及存储介质 | |
| CN112783675A (zh) | Ipc通信方法 | |
| WO2022206770A1 (zh) | 一种设备间应用协同工作的方法及设备 | |
| JP2004310298A (ja) | 情報処理システム、情報処理装置、セッション管理方法及びプログラム | |
| CN114205866A (zh) | 确定性信息上报、下发方法、装置、存储介质及电子设备 | |
| WO2017028399A1 (zh) | 通信数据传输方法及系统 | |
| CN114462388B (zh) | 句柄管理或通信方法、电子设备、存储介质及程序产品 | |
| WO2024099036A1 (zh) | 用于面向服务的网络的装置、方法、设备、及介质 | |
| CN102761545B (zh) | 服务处理方法、服务处理器及服务处理系统 | |
| CN110071839B (zh) | 支持数字信号处理器的corba通信装置 | |
| CN109669793B (zh) | 中间件进程内对象调用方法 | |
| CN120448308A (zh) | 基于rdma的数据传输方法、设备、存储介质及程序产品 | |
| CN114356602A (zh) | 一种基于arinc653分区的rpc通信方法 | |
| WO2024145862A1 (zh) | 一种数据传输方法及相关装置 | |
| CN100391150C (zh) | 数据传送装置及数据传送方法 | |
| CN107463438B (zh) | 用于多Openstack环境的信息处理方法、装置和系统 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 14885296 Country of ref document: EP Kind code of ref document: A1 |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 14906563 Country of ref document: US |
|
| ENP | Entry into the national phase |
Ref document number: 2014386583 Country of ref document: AU Date of ref document: 20140317 Kind code of ref document: A |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 30.01.2017) |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 14885296 Country of ref document: EP Kind code of ref document: A1 |
