WO2013097567A1 - 一种实现开放平台功能扩展的方法及系统 - Google Patents

一种实现开放平台功能扩展的方法及系统 Download PDF

Info

Publication number
WO2013097567A1
WO2013097567A1 PCT/CN2012/085215 CN2012085215W WO2013097567A1 WO 2013097567 A1 WO2013097567 A1 WO 2013097567A1 CN 2012085215 W CN2012085215 W CN 2012085215W WO 2013097567 A1 WO2013097567 A1 WO 2013097567A1
Authority
WO
WIPO (PCT)
Prior art keywords
plug
plugin
open platform
manager
service
Prior art date
Application number
PCT/CN2012/085215
Other languages
English (en)
French (fr)
Inventor
游晶
彭勇
Original Assignee
腾讯科技(深圳)有限公司
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by 腾讯科技(深圳)有限公司 filed Critical 腾讯科技(深圳)有限公司
Priority to US14/126,749 priority Critical patent/US9003431B2/en
Priority to KR1020147001223A priority patent/KR101550555B1/ko
Publication of WO2013097567A1 publication Critical patent/WO2013097567A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/44Arrangements for executing specific programs
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44521Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading
    • G06F9/44526Plug-ins; Add-ons
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/542Event management; Broadcasting; Multicasting; Notifications

Definitions

  • the present invention relates to the field of computers, and in particular, to a method and system for implementing an extended platform function extension.
  • each module is not managed by the framework, and there is no clear development mode for module development.
  • the operating system interface called by the program, the interface of various programming tools, and the third party provide The interface causes the coupling relationship between modules to become stronger and stronger.
  • the existing development framework leads to poor manageability and scalability of the program. Especially for open platform applications, it is necessary to meet various personalized requirements for users, and it is difficult to implement the expansion function.
  • a method of implementing an open platform function extension comprising:
  • the plug-in manager records the location information of all the registered plug-ins.
  • the plug-in manager starts the plug-in according to the location information corresponding to the plug-in;
  • the method further includes:
  • Defining the services provided by the open platform is screen management, title bar control and tray control, and packaging the services provided by the open platform into corresponding classes, and providing a service portal for the plug-in to pass the service The portal obtains the services provided by the open platform;
  • the method further includes:
  • the loading mechanism of the plugin includes local loading and remote loading.
  • a method of implementing an open platform function extension comprising:
  • the plug-in manager records the location information of all the registered plug-ins.
  • the plug-in manager starts the plug-in according to the location information corresponding to the plug-in.
  • a system for implementing an open platform function extension comprising:
  • a service module for encapsulating services for screen management, title bar control, and tray control provided by the open platform to the plug-in;
  • An import module configured to provide the plugin with a service portal of the service saved by the service module package, so that the plugin can pass control parameters input by a user to the service portal, and obtain the Service provided by the service module;
  • control interface module configured to provide an operation interface to the plug-in, so that the plug-in can access the entry module by inheriting the operation interface
  • a plug-in manager module configured to register the plug-in, and record location information of all registered plug-ins, and when receiving a command for the user to open the plug-in, start the plug-in according to location information corresponding to the plug-in .
  • the plug-in can inherit the operation interface uniformly, and the control parameters are transmitted to the service portal through the interface to obtain the service, so that the framework of the open platform is simple, the coupling degree is reduced, and the guarantee is guaranteed.
  • the plug-in manager manages the plug-ins in a unified manner, which enhances the management and dynamic scalability of the open platform, making it easy to add new functions to the open platform.
  • FIG. 1 is a schematic flowchart of a method for implementing an extended platform function extension according to Embodiment 1 of the present invention
  • FIG. 2 is a schematic flowchart of a method for implementing an extended platform function extension according to Embodiment 2 of the present invention
  • FIG. 3 is a schematic structural diagram of a system for implementing an extended platform function extension according to Embodiment 3 of the present invention.
  • FIG. 4 is a schematic structural diagram of a service module in a method for implementing an extended platform function extension according to Embodiment 3 of the present invention
  • FIG. 5 is a schematic structural diagram of a plug-in manager module in a system for implementing an open platform function extension according to Embodiment 3 of the present invention
  • FIG. 6 is a schematic structural diagram of an event manager module in a system for implementing an open platform function extension according to Embodiment 3 of the present invention.
  • an embodiment of the present invention provides a method for implementing an extended platform function extension, where the method includes the following steps:
  • the plug-in is defined according to the functional requirements of the user, and the plug-in inherits the operation interface provided by the pre-established open platform, so that the plug-in can input the control parameters input by the user into the service portal provided by the open platform, through the service.
  • the portal obtains the services provided by the open platform;
  • the plug-in manager records the location information of all the registered plug-ins.
  • the plug-in manager starts the plug-in according to the location information corresponding to the plug-in.
  • the plug-in After the plug-in receives the obtained control parameters issued by the user, the control parameters are transmitted to the entry module.
  • a method for implementing the extension of the open platform function provided by the embodiment by encapsulating the service provided by the open platform and providing an operation interface, so that the plug-in can inherit the operation interface uniformly, and the control parameter is transmitted to the service portal through the interface.
  • Embodiment 2 of the present invention provides a method for implementing an extended platform function extension.
  • This embodiment 2 is an improvement performed on the basis of the embodiment 1.
  • the method provided by the embodiment extends the function of the split screen desktop to
  • the split screen desktop is an open platform management interface, and has the function of being able to switch between the operating system desktop presented by the user's desktop from the terminal and the desktop provided by the open platform, and the functions in the split screen desktop.
  • split screen desktop is specifically an interface management program of an open platform with screen management function.
  • a method for implementing an extended platform function extension includes:
  • At least one of the screen management, the title bar control, and the tray control may be combined to form a functional framework of the split screen desktop;
  • the screen management is used to manage a screen, and the screen management includes at least a function of screen background setting and/or screen switching;
  • the title bar control includes navigation bar control and/or toolbar control for providing display and layout control of the plugin on the split screen desktop;
  • the tray control is responsible for the function reminder and/or right-click menu function of the tray area.
  • the service provided by the open platform described in step 201 is encapsulated into a corresponding class, for example, the screen management is encapsulated into CSreenMgr, the title bar control is encapsulated as CtitleBar, the tray area control is encapsulated into CTray, and the service is provided outward.
  • the portal for example, encapsulates the service portal as a CDesktopFrame, and provides multiple entry functions under the CDesktopFrame, so that after the plugin inherits the operation interface of the open platform, the control parameters input by the user can be passed to the entry function to obtain the corresponding entry function.
  • the functionality provided by the service is encapsulated into a corresponding class, for example, the screen management is encapsulated into CSreenMgr, the title bar control is encapsulated as CtitleBar, the tray area control is encapsulated into CTray, and the service is provided outward.
  • the portal for example, encapsulates the service portal as a CDesk
  • the operation interface is provided to the outside world, specifically the IQPlusAddin interface, and the plug-ins developed by the subsequent developments inherit the IQPlusAddin interface to provide control functions such as startup and termination.
  • each function is implemented by a plug-in, and each plug-in inherits an operation interface provided by the function framework to implement external control of the interface of the open platform.
  • the developer needs to make the developed plug-in inherit the above operation interface, so that the plug-in can input the control parameter input by the user into the service portal provided by the open platform, through the service portal. Obtain the services provided by the open platform;
  • the foregoing loading mechanism includes multiple types, and may include, for example, local loading and/or remote loading;
  • the open platform reads the plugin locally and runs when the plugin starts;
  • the open platform gets the plugin from the specified network location and runs.
  • the plug-in Due to the loose coupling between the plug-in and the functional framework of the open platform, through an indirect remote loading technology, the plug-in does not have to exist locally at the beginning, but is delayed until the plug-in is launched from the Internet.
  • This technique can be greatly Reducing the size of the software installation package, thanks to the consistency of the interfaces that the plug-in inherits, allows the plug-in to accept more flexible management and control.
  • the loose coupling mentioned here means that the degree of coupling is low.
  • the plug-in manager is used to record the plug-ins existing in the open platform, and saves the location information and configuration information of the plug-in, wherein the configuration information includes a loading mechanism of the plug-in.
  • the plug-in manager also has a function of starting and closing the plug-in.
  • the plug-in is started/closed according to the location information of the plug-in.
  • the plug-in in response to external control of the plug-in, for example, it can be dynamically loaded or terminated at runtime.
  • the plugin manager records the location information and configuration information of the plugin.
  • the plug-in can transmit the control parameters to the service portal through the plug-in manager after receiving the control parameters input by the user.
  • the event manager completes the communication between the plugins by monitoring the events in the plugin, and the following example illustrates the management of the communication between the plugins by the event manager, wherein the Observer is a launching plugin for monitoring sensitive events, and the EventSource is Initiative plugin for sensitive events, specifically:
  • Step A The Observer sends a notification message for monitoring the sensitive event to the event manager, and the event manager monitors the sensitive event;
  • Step B When the EventSource initiates a sensitive event, sending an event notification to the event manager;
  • Step C The event manager sends a notification message to the Observer.
  • a method for implementing the extension of the open platform function provided by the embodiment by encapsulating the service provided by the open platform and providing an operation interface, so that the plug-in can inherit the operation interface uniformly, and the control parameter is transmitted to the service portal through the interface.
  • Obtaining services makes the framework of the open platform simple and reduces the degree of coupling.
  • the plug-in manager manages the plug-ins uniformly, enhancing the management and dynamic scalability of the open platform. It makes the addition of new functions to the open platform simple and feasible, and increases the event manager to monitor the events of the plug-in to complete the communication between the plug-ins, so that the dependencies between the plug-ins are weakened and the management is convenient.
  • this embodiment provides a system for implementing an open platform function extension, and the system includes:
  • the control interface module 303 is configured to define a plug-in, so that the plug-in passes the control parameter input by the user to the service portal provided by the open platform;
  • the plug-in manager module 304 is configured to register the plug-in and record the location information of all the registered plug-ins. When receiving the command of the user to open the plug-in, the plug-in is started according to the location information corresponding to the plug-in.
  • control interface module 303 is further configured to provide an operation interface to the plug-in, so that the plug-in accesses the entry module by inheriting the operation interface;
  • the system can also include:
  • the service module 301 is configured to encapsulate a service for saving a combination of one or more of screen management, title bar control, and tray control provided by the open platform to the plug-in;
  • the ingress module 302 is configured to provide the plugin with the service module 301 encapsulating the saved service entry, so that the plugin passes the control parameter input by the user into the service portal, and obtains the service provided by the service module through the service portal;
  • the service module 301 includes:
  • the screen management unit 3011 is configured to encapsulate a service for managing the screen provided by the open platform to the plug-in, and at least includes a screen background setting and a screen switching service;
  • a title bar management unit 3012 configured to encapsulate a service provided by the open platform to the plug-in for controlling the navigation bar and the toolbar, and at least includes a service for providing display and layout of the plug-in on the interface of the open platform;
  • the tray management unit 3013 is configured to encapsulate a function reminder and a right-click menu control service for saving the tray area provided by the open platform to the plug-in.
  • the plug-in manager module 304 includes:
  • a registration unit 3041 configured to register a plug-in, and record location information of the plug-in
  • the calling unit 3044 is configured to: after the plug-in receives the obtained control parameter sent by the user, send the control parameter to the import module.
  • the plugin management module 304 may further include:
  • the startup unit 3042 is configured to start the plug-in according to the location information of the plug-in when receiving the command of the user to open the plug-in;
  • the closing unit 3043 is configured to close the plug-in when receiving a command of the user to close the plug-in.
  • the above system further includes:
  • the event manager module 305 is configured to: when all the plugins of the open platform trigger an event, receive an event notification message sent by the plugin to complete event monitoring of all plugins of the open platform;
  • the event manager module 305 includes:
  • the request receiving unit 3051 is configured to receive a request for monitoring a preset event sent by the first plugin
  • the notification receiving unit 3052 is configured to receive an event notification sent by the second plugin when the second plugin triggers the preset event
  • the notification sending unit 3053 is configured to send a notification message that the preset event is triggered to the first plug-in that monitors the preset event, to complete communication between the first plug-in and the second plug-in.
  • control interface module is further configured to define a loading mechanism of the plugin
  • the loading mechanism of the plugin includes local loading and remote loading.
  • the plug-in manager module is further configured to start the plug-in according to location information corresponding to the plug-in, when the plug-in manager module starts the plug-in, the plug-in The manager module is also used to read the plugin from the local and run.
  • the plug-in manager module is further configured to start the plug-in according to location information corresponding to the plug-in, when the plug-in manager module starts the plug-in, the plug-in
  • the manager module is also used to get the plugin from a specified network location and run it.
  • a system for implementing the extension of the open platform function provided by the foregoing embodiment through the framework provided by the system, enables the developer to inherit the open platform operation interface by inheriting the functional requirements of the plug-in, and after inheriting the operation interface
  • the control parameters can be passed to the service portal through the interface to obtain the service, so that the framework of the open platform is simple, the coupling degree is reduced, and the plug-in manager is unifiedly managed by the plug-in manager on the basis of ensuring the basic nature of the open platform.
  • Enhanced management and dynamic scalability of the open platform making it easy to add new features to the open platform, and adding event managers to listen to plug-in events to complete communication between plug-ins, making plug-ins The dependence between the two is weakened and the management is convenient.
  • a person skilled in the art may understand that all or part of the steps of implementing the above embodiments may be completed by hardware, or may be instructed by a program to execute related hardware, and the program may be stored in a computer readable storage medium.
  • the storage medium mentioned may be a read only memory, a magnetic disk or an optical disk or the like.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Multimedia (AREA)
  • Stored Programmes (AREA)

Abstract

本发明公开了一种实现开放平台功能扩展的方法及系统。本发明通过将开放平台所能提供的服务进行封装并提供操作接口,使得插件统一的继承操作接口,通过接口将控制参数传入服务入口以获得服务,使得开放平台的框架简单,耦合度降低,由于通过插件管理器对插件进行统一管理,因此增强了开放平台的管理性和动态可扩展性。

Description

一种实现开放平台功能扩展的方法及系统 技术领域
本发明涉及计算机领域,特别涉及一种实现开放平台功能扩展的方法及系统。
背景技术
在程序开发过程中,目前主要采用传统上的基于操作系统提供的接口进行模块化开发,该方式以功能为导向,将应用程序分为多个功能模块,基于每个模块的功能进行开发,并通过调用操作系统或编程工具提供的接口函数开发得到不同功能的模块,并最终将具有不同功能的模块组合为应用程序。
但是,在这种模块化的开发方式中,各个模块不受框架的统一管理,模块开发也没有清晰的开发模式可以遵循,由于程序调用的操作系统接口、各种编程工具的接口及第三方提供的接口,导致模块间的耦合关系也越来越强,当应用程序开发完成后,基本上功能就已经被限制,很难再进行修改和增加,提高了新功能的开发门槛。例如,当某个大型应用程序开发完成并发布后,如后期需要增加或定制其他附属功能,出于对应用程序初期架构的限制很难进行实现。
技术问题
现有的开发框架导致程序的可管理性、扩展性很差,尤其是对于开放平台类的应用程序,需要满足给用户各种个性化的需求,增加扩展功能很难进行实现。
技术解决方案
一种实现开放平台功能扩展的方法,所述方法包括:
根据用户的功能需求定义插件,并使所述插件继承预先建立的开放平台提供的操作接口,以使所述插件能够将用户输入的控制参数传入所述开放平台提供的服务入口,通过所述服务入口获取所述开放平台提供的服务;
将所述插件注册到预先建立的插件管理器;
其中,所述插件管理器记录有全部已注册的插件的位置信息,当接收到用户开启所述插件的命令时,所述插件管理器根据所述插件对应的位置信息启动所述插件;
所述根据用户的功能需求定义插件之前,所述方法还包括:
定义所述开放平台提供的服务为屏幕管理、标题栏控制和托盘控制,并将所述开放平台提供的服务封装为对应的类,并向外提供服务入口,以供所述插件通过所述服务入口获取所述开放平台提供的服务;
所述将所述插件注册到预先建立的插件管理器之前,所述方法还包括:
定义所述插件的加载机制;
其中,所述插件的加载机制包括本地加载和远程加载。
一种实现开放平台功能扩展的方法,所述方法包括:
根据用户的功能需求定义插件,并使所述插件继承预先建立的开放平台提供的操作接口,以使所述插件能够将用户输入的控制参数传入所述开放平台提供的服务入口,通过所述服务入口获取所述开放平台提供的服务;
将所述插件注册到预先建立的插件管理器;
其中,所述插件管理器记录有全部已注册的插件的位置信息,当接收到用户开启所述插件的命令时,所述插件管理器根据所述插件对应的位置信息启动所述插件。
一种实现开放平台功能扩展的系统,所述系统包括:
服务模块,用于封装保存开放平台向插件提供的屏幕管理、标题栏控制和托盘控制的服务;
入口模块,用于向所述插件提供所述服务模块封装保存的所述服务的服务入口,使得所述插件能够将用户输入的控制参数传入所述服务入口,通过所述服务入口获取所述服务模块提供的服务;
控制接口模块,用于向所述插件提供操作接口,使得所述插件通过继承所述操作接口后能够访问所述入口模块;
插件管理器模块,用于为所述插件进行注册,并记录有全部已注册的插件的位置信息,当接收到用户开启所述插件的命令时,根据所述插件对应的位置信息启动所述插件。
有益效果
通过将开放平台所能提供的服务进行封装并提供操作接口,使得插件统一的继承操作接口,通过接口将控制参数传入服务入口以获得服务,使得开放平台的框架简单,耦合度降低,在保证了开放平台的基本性质的基础之上,通过插件管理器对插件进行统一管理,增强了开放平台的管理性和动态可扩展性,使得对开放平台增加新的功能变得简单可行。
附图说明
为了更清楚地说明本发明实施例中的技术方案,下面将对实施例描述中所需要使用的附图作简单地介绍,显而易见地,下面描述中的附图仅仅是本发明的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其他的附图。
图1是本发明实施例1中提供的一种实现开放平台功能扩展的方法的流程示意图;
图2是本发明实施例2中提供的一种实现开放平台功能扩展的方法的流程示意图;
图3是本发明实施例3中提供的一种实现开放平台功能扩展的系统的结构示意图;
图4是本发明实施例3中提供的一种实现开放平台功能扩展的方法中的服务模块的结构示意图;
图5是本发明实施例3中提供的一种实现开放平台功能扩展的系统中的插件管理器模块的结构示意图;
图6是本发明实施例3中提供的一种实现开放平台功能扩展的系统中的事件管理器模块的结构示意图。
本发明的最佳实施方式
为使本发明的目的、技术方案和优点更加清楚,下面将结合附图对本发明实施方式作进一步地详细描述。
实施例1
如图1所示,本发明实施例提供了一种实现开放平台功能扩展的方法,该方法包括如下步骤:
101、定义插件,使得所述插件将用户输入的控制参数传入所述开放平台所提供的服务入口;
具体地,对于步骤101,根据用户的功能需求定义插件,并使插件继承预先建立的开放平台提供的操作接口,以使插件能够将用户输入的控制参数传入开放平台提供的服务入口,通过服务入口获取开放平台提供的服务;
102、将插件注册到预先建立的插件管理器;
其中,插件管理器记录有全部已注册的插件的位置信息,当接收到用户开启插件的命令时,插件管理器根据插件对应的位置信息启动插件。
在上述实施例中,还可以包括以下步骤:
向所述插件提供操作接口;
为所述插件进行注册,记录所述插件的位置信息;
在所述插件接收得到的用户发出的控制参数后,将所述控制参数传入所述入口模块。
本实施例所提供的一种实现开放平台功能扩展的方法,通过将开放平台所能提供的服务进行封装并提供操作接口,使得插件统一的继承操作接口,通过接口将控制参数传入服务入口以获得服务,使得开放平台的框架简单,耦合度降低,在保证了开放平台的基本性质的基础之上,通过插件管理器对插件进行统一管理,增强了开放平台的管理性和动态可扩展性,使得对开放平台增加新的功能变得简单可行。
实施例2
本发明实施例2提供了一种实现开放平台功能扩展的方法,本实施例2是在实施例1的基础之上进行的改进,通过本实施例提供的方法以对分屏桌面进行功能扩展为例进行说明,该分屏桌面为开放平台的管理界面,具有能够将呈现给用户桌面从终端的操作系统桌面与开放平台提供的桌面之间进行切换的功能,该分屏桌面中的各项功能通过插件进行实现,并通过将插件注册到插件管理器完成整个分屏桌面的控制,各个功能之间的耦合度低,更加容易维护,方便测试且扩展性好。
需要说明的是,分屏桌面具体的为具有屏幕管理功能的开放平台的界面管理程序。
如图2所示,一种实现开放平台功能扩展的方法,具体包括:
201、将开放平台所能提供的服务划分为屏幕管理、标题栏控制、托盘控制中的任意一者或一者以上的组合;
需要说明的是,在本实施例中,至少可由屏幕管理、标题栏控制、托盘控制中的任意一者或一者以上的组合组成分屏桌面的功能框架;
其中,屏幕管理用于管理屏幕,该屏幕管理至少包括屏幕背景设置和/或屏幕切换的功能;
标题栏控制包括导航栏控制和/或工具栏控制,用于提供插件在分屏桌面上的显示和布局控制;
托盘控制用于负责托盘区的功能提醒和/或右键菜单功能。
202、封装并保存开放平台提供的服务,并提供操作接口;
具体地,将步骤201中所述的开放平台提供的服务封装成对应的类,例如将屏幕管理封装为CSreenMgr,将标题栏控制封装为CtitleBar,将托盘区控制封装为CTray,并向外提供服务入口,例如将服务入口封装为CDesktopFrame,并在CDesktopFrame下提供多个入口函数,以使得插件在继承开放平台的操作接口后,可以将用户输入的控制参数传入入口函数,以获取入口函数对应的服务所提供的功能。
同时,封装后向外界提供操作接口,具体的为IQPlusAddin接口,并使得后续开发得到的插件均继承IQPlusAddin接口,以提供控制功能,例如启动、终止等能力。
需要说明的是,被封装的服务不能反向调用插件。
203、根据用户的功能需求定义插件,使插件继承开放平台提供的操作接口;
需要说明的是,在本发明中,将每个功能通过一个插件进行实现,且每个插件均继承功能框架提供的操作接口,以实现外界对开放平台的界面的控制。
进一步地,开发者在根据用户的需求开发插件的过程中,需要使所开发的插件继承上述操作接口后,以使得插件能够将用户输入的控制参数传入开放平台提供的服务入口,通过服务入口获取开放平台提供的服务;
204、定义插件的加载机制;
需要说明的是,上述加载机制包括多种,例如可包括本地加载和/或远程加载;
如果插件的加载机制为本地加载,当插件启动时,开放平台从本地读取插件并运行;
如果插件的加载机制为远程加载,当插件启动时,开放平台从指定的网络位置获取插件并运行。
由于插件与开放平台的功能框架之间的松耦合,通过一种间接化的远程加载技术,插件不必一开始就存在于本地,而是延迟到插件启动时从互联网上下载,这种技术可以大大减小软件安装包体积,这得益于插件继承的接口的一致性,使得插件可以接受更灵活的管理和控制。这里所讲的松耦合是指耦合度较低。
205、建立插件管理器;
其中,插件管理器用于记录开放平台中存在的插件,且保存有插件的位置信息和配置信息,其中,配置信息包括插件的加载机制等。
进一步地,插件管理器还具有对插件的启动、关闭的功能,当接收到用户发送的启动/关闭命令时,根据插件的位置信息启动/关闭对应的插件。
206、将插件注册到预先建立的插件管理器,以响应外界对插件的控制;
其中,响应外界对插件的控制,例如可以在运行时动态加载或终止。
将插件注册到预先建立的插件管理器,具体的包括:
插件管理器记录插件的位置信息及配置信息。
进一步地,当插件注册到插件管理器后,所述插件即可在接收到用户输入的控制参数后,通过插件管理器将控制参数传送给服务入口。
207、建立事件管理器,并通过事件管理器对全部插件中的事件进行监听。
进一步地,事件管理器通过对插件中的事件进行监听以完成插件之间的通信,以如下例子说明事件管理器对于插件之间通信的管理,其中,Observer为监控敏感事件的发起插件,EventSource为敏感事件的发起插件,具体地:
步骤A、Observer向事件管理器发送监控敏感事件的通知消息,通过事件管理器对敏感事件进行监控;
步骤B、当EventSource发起敏感事件时,向事件管理器发送事件通知;
步骤C、事件管理器向Observer发送通知消息。
本实施例所提供的一种实现开放平台功能扩展的方法,通过将开放平台所能提供的服务进行封装并提供操作接口,使得插件统一的继承操作接口,通过接口将控制参数传入服务入口以获得服务,使得开放平台的框架简单,耦合度降低,在保证了开放平台的基本性质的基础之上,通过插件管理器对插件进行统一管理,增强了开放平台的管理性和动态可扩展性,使得对开放平台增加新的功能变得简单可行,并且增加了事件管理器对插件的事件进行监听,以完成插件之间的通信,使得插件之间的依赖关系减弱,且管理方便。
实施例3
如图3所示,本实施例提供了实现开放平台功能扩展的系统,该系统包括:
控制接口模块303,用于定义插件,使得所述插件将用户输入的控制参数传入所述开放平台所提供的服务入口;
插件管理器模块304,用于为插件进行注册,并记录有全部已注册的插件的位置信息,当接收到用户开启插件的命令时,根据插件对应的位置信息启动插件。
在上述实施例中,所述控制接口模块303还用于向插件提供操作接口,使得插件通过继承操作接口后访问入口模块;
该系统还可以包括:
服务模块301,用于封装保存开放平台向插件提供的屏幕管理、标题栏控制、托盘控制中的任意一者或一者以上的组合的服务;
入口模块302,用于向插件提供服务模块301封装保存的服务入口,使得插件将用户输入的控制参数传入服务入口,通过服务入口获取服务模块提供的服务;
进一步地,如图4所示,服务模块301,包括:
屏幕管理单元3011,用于封装保存开放平台向插件提供的对于屏幕进行管理的服务,且至少包括屏幕背景设置、屏幕切换的服务;
标题栏管理单元3012,用于封装保存开放平台向插件提供的对于导航栏和工具栏进行控制的服务,且至少包括用于提供插件在开放平台的界面上的显示和布局的服务;
托盘管理单元3013,用于封装保存开放平台向插件提供的托盘区的功能提醒和右键菜单控制的服务。
进一步地,如图5所示,插件管理器模块304,包括:
注册单元3041,用于为插件进行注册,记录插件的位置信息;
调用单元3044,用于在插件接收得到的用户发出的控制参数后,将控制参数传入入口模块。
进一步地,该插件管理模块304还可以包括:
启动单元3042,用于在接收到用户开启插件的命令时,根据插件的位置信息启动插件;
关闭单元3043,用于在接收到用户关闭插件的命令时,关闭插件。
进一步地,上述系统还包括:
事件管理器模块305,用于当开放平台的所有插件在触发了事件时,接收插件发送的事件通知消息,以完成对开放平台的所有插件的事件监听;
其中,如图6所示,事件管理器模块305,包括:
请求接收单元3051,用于接收第一插件发送的监听预设事件的请求;
通知接收单元3052,用于当第二插件触发了预设事件时,接收第二插件发送的事件通知;
通知发送单元3053,用于向监听预设事件的第一插件发送预设事件被触发的通知消息,以完成第一插件和第二插件之间的通信。
需要说明的是,服务模块301所提供的服务不反向调用插件。
在上述实施例的系统中,所述控制接口模块还用于定义所述插件的加载机制;
其中,所述插件的加载机制包括本地加载和远程加载。
当所述插件的加载机制为本地加载时,所述插件管理器模块还用于根据所述插件对应的位置信息启动所述插件,当所述插件管理器模块启动所述插件时,所述插件管理器模块还用于从本地读取所述插件并运行。
当所述插件的加载机制为远程加载时,所述插件管理器模块还用于根据所述插件对应的位置信息启动所述插件,当所述插件管理器模块启动所述插件时,所述插件管理器模块还用于从指定的网络位置获取所述插件并运行。
上述实施例所提供的一种实现开放平台功能扩展的系统,通过本系统所提供的框架,使得开发者只要了解插件的功能需求后,即可通过继承开放平台操作接口,且在继承操作接口后,即可通过接口将控制参数传入服务入口以获得服务,使得开放平台的框架简单,耦合度降低,在保证了开放平台的基本性质的基础之上,通过插件管理器对插件进行统一管理,增强了开放平台的管理性和动态可扩展性,使得对开放平台增加新的功能变得简单可行,并且增加了事件管理器对插件的事件进行监听,以完成插件之间的通信,使得插件之间的依赖关系减弱,且管理方便。
本领域普通技术人员可以理解实现上述实施例的全部或部分步骤可以通过硬件来完成,也可以通过程序来指令相关的硬件完成,所述的程序可以存储于一种计算机可读存储介质中,上述提到的存储介质可以是只读存储器,磁盘或光盘等。
以上所述仅为本发明的较佳实施例,并不用以限制本发明,凡在本发明的精神和原则之内,所作的任何修改、等同替换、改进等,均应包含在本发明的保护范围之内。
本发明的实施方式
工业实用性
序列表自由内容

Claims (29)

  1. 一种实现开放平台功能扩展的方法,其中
    所述方法包括:
    根据用户的功能需求定义插件,并使所述插件继承预先建立的开放平台提供的操作接口,以使所述插件能够将用户输入的控制参数传入所述开放平台提供的服务入口,通过所述服务入口获取所述开放平台提供的服务;
    将所述插件注册到预先建立的插件管理器;
    其中,所述插件管理器记录有全部已注册的插件的位置信息,当接收到用户开启所述插件的命令时,所述插件管理器根据所述插件对应的位置信息启动所述插件;
    所述根据用户的功能需求定义插件之前,所述方法还包括:
    定义所述开放平台提供的服务为屏幕管理、标题栏控制和托盘控制,并将所述开放平台提供的服务封装为对应的类,并向外提供服务入口,以供所述插件通过所述服务入口获取所述开放平台提供的服务;
    所述将所述插件注册到预先建立的插件管理器之前,所述方法还包括:
    定义所述插件的加载机制;
    其中,所述插件的加载机制包括本地加载和远程加载。
  2. 根据权利要求1所述的方法,其中
    所述屏幕管理用于管理屏幕,且至少包括屏幕背景设置、屏幕切换的功能;
    所述标题栏控制包括导航栏控制和工具栏控制,用于提供控制所述插件在所述开放平台界面上的显示和布局;
    所述托盘控制用于提供托盘区的功能提醒和右键菜单功能。
  3. 根据权利要求1所述的方法,其中
    当所述插件的加载机制为本地加载时,所述插件管理器根据所述插件对应的位置信息启动所述插件,所述方法还包括:
    当所述插件管理器启动所述插件时,所述插件管理器从本地读取所述插件并运行;
    当所述插件的加载机制为远程加载时,所述插件管理器根据所述插件对应的位置信息启动所述插件,所述方法还包括:
    当所述插件管理器启动所述插件启动时,所述插件管理器由指定的网络位置获取所述插件并运行。
  4. 根据权利要求1所述的方法,其中
    所述方法还包括:
    建立事件管理器,并设置所述开放平台的所有插件在触发事件时均发送事件通知消息给所述事件管理器,以完成所述事件管理器对所述开放平台的所有插件的事件监听。
  5. 根据权利要求4所述的方法,其中
    所述方法还包括:
    所述事件管理器接收第一插件发送的监听预设事件的请求;
    当第二插件触发所述预设事件时,接收所述第二插件发送的事件通知;
    所述事件管理器向所述第一插件发送所述预设事件被触发的通知消息,以完成所述第一插件和所述第二插件之间的通信。
  6. 根据权利要求1所述的方法,其中
    所述开放平台提供的服务不反向调用所述插件。
  7. 一种实现开放平台功能扩展的方法,其中
    所述方法包括:
    定义插件,使得所述插件将用户输入的控制参数传入所述开放平台所提供的服务入口;
    将所述插件注册到预先建立的插件管理器;
    其中,所述插件管理器记录有已注册的插件的位置信息,当接收到开启所述插件的命令时,所述插件管理器根据所述插件对应的位置信息启动所述插件。
  8. 根据权利要求7所述的方法,其中
    所述方法还包括:
    向所述插件提供操作接口;
    为所述插件进行注册,记录所述插件的位置信息;
    在所述插件接收得到的用户发出的控制参数后,将所述控制参数传入所述入口模块。
  9. 根据权利要求8所述的方法,其中
    根据用户的功能需求定义插件,并使插件继承预先建立的开放平台提供的操作接口,以使插件能够将用户输入的控制参数传入开放平台提供的服务入口,通过服务入口获取开放平台提供的服务。
  10. 根据权利要求8所述的方法,其中
    在定义所述插件之前,所述方法还包括:
    定义所述开放平台所提供的服务为屏幕管理、标题栏控制、托盘控制中的任意一者或一者以上的组合,并将所述开放平台所提供的服务封装为对应的类,并向外提供所述服务入口,以供所述插件通过所述服务入口获取所述开放平台所提供的服务。
  11. 根据权利要求10所述的方法,其中
    所述屏幕管理用于管理屏幕,所述屏幕管理至少包括屏幕背景设置和/或屏幕切换的功能;
    所述标题栏控制包括导航栏控制和/或工具栏控制,用于提供所述插件在所述开放平台界面上的显示和布局;
    所述托盘控制用于提供托盘区的功能提醒和/或右键菜单。
  12. 根据权利要求8所述的方法,其中
    在将所述插件注册到预先建立的插件管理器之前,所述方法还包括:
    定义所述插件的加载机制;
    其中,所述插件的加载机制包括本地加载和/或远程加载;
  13. 根据权利要求12所述的方法,其中
    当所述插件的加载机制为本地加载时,所述插件管理器根据所述插件对应的位置信息启动所述插件,所述方法还包括:
    当所述插件管理器启动所述插件时,所述插件管理器从本地读取所述插件并运行。
  14. 根据权利要求12所述的方法,其中
    当所述插件的加载机制为远程加载时,所述插件管理器根据所述插件对应的位置信息启动所述插件,所述方法还包括:
    当所述插件管理器启动所述插件时,所述插件管理器从指定的网络位置获取所述插件并运行。
  15. 根据权利要求8所述的方法,其中
    所述方法还包括:
    建立事件管理器,并设置所述开放平台的所有插件在触发事件时均发送事件通知消息给所述事件管理器,以完成所述事件管理器对所述开放平台的所有插件的事件监听。
  16. 根据权利要求15所述的方法,其中
    所述方法还包括:
    所述事件管理器接收第一插件发送的监听预设事件的请求;
    当第二插件触发所述预设事件时,接收所述第二插件发送的事件通知;
    所述事件管理器向所述第一插件发送所述预设事件被触发的通知消息,以完成所述第一插件和所述第二插件之间的通信。
  17. 根据权利要求8所述的方法,其中
    所述开放平台所提供的服务不反向调用所述插件。
  18. 一种实现开放平台功能扩展的系统,其中
    所述系统包括:
    控制接口模块,用于定义插件,使得所述插件将用户输入的控制参数传入所述开放平台所提供的服务入口;
    插件管理器模块,用于为所述插件进行注册,并记录有已注册的插件的位置信息,当接收到开启所述插件的命令时,根据所述插件对应的位置信息启动所述插件。
  19. 根据权利要求18所述的系统,其中
    所述控制接口模块还用于向所述插件提供操作接口;
    所述插件管理器模块包括:
    注册单元,用于为所述插件进行注册,记录所述插件的位置信息;
    调用单元,用于在所述插件接收得到的用户发出的控制参数后,将所述控制参数传入所述入口模块。
  20. 根据权利要求19所述的系统,其中
    所述控制接口模块还用于根据用户的功能需求定义插件,并使插件继承预先建立的开放平台提供的操作接口,以使插件能够将用户输入的控制参数传入开放平台提供的服务入口,通过服务入口获取开放平台提供的服务。
  21. 根据权利要求19所述的系统,其中
    服务模块,用于封装保存开放平台向插件提供的屏幕管理、标题栏控制、托盘控制中的任意一者或一者以上的组合的服务;
    入口模块,用于向所述插件提供所述服务模块封装保存的所述服务的服务入口,使得所述插件将用户输入的控制参数传入所述服务入口,通过所述服务入口获取所述服务模块提供的服务。
  22. 根据权利要求21所述的系统,其中
    所述服务模块,包括:
    屏幕管理单元,用于封装保存所述开放平台向插件提供的对于屏幕进行管理的服务,且至少包括屏幕背景设置和/或屏幕切换的服务;
    标题栏管理单元,用于封装保存所述开放平台向插件提供的对于导航栏和/或工具栏进行控制的服务,且至少包括用于提供所述插件在所述开放平台的界面上的显示和布局的服务;
    托盘管理单元,用于封装保存所述开放平台向插件提供的托盘区的功能提醒和/或右键菜单控制的服务。
  23. 根据权利要求19所述的系统,其中
    所述控制接口模块还用于定义所述插件的加载机制;
    其中,所述插件的加载机制包括本地加载和远程加载。
  24. 根据权利要求23所述的系统,其中
    当所述插件的加载机制为本地加载时,所述插件管理器模块还用于根据所述插件对应的位置信息启动所述插件,当所述插件管理器模块启动所述插件时,所述插件管理器模块还用于从本地读取所述插件并运行。
  25. 根据权利要求23所述的系统,其中
    当所述插件的加载机制为远程加载时,所述插件管理器模块还用于根据所述插件对应的位置信息启动所述插件,当所述插件管理器模块启动所述插件时,所述插件管理器模块还用于从指定的网络位置获取所述插件并运行。
  26. 根据权利要求19所述的系统,其中
    所述插件管理器模块,包括:
    注册单元,用于为所述插件进行注册,记录所述插件的位置信息;
    启动单元,用于在接收到用户开启所述插件的命令时,根据所述插件的位置信息启动所述插件;
    关闭单元,用于在接收到用户关闭所述插件的命令时,关闭所述插件;
    调用单元,用于根据所述插件接收得到的用户发出的控制参数后,将所述控制参数传入所述入口模块。
  27. 根据权利要求19所述的系统,其中
    所述系统还包括:
    事件管理器模块,用于当所述开放平台的所有插件在触发事件时,接收所述插件发送的事件通知消息,以完成对所述开放平台的所有插件的事件监听。
  28. 根据权利要求27所述的系统,其中
    所述事件管理器模块,包括:
    请求接收单元,用于接收第一插件发送的监听预设事件的请求;
    通知接收单元,用于当第二插件触发所述预设事件时,接收所述第二插件发送的事件通知;
    通知发送单元,用于向监听所述预设事件的所述第一插件发送所述预设事件被触发的通知消息,以完成所述第一插件和所述第二插件之间的通信。
  29. 根据权利要求19所述的系统,其中
    所述服务模块所提供的服务不反向调用所述插件。
PCT/CN2012/085215 2011-12-26 2012-11-23 一种实现开放平台功能扩展的方法及系统 WO2013097567A1 (zh)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US14/126,749 US9003431B2 (en) 2011-12-26 2012-11-23 Method and system for implementing function extension of open platform
KR1020147001223A KR101550555B1 (ko) 2011-12-26 2012-11-23 개방형 플랫폼의 기능 확장을 실현하는 방법 및 시스템

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201110441713.8A CN103176789B (zh) 2011-12-26 2011-12-26 一种实现开放平台功能扩展的方法及系统
CN201110441713.8 2011-12-26

Publications (1)

Publication Number Publication Date
WO2013097567A1 true WO2013097567A1 (zh) 2013-07-04

Family

ID=48636696

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2012/085215 WO2013097567A1 (zh) 2011-12-26 2012-11-23 一种实现开放平台功能扩展的方法及系统

Country Status (4)

Country Link
US (1) US9003431B2 (zh)
KR (1) KR101550555B1 (zh)
CN (1) CN103176789B (zh)
WO (1) WO2013097567A1 (zh)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108650551A (zh) * 2014-09-26 2018-10-12 青岛海信宽带多媒体技术有限公司 一种机顶盒的参数操作方法
US11898180B2 (en) 2017-08-16 2024-02-13 Avalon Polytom (Hk) Limited Compositions and methods for amino acid depletion therapy

Families Citing this family (24)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103516595B (zh) * 2013-10-18 2016-11-09 北京奇虎科技有限公司 一种消息提醒的方法和装置、以及系统
CN104636190B (zh) * 2013-11-06 2018-03-13 中国石油天然气集团公司 软件系统及插件间消息传递方法
CN103645901A (zh) * 2013-12-16 2014-03-19 上海证券交易所 一种基于事件链的用户界面插件化交互方法
CN103761123B (zh) * 2013-12-31 2018-10-12 广州华多网络科技有限公司 功能启动方法、装置及终端
US10147421B2 (en) 2014-12-16 2018-12-04 Microcoft Technology Licensing, Llc Digital assistant voice input integration
US9389928B1 (en) 2015-02-11 2016-07-12 Microsoft Technology Licensing, Llc Platform for extension interaction with applications
US10133613B2 (en) 2015-05-14 2018-11-20 Microsoft Technology Licensing, Llc Digital assistant extensibility to third party applications
CN106325923A (zh) * 2016-08-17 2017-01-11 北京奇虎科技有限公司 功能插件的管理方法及装置
CN106385434B (zh) * 2016-08-31 2019-09-03 广州品唯软件有限公司 一种用户交互方法、设备及系统
US11467868B1 (en) * 2017-05-03 2022-10-11 Amazon Technologies, Inc. Service relationship orchestration service
CN107315628B (zh) * 2017-06-13 2020-11-17 浪潮金融信息技术有限公司 插件调用方法及装置、计算机可读存储介质、终端
CN108196916B (zh) * 2017-12-18 2020-06-12 广州视源电子科技股份有限公司 一种对接口进行参数校验的方法及其装置、存储介质和电子设备
US10671410B1 (en) 2019-05-28 2020-06-02 Oracle International Corporation Generating plug-in application recipe extensions
US11169826B2 (en) 2019-05-28 2021-11-09 Oracle International Corporation User-assisted plug-in application recipe execution
US11182130B2 (en) 2019-05-28 2021-11-23 Oracle International Corporation Semantic analysis-based plug-in application recipe generation
CN110221834A (zh) * 2019-06-12 2019-09-10 武汉海云空间信息技术有限公司 街景地图的开发方法及装置
US11321101B2 (en) * 2019-07-10 2022-05-03 Vmware, Inc. Deployment and isolation of plugins in a virtualized computing environment
CN110659017B (zh) * 2019-09-19 2024-03-29 上海客佳信息科技有限公司 一种外部请求处理方法及相关装置
CN111381741A (zh) * 2020-03-05 2020-07-07 山东浪潮通软信息科技有限公司 工具栏插件化方法、装置及系统
CN111796149B (zh) * 2020-06-15 2023-05-09 深圳市极致汇仪科技有限公司 一种实体按键触控化的矢量网络分析仪
CN112148332B (zh) * 2020-09-30 2023-09-05 亮风台(上海)信息科技有限公司 工具化系统及其更新方法、终端设备、存储介质
CN112148331A (zh) * 2020-09-30 2020-12-29 亮风台(上海)信息科技有限公司 宿主程序的动态更新方法及终端设备
CN113704005B (zh) * 2021-08-31 2023-09-19 成都华唯科技股份有限公司 可远程调用应用的方法、装置、系统及可读存储介质
CN114338151A (zh) * 2021-12-28 2022-04-12 中国建设银行股份有限公司 基于开放平台移动端sdk与原生应用的安全通信方法

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101276269A (zh) * 2007-03-30 2008-10-01 上海众恒信息产业有限公司 可扩展资源管理平台
CN101303650A (zh) * 2008-07-09 2008-11-12 腾讯科技(深圳)有限公司 一种软件平台的功能扩展方法及功能扩展系统

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1039378A3 (en) * 1999-03-01 2004-04-21 Canon Kabushiki Kaisha Improvements in object-oriented computer processing
US7269833B2 (en) * 2001-12-12 2007-09-11 Sun Microsystems, Inc. Scriptable plug-in application programming interface
US20060230396A1 (en) 2005-04-07 2006-10-12 International Business Machines Corporation Deployment of reusable software components to be hosted in a container running on a modular code runtime platform through a runtime platform extension point
WO2007059465A2 (en) 2005-11-10 2007-05-24 Computer Associates Think, Inc. Server side application integration framework
US8667261B2 (en) * 2011-07-27 2014-03-04 General Electric Company Systems, methods, and apparatus for utility meter configuration

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101276269A (zh) * 2007-03-30 2008-10-01 上海众恒信息产业有限公司 可扩展资源管理平台
CN101303650A (zh) * 2008-07-09 2008-11-12 腾讯科技(深圳)有限公司 一种软件平台的功能扩展方法及功能扩展系统

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108650551A (zh) * 2014-09-26 2018-10-12 青岛海信宽带多媒体技术有限公司 一种机顶盒的参数操作方法
US11898180B2 (en) 2017-08-16 2024-02-13 Avalon Polytom (Hk) Limited Compositions and methods for amino acid depletion therapy

Also Published As

Publication number Publication date
CN103176789A (zh) 2013-06-26
US20140317639A1 (en) 2014-10-23
US9003431B2 (en) 2015-04-07
CN103176789B (zh) 2017-08-01
KR20140033494A (ko) 2014-03-18
KR101550555B1 (ko) 2015-09-11

Similar Documents

Publication Publication Date Title
WO2013097567A1 (zh) 一种实现开放平台功能扩展的方法及系统
WO2017069595A1 (en) Electronic device and method for executing function using speech recognition thereof
WO2013009044A2 (ko) 특수 권한 기반의 내장 sim의 mno 변경방법 및 그를 위한 내장 sim과 기록매체
WO2017206878A1 (zh) 一种基于唤醒锁的处理方法、装置、存储介质及电子设备
WO2018076841A1 (zh) 数据分享方法、装置、存储介质及服务器
WO2013065915A1 (ko) 보안 영역과 비보안 영역 사이의 보안 연동 방법 및 보안 어플리케이션 다운로드 관리방법, 관리서버, 단말기, 및 이를 적용한 관리시스템
WO2013078899A1 (zh) 一种基于手机的软件处理方法及手机
WO2017206883A1 (zh) 一种应用处理方法、装置、存储介质及电子设备
WO2022050652A1 (en) Method, apparatus, and computer readable storage medium for controlling account
WO2017047928A1 (en) Server and user terminal
WO2018161585A1 (zh) 电子设备帧率的控制方法、装置、存储介质及电子设备
WO2018076867A1 (zh) 数据备份的删除方法、装置、系统、存储介质和服务器
WO2017206862A1 (zh) 一种基于亮屏锁的处理方法、装置、存储介质及电子设备
WO2018166199A1 (zh) 定位精度等级调整方法、装置、存储介质及电子设备
WO2018076840A1 (zh) 数据分享方法、装置、存储介质及服务器
WO2020017767A1 (en) Method and device for controlling access of application
WO2013154398A1 (ko) 소프트웨어 정의 라디오 어플리케이션의 배포, 설치 및 실행 방법
WO2018076869A1 (zh) 一种数据备份方法、装置、存储介质和电子设备
WO2018012880A1 (en) Method and electronic device for managing functionality of applications
WO2019059671A1 (en) ELECTRONIC DEVICE AND ITS CONTROL METHOD
WO2018201774A1 (zh) 数据审批方法、装置、设备和计算机可读存储介质
WO2018076829A1 (zh) 终端数据的处理方法、装置、系统、存储介质及服务器
WO2017206879A1 (zh) 一种移动终端应用程序的处理方法、装置、存储介质及电子设备
WO2019205272A1 (zh) 虚拟机服务提供方法、装置、设备及计算机可读存储介质
WO2018076872A1 (zh) 数据备份方法、装置、存储介质及服务器

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: 12862095

Country of ref document: EP

Kind code of ref document: A1

WWE Wipo information: entry into national phase

Ref document number: 14126749

Country of ref document: US

ENP Entry into the national phase

Ref document number: 20147001223

Country of ref document: KR

Kind code of ref document: A

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 12862095

Country of ref document: EP

Kind code of ref document: A1

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 1205 DATED 08/07/2015)

122 Ep: pct application non-entry in european phase

Ref document number: 12862095

Country of ref document: EP

Kind code of ref document: A1