WO2017054531A1 - 一种基于yang模型的编译方法、及对应的接口、组件和系统 - Google Patents

一种基于yang模型的编译方法、及对应的接口、组件和系统 Download PDF

Info

Publication number
WO2017054531A1
WO2017054531A1 PCT/CN2016/086916 CN2016086916W WO2017054531A1 WO 2017054531 A1 WO2017054531 A1 WO 2017054531A1 CN 2016086916 W CN2016086916 W CN 2016086916W WO 2017054531 A1 WO2017054531 A1 WO 2017054531A1
Authority
WO
WIPO (PCT)
Prior art keywords
data
yang
api
protocol
information
Prior art date
Application number
PCT/CN2016/086916
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 中兴通讯股份有限公司
Publication of WO2017054531A1 publication Critical patent/WO2017054531A1/zh

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/40Network security protocols

Definitions

  • the present application relates to, but is not limited to, the field of network communication technologies, and in particular, to a YANG model-based compilation method, and corresponding interfaces, components, and systems.
  • SDN Software Defined Network
  • NETCONF is one of the protocols that can meet the above requirements, and exists as a channel for the northbound interface.
  • YANG is a model definition language that models configuration data and management data for NETCONF protocol operations.
  • the current NETCONF message delivery requires users to be very proficient in the NETCONF protocol and the YANG modeling language or the network management side needs to hard code the YANG model, which is inflexible in the changing network services and changing devices.
  • the embodiment of the present invention provides a compiling method based on the YANG model, and a corresponding interface, component, and system, which can solve the problem that the network device is inflexible in the related art, and the network management side needs to hard code the YANG model.
  • An embodiment of the present invention provides a compiling method based on a YANG model, including:
  • Corresponding application program interface (API) data is generated based on the YANG model.
  • the method before parsing the YANG file to obtain a corresponding YANG model, the method It also includes verifying the correctness and/or completeness of the YANG file.
  • the YANG model describes the relationship between the YANG module and the nodes within the module.
  • the method further includes:
  • generating corresponding API data based on the YANG model includes:
  • the embodiment of the invention further provides a compiling method based on the YANG model, including:
  • API application program interface
  • a connection is established with the proxy server through which the protocol data is sent to the proxy server.
  • generating protocol data according to the API data includes:
  • a packet to be abstractly encapsulated is generated after the data transmission object is processed according to the format requirement of the packet.
  • the method further includes:
  • the method before receiving the API data, the method further includes:
  • configuration information includes one or more of the following:
  • Proxy server information user device information, session management information, transaction management information, operations information.
  • the method further includes:
  • the API data is abstractly encapsulated.
  • the encapsulating the protocol content and returning to the user equipment includes: encapsulating the success information into a successful API class, and returning to the user equipment;
  • the encapsulating the protocol content and returning it to the user equipment includes: encapsulating the error information into an error API class, and returning to the user equipment;
  • the encapsulating the protocol content and returning to the user equipment includes: encapsulating the node information into an API service data class, and returning to the user equipment. .
  • the embodiment of the invention further provides an application program interface based on the YANG model, including:
  • the parsing module is configured to parse the YANG file to obtain a corresponding YANG model
  • the compiling module is configured to generate corresponding API data based on the YANG model.
  • the interface further includes:
  • a verification module configured to verify the correctness and/or integrity of the YANG file.
  • the obtaining module is further configured to obtain a full path of the directory where the YANG file to be parsed is stored and a full path of the generated code.
  • the embodiment of the invention further provides a plug-in component based on the YANG model, comprising:
  • a receiving module configured to receive API data; wherein the API data is generated by parsing a YANG model obtained by the YANG file;
  • Generating a module configured to generate protocol data according to the API data
  • a connection module is configured to establish a connection with a proxy server through which the protocol data is sent to the proxy server.
  • the generating module is configured to generate protocol data according to the API data by:
  • a packet to be abstractly encapsulated is generated after the data transmission object is processed according to the format requirement of the packet.
  • the component further includes:
  • a feedback module configured to receive result data fed back by the proxy server
  • a protocol module configured to parse the protocol content according to the result data
  • the encapsulation module is configured to encapsulate the content of the protocol and return it to the user equipment.
  • the generating module is further configured to: perform abstract encapsulation on the API data.
  • the encapsulating module includes a successful encapsulating unit, an error encapsulating unit, and a service encapsulating unit.
  • the successful encapsulating unit is configured to encapsulate the success information into a successful API class and return it to the user equipment when the protocol content parsed according to the result data is success information;
  • the error encapsulating unit is configured to encapsulate the error information into an error API class and return it to the user equipment when the protocol content parsed according to the result data is error information;
  • the service encapsulating unit is configured to encapsulate the node information into an API service data class and return the information to the user equipment when the protocol content parsed according to the result data is node information.
  • the embodiment of the invention further provides a network automation system based on the YANG model, comprising: the above interface and component.
  • the embodiment of the invention further provides a computer readable storage medium storing computer executable instructions, and when the computer executable instructions are executed, implementing a YANG model based compilation method.
  • the embodiment of the invention further provides a computer readable storage medium storing computer executable instructions, and when the computer executable instructions are executed, another YANG model based compilation method is implemented.
  • the solution provided by the embodiment of the present invention reflects the data logic in the YANG model and is shielded.
  • the complexity of NETCONF operations such as the configuration query that the user wants to perform is converted into the corresponding protocol packet, and the packet can be sent to the corresponding device to obtain the operation result, and the YANG model of the different versions of the device can also be controlled. This greatly reduces the user's requirements for NETCONF protocol messages and YANG model expertise, reduces unnecessary manual configuration steps, and reduces user development and maintenance costs.
  • FIG. 1 is a flowchart of a YANG model-based compiling method according to an embodiment of the present invention
  • FIG. 2 is a flowchart of another YANG model-based compiling method according to an embodiment of the present invention.
  • FIG. 3 is a schematic structural diagram of an application program interface based on a YANG model according to an embodiment of the present invention
  • FIG. 4 is a schematic structural diagram of a plug-in component based on a YANG model according to an embodiment of the present invention
  • FIG. 5 is a schematic structural diagram of a network automation system based on a YANG model according to an embodiment of the present invention
  • FIG. 6 is a flowchart of generating corresponding API data according to a YANG file according to Embodiment 1;
  • Figure 8 is a flow diagram of the implementation of the protocol contents of Embodiments 2 and 3 and returned to the user equipment.
  • an embodiment of the present invention provides a method for compiling based on a YANG model, including the following steps:
  • Step S1 obtaining a YANG file to be parsed
  • Step S2 parsing the YANG file to obtain a corresponding YANG model
  • Step S3 Generate corresponding application program interface (API) data based on the YANG model.
  • API application program interface
  • a compilation method based on the YANG model provided by the embodiment of the present invention is mainly used for reading and parsing a YANG file, and obtaining a corresponding YANG model, which can describe the relationship between the YANG module and the nodes in the module, and through the generated API data, It embodies the data logic in the YANG model and shields the complexity of the underlying protocol operations.
  • the generating the corresponding API data based on the YANG model in step S3 includes:
  • step S2 the method further comprises: verifying the correctness and/or integrity of the YANG file.
  • the YANG model describes the relationship between the YANG module and the nodes within the module.
  • the method further includes: obtaining a full path of the directory where the YANG file to be parsed is stored and a full path of the generated code.
  • an embodiment of the present invention further provides a method for compiling based on a YANG model, including the following steps:
  • Step S4 Receive application program interface (API) data, where the API data is generated by parsing a YANG model obtained by the YANG file;
  • API application program interface
  • Step S5 generating protocol data according to the API data
  • Step S6 Establish a connection with the proxy server, and send the protocol data to the proxy server through the connection.
  • the step S5 includes: obtaining a data transmission object and a data access object in the API data, and generating protocol data according to the data transmission object and the data access object, where the data transmission object is used to store information of the configuration node,
  • the data access object is configured to process a data transmission object according to a format requirement of the packet to generate a packet to be abstractly encapsulated.
  • the method in this embodiment further includes:
  • Step S7 Receive result data fed back by the proxy server, and parse the protocol content according to the result data;
  • step S8 the content of the protocol is encapsulated and returned to the user equipment.
  • the method further includes: acquiring configuration information, where the configuration information includes one or more of the following: proxy server information, user equipment information, session management information, transaction management information, and operation information.
  • the method further includes: abstractly encapsulating the API data.
  • step S8 includes: encapsulating the success information into a successful API class, and returning to the user equipment;
  • step S8 includes: encapsulating the error information into an error API class, and returning to the user equipment.
  • step S8 includes: encapsulating the node information into an API service data class, and returning to the user equipment.
  • an embodiment of the present invention further provides an application program interface based on a YANG model, including:
  • the obtaining module 101 is configured to obtain a YANG file to be parsed
  • the parsing module 103 is configured to parse the YANG file to obtain a corresponding YANG model
  • the compiling module 104 is configured to generate corresponding API data based on the YANG model.
  • the application program interface further includes:
  • the verification module 102 is arranged to verify the correctness and/or integrity of the YANG file.
  • the obtaining module 101 is further configured to obtain a full path of the directory where the YANG file to be parsed and a full path of the generated code.
  • an embodiment of the present invention further provides a plug-in component based on a YANG model, including:
  • the receiving module 202 is configured to receive API data, where the API data is generated by parsing the YANG file obtained by the YANG file;
  • the generating module 203 is configured to generate protocol data according to the API data
  • the connection module 204 is configured to establish a connection with a proxy server through which the protocol data is sent to the proxy server.
  • the generating module 203 is configured to generate protocol data according to the API data by:
  • a packet to be abstractly encapsulated is generated after the data transmission object is processed according to the format requirement of the packet.
  • the plug-in component further includes:
  • the feedback module 205 is configured to receive result data fed back by the proxy server
  • the protocol module 206 is configured to parse the protocol content according to the result data
  • the encapsulating module 207 is configured to encapsulate the content of the protocol and return it to the user equipment.
  • the generating module 203 is further configured to perform abstract encapsulation on the API data.
  • the encapsulation module 207 includes a successful encapsulation unit 2072, an error encapsulation unit 2074, and a service encapsulation unit 2076.
  • the successful encapsulating unit 2072 is configured to encapsulate the success information into a successful API class and return it to the user equipment when the protocol content parsed according to the result data is success information;
  • the error encapsulation unit 2074 is configured to encapsulate the error information into an error API class and return it to the user equipment when the protocol content parsed according to the result data is error information.
  • the service encapsulation unit 2076 is configured to encapsulate the node information into an API service data class and return the information to the user equipment when the protocol content parsed according to the result data is node information.
  • the plug-in program component further includes: a configuration module 201, configured to acquire configuration information before the receiving module 202 receives the API data, where the configuration information includes one or more of the following: proxy server information, user equipment information, Session management information, transaction management information, and operation information.
  • an embodiment of the present invention further provides a network automation system based on a YANG model, including: the application program interface and the plug-in program component.
  • Plug-in There can be multiple plug-in (Plug-in) components in a system, and the Plug-in component can be NETCONF protocol implementation, can also be CLI, SNMP, RESTCONF, OVSDB and other protocol implementation.
  • the embodiment of the invention is mainly divided into two parts functions.
  • Part 1 API data generation
  • the corresponding API data is generated by the YANG model.
  • Configure necessary information such as device information, session management information, transaction management information, operation information, etc.
  • Agent Generate protocol data and send it to the agent (Agent);
  • the result data received from the Agent is obtained, the protocol content is parsed, the content is encapsulated, and the content is returned to the user.
  • the lower layer provides an abstract encapsulation, so that the lower layer does not need to pay attention to the implementation details, and shields various differences on the upper layer, and also provides device management, session management, transaction management and the like.
  • the configuration file is configured, including the full path of the directory where the source YANG file is stored, and the full path of the directory where the generated code is stored.
  • the user can add the prefix name in front of the generated code.
  • the YANG file is parsed according to RFC6020, and the version number, correctness and integrity of the YANG file are confirmed (that is, the dependency relationship with other YANG modules is met), and the corresponding YANG model is generated.
  • the following is an example of generating a JAVA code based on a YANG file.
  • the configuration file includes but is not limited to the following:
  • yangSource indicates the full path of the directory where the source YANG file is stored.
  • the codePath represents the full path to the directory where the generated code is stored.
  • the prefixName indicates the prefix name added by the user (that is, the package name for JAVA).
  • the YANG file prepared by the user is as follows:
  • the Java API provided includes a business data class and a Data Access Object (DAO).
  • Business data classes can be used directly or inherited, while data access object classes can manipulate data models, such as create, merge, replace, etc., which cause data to be added during operations.
  • the corresponding logo on it.
  • TestYang.java is the business data class
  • TestYangDAO.java is the data access object class.
  • mapping rules from YANG model to JAVA class For example, the mapping rules from YANG model to JAVA class:
  • nodes are converted to classes, and node names are converted to class names.
  • the data child node is used as the attribute of the father node.
  • the TYPE type is the data type of the parent node.
  • Class name container name
  • Variable type varies according to the type of leaf
  • the user wants to configure the node data, taking NETCONF as the PLUG-IN component as an example:
  • Step 301 Initialize: read configuration file information, such as an Agent device identifier (ID), an Internet Protocol (IP, Internet Protocol) address, a port number, an account password, and the like.
  • ID Agent device identifier
  • IP Internet Protocol
  • IP Internet Protocol
  • Step 302 Fill in the configuration information of the corresponding node information by using the corresponding version of the service data class.
  • Step 303 Call the corresponding data access object class, and establish a NETCONF connection to the Agent according to the ID and IP information of the Agent device.
  • Step 304 Call the Plug-in component (NETCONF component) to generate a NETCONF protocol packet.
  • NETCONF component Plug-in component
  • Step 305 Send the NETCONF protocol packet generated in step 304 to the agent end according to the channel established in step 303.
  • Step 306 Receive a NETCONF message result returned by the agent end, and parse the result into the content part.
  • Step 307 Encapsulate the returned content into an API and return it to the user.
  • different APIs are encapsulated. If a successful result is returned, it is encapsulated into a successful API class; if a failed error message is returned, it is encapsulated into the error API class.
  • the user wants to get the node data, taking NETCONF as the PLUG-IN component as an example:
  • Step 401 System initialization: Read configuration file information, such as Agent device ID, IP address, port number, account password, and the like.
  • Step 402 Fill in the node information that is to be acquired by using the service data class.
  • Step 403 Call the corresponding version of the data access object class, and establish a NETCONF connection to the Agent according to the ID and IP information of the Agent device.
  • Step 404 Call the Plug-in component (NETCONF component) to generate a NETCONF protocol packet.
  • NETCONF component Plug-in component
  • Step 405 Send the NETCONF protocol packet generated in step 404 to the agent end according to the channel established in step 403.
  • Step 406 Receive a result of the NETCONF message returned by the agent, and parse the result. Part of the capacity.
  • Step 407 Encapsulate the returned content into an API and return it to the user.
  • different APIs are encapsulated. If the node information is returned, it is encapsulated into the corresponding API business data class; if the failed error information is returned, it is encapsulated into the error API class.
  • the embodiment of the present invention further provides a computer readable storage medium storing computer executable instructions, and when the computer executable instructions are executed, the YANG model based compilation method provided by the embodiment shown in FIG. 1 is implemented.
  • the embodiment of the present invention further provides a computer readable storage medium, which stores computer executable instructions, and when the computer executable instructions are executed, implements the YANG model based compilation method provided by the embodiment shown in FIG. 2 .
  • each module/unit in the above embodiment may be implemented in the form of hardware, for example, by implementing an integrated circuit to implement its corresponding function, or may be implemented in the form of a software function module, for example, executing a program stored in the memory by a processor. / instruction to achieve its corresponding function.
  • the embodiments of the present application are not limited to any particular form of combination of hardware and software.
  • the embodiment of the present application provides a YANG model-based compiling method, interface, component, and system, which greatly reduces user requirements for NETCONF protocol messages and YANG model expertise, reduces unnecessary steps for manually configuring devices, and reduces users. Develop maintenance costs.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Stored Programmes (AREA)
  • Computer And Data Communications (AREA)

Abstract

一种基于YANG模型的编译方法,包括:获取待解析YANG文件;解析所述YANG文件获得对应的YANG模型;基于所述YANG模型生成对应的应用程序接口API数据。通过上述方案,降低了用户对NETCONF协议报文和YANG模型的专业知识的要求,减少了不必要的手动配置设备的步骤,并降低了用户开发维护成本。

Description

一种基于YANG模型的编译方法、及对应的接口、组件和系统 技术领域
本申请涉及但不限于网络通信技术领域,尤其涉及一种基于YANG模型的编译方法、及对应的接口、组件和系统。
背景技术
随着网络规模的不断扩大,网络配置管理自动化、智能化的需求越来越迫切。软件定义网络(Software Defined Network,SDN)技术是解决方案之一。通过集中的SDN控制器实现网络资源的统一管理与整合后,采用规范化的北向接口为上层应用提供按需的网络资源及服务,实现网络能力开放。目前,NETCONF协议是可以满足以上要求的协议之一,作为北向接口的通道存在。YANG是一种模型定义语言,对NETCONF协议操作的配置数据和管理数据进行建模。但是目前NETCONF报文下发,需要用户对NETCONF协议以及YANG建模语言非常精通或者网管侧需要对YANG模型进行硬编码,这样在多变的网络服务和不断变化的设备中是不灵活的。
发明内容
以下是对本文详细描述的主题的概述。本概述并非是为了限制权利要求的保护范围。
本发明实施例提供一种基于YANG模型的编译方法、及对应的接口、组件和系统,能够解决相关技术中配置网络设备不灵活、网管侧需要对YANG模型进行硬编码的问题。
本发明实施例提供一种基于YANG模型的编译方法,包括:
获取待解析YANG文件;
解析所述YANG文件获得对应的YANG模型;
基于所述YANG模型生成对应的应用程序接口(API)数据。
可选地,解析所述YANG文件获得对应的YANG模型之前,所述方法 还包括:验证所述YANG文件的正确性和/或完整性。
可选地,所述YANG模型描述YANG模块和模块内节点之间的关系。
可选地,获取待解析YANG文件之前,所述方法还包括:
获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
可选地,基于所述YANG模型生成对应的API数据包括:
将所述YANG模型根据映射规则生成对应的API数据,其中,所述API数据包括数据传输对象和数据访问对象,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
本发明实施例还提供一种基于YANG模型的编译方法,包括:
接收应用程序接口(API)数据;所述API数据通过解析YANG文件获得的YANG模型生成;
根据所述API数据生成协议数据;
与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
可选地,根据所述API数据生成协议数据包括:
获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
可选地,将所述协议数据发送至代理服务器之后,所述方法还包括:
接收所述代理服务器端反馈的结果数据,根据所述结果数据解析出协议内容;
将所述协议内容封装后,返回给用户设备。
可选地,接收API数据之前,所述方法还包括:
获取配置信息,其中,所述配置信息包括以下的一项或者多项:
代理服务器信息、用户设备信息、会话管理信息、事务管理信息、操作 信息。
可选地,根据所述API数据生成协议数据之前,所述方法还包括:
对所述API数据进行抽象封装。
可选地,
当根据所述结果数据解析出的协议内容为成功信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述成功信息封装入成功API类中,返回给用户设备;
当根据所述结果数据解析出的协议内容为错误信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述错误信息封装入报错API类中,返回给用户设备;
当根据所述结果数据解析出的协议内容为节点信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述节点信息封装入API业务数据类中,返回给用户设备。
本发明实施例还提供一种基于YANG模型的应用程序接口,包括:
获取模块,设置为获取待解析YANG文件;
解析模块,设置为解析所述YANG文件获得对应的YANG模型;
编译模块,设置为基于所述YANG模型生成对应的API数据。
可选地,所述接口还包括:
验证模块,设置为验证所述YANG文件的正确性和/或完整性。
可选地,所述获取模块还设置为获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
本发明实施例还提供一种基于YANG模型的插件程序组件,包括:
接收模块,设置为接收API数据;其中,所述API数据通过解析YANG文件获得的YANG模型生成;
生成模块,设置为根据所述API数据生成协议数据;
连接模块,设置为与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
可选地,所述生成模块设置为通过以下方式根据所述API数据生成协议数据:
获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
可选地,所述组件还包括:
反馈模块,设置为接收所述代理服务器端反馈的结果数据;
协议模块,设置为根据所述结果数据解析出协议内容;
封装模块,设置为将所述协议内容封装后,返回给用户设备。
可选地,所述生成模块还设置为:对所述API数据进行抽象封装。
可选地,所述封装模块包括成功封装单元、报错封装单元、业务封装单元,
所述成功封装单元,设置为当根据所述结果数据解析出的协议内容为成功信息时,将所述成功信息封装入成功API类中,返回给用户设备;
所述报错封装单元,设置为当根据所述结果数据解析出的协议内容为错误信息时,将所述错误信息封装入报错API类中,返回给用户设备;
所述业务封装单元,设置为当根据所述结果数据解析出的协议内容为节点信息时,将所述节点信息封装入API业务数据类中,返回给用户设备。
本发明实施例还提供一种基于YANG模型的网络自动化系统,包括:上述接口和组件。
本发明实施例还提供一种计算机可读存储介质,存储有计算机可执行指令,所述计算机可执行指令被执行时实现一种基于YANG模型的编译方法。
本发明实施例还提供一种计算机可读存储介质,存储有计算机可执行指令,所述计算机可执行指令被执行时实现另一种基于YANG模型的编译方法。
本发明实施例具有如下有益效果:
本发明实施例提供的方案体现了YANG模型中的数据逻辑,屏蔽了 NETCONF操作的复杂性。并且,将用户所要进行的配置查询等操作请求转化成对应的协议报文,可以将报文发送到对应的设备上,获得操作结果,还能够控制设备不同版本的YANG模型。这样就大大降低用户对NETCONF协议报文和YANG模型的专业知识的要求,减少不必要的手动配置设备的步骤,并降低用户开发维护成本。
在阅读并理解了附图和详细描述后,可以明白其他方面。
附图概述
图1是本发明实施例的一种基于YANG模型的编译方法的流程图;
图2是本发明实施例的另一种基于YANG模型的编译方法的流程图;
图3是本发明实施例的一种基于YANG模型的应用程序接口的结构示意图;
图4是本发明实施例的一种基于YANG模型的插件程序组件的结构示意图;
图5是本发明实施例的一种基于YANG模型的网络自动化系统的结构示意图;
图6是实施例一的根据YANG文件生成相应API数据的流程图;
图7是实施例一的API展现的类图;
图8是实施例二和三的获得协议内容并返回给用户设备的流程图。
本发明的实施方式
下面结合附图对本发明实施例进行说明,需要说明的是,在不冲突的情况下,本申请中的实施例和实施例中的特征可以相互任意组合。
如图1所示,本发明实施例提供一种基于YANG模型的编译方法,包括以下步骤:
步骤S1、获取待解析YANG文件;
步骤S2、解析所述YANG文件获得对应的YANG模型;
步骤S3、基于所述YANG模型生成对应的应用程序接口(API,Application Programming Interface)数据。
本发明实施例提供的一种基于YANG模型的编译方法主要用来读取、解析YANG文件,并得到对应的YANG模型,能够描述YANG模块和模块内节点之间的关系,通过生成的API数据,体现了YANG模型中的数据逻辑,屏蔽了底层协议操作的复杂性。
步骤S3的基于所述YANG模型生成对应的API数据包括:
将所述YANG模型根据映射规则生成对应的API数据,其中,所述API数据包括数据传输对象和数据访问对象,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
其中,步骤S2之前,所述方法还包括:验证所述YANG文件的正确性和/或完整性。
所述YANG模型描述YANG模块和模块内节点之间的关系。
步骤S1之前,所述方法还包括:获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
如图2所示,本发明实施例还提供一种基于YANG模型的编译方法,包括以下步骤:
步骤S4、接收应用程序接口(API)数据;其中,所述API数据通过解析YANG文件获得的YANG模型生成;
步骤S5、根据所述API数据生成协议数据;
步骤S6、与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
其中,步骤S5包括:获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
其中,步骤S6之后,本实施例的方法还包括:
步骤S7、接收所述代理服务器端反馈的结果数据,根据所述结果数据解析出协议内容;
步骤S8、将所述协议内容封装后,返回给用户设备。
步骤S4之前,所述方法还包括:获取配置信息,其中,所述配置信息包括以下的一项或者多项:代理服务器信息、用户设备信息、会话管理信息、事务管理信息、操作信息。
步骤S5之前,所述方法还包括:对所述API数据进行抽象封装。
当根据所述结果数据解析出的协议内容为成功信息时,步骤S8包括:将所述成功信息封装入成功API类中,返回给用户设备;
当根据所述结果数据解析出的协议内容为错误信息时,步骤S8包括:将所述错误信息封装入报错API类中,返回给用户设备
当根据所述结果数据解析出的协议内容为节点信息时,步骤S8包括:将所述节点信息封装入API业务数据类中,返回给用户设备。
如图3所示,本发明实施例还提供一种基于YANG模型的应用程序接口,包括:
获取模块101,设置为获取待解析YANG文件;
解析模块103,设置为解析所述YANG文件获得对应的YANG模型;
编译模块104,设置为基于所述YANG模型生成对应的API数据。
所述应用程序接口还包括:
验证模块102,设置为验证所述YANG文件的正确性和/或完整性。
所述获取模块101还设置为获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
如图4所示,本发明实施例还提供一种基于YANG模型的插件程序组件,包括:
接收模块202,设置为接收API数据;其中,所述API数据通过解析YANG文件获得的YANG模型生成;
生成模块203,设置为根据所述API数据生成协议数据;
连接模块204,设置为与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
所述生成模块203设置为通过以下方式根据所述API数据生成协议数据:
获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
所述插件程序组件还包括:
反馈模块205,设置为接收所述代理服务器端反馈的结果数据;
协议模块206,设置为根据所述结果数据解析出协议内容;
封装模块207,设置为将所述协议内容封装后,返回给用户设备。
所述生成模块203还设置为对所述API数据进行抽象封装。
其中,所述封装模块207包括成功封装单元2072、报错封装单元2074、业务封装单元2076,
所述成功封装单元2072,设置为当根据所述结果数据解析出的协议内容为成功信息时,将所述成功信息封装入成功API类中,返回给用户设备;
所述报错封装单元2074,设置为当根据所述结果数据解析出的协议内容为错误信息时,将所述错误信息封装入报错API类中,返回给用户设备
所述业务封装单元2076,设置为当根据所述结果数据解析出的协议内容为节点信息时,将所述节点信息封装入API业务数据类中,返回给用户设备。
所述插件程序组件还包括:配置模块201,设置为在接收模块202接收API数据之前,获取配置信息,其中,所述配置信息包括以下的一项或者多项:代理服务器信息、用户设备信息、会话管理信息、事务管理信息、操作信息。
如图5所示,本发明实施例还提供一种基于YANG模型的网络自动化系统,包括:上述应用程序接口和插件程序组件。
一个系统中可以有多个插件程序(Plug-in)组件,Plug-in组件可以是 NETCONF协议实现,也可以是CLI、SNMP、RESTCONF、OVSDB等协议实现。
本发明实施例主要分成两部分功能。
第一部分:API数据生成;
通过读取所有需要被使用的YANG文件,验证YANG文件的正确性和完整性,并得到YANG模型;
通过YANG模型生成相应的API数据。
第二部分:如何使用API数据;
配置必要的信息,例如设备信息、会话管理信息、事务管理信息、操作信息等;
生成协议数据,将其发送给代理(Agent)端;
得到从Agent端收到的结果数据,解析出协议内容,将内容封装后,并返回给用户。
其中,对下层提供了抽象封装,使得下层无需关注实现细节,对上屏蔽各种差异,还提供了设备管理、会话管理、事务管理等实现。
以下通过具体实施例对本申请方案进行说明。
实施例一
本实施例的流程图如图6所示。
首先,对配置文件进行配置,主要包括源YANG文件存放的目录全路径、存放生成代码的目录全路径,用户可以添加在生成代码前面的前缀名等。
其次,根据RFC6020来解析YANG文件,确认YANG文件的版本号、正确性、完整性(即符合与其他YANG模块的依赖关系),并生成相应的YANG模型。
最后,根据YANG映射规则,生成对应的API代码。
下面以根据YANG文件生成JAVA代码为例说明。
配置文件中,包含但不局限于以下内容:
yangSource=E:\\
codePath=D:\\
prefixName=com.zte
yangSource表示的是源YANG文件所存放的目录全路径。codePath表示的是生成代码所存储的目录全路径。prefixName表示的是用户添加的前缀名(对于JAVA来说也就是包名)。
用户准备的YANG文件如下:
Figure PCTCN2016086916-appb-000001
Figure PCTCN2016086916-appb-000002
获取YANG文件,经过分析,该YANG文件是正确和完整的。
随后根据YANG模型转化为JAVA代码的映射规则,来生成对应的Java API。所提供的Java API包括了业务数据类和数据访问对象类(Data Access Object,DAO)。业务数据类可以被用直接使用或者继承,而数据访问对象类可以对数据模型进行操作,如创建(create)、合并(merge)、替换(replace)等,这些操作会使得数据在操作中被加上相应的标识。用户在设置节点信息的时候,只需要关注业务数据类;而用户需要对这些节点信息进行操作的时候,则使用数据访问对象类DAO。
本实施例生成的API数据的文件位置关系如下所示:
Figure PCTCN2016086916-appb-000003
其中的“com.zte”为用户前缀名,在com.zte.testYang.rev20150514包中,TestYang.java为业务数据类,TestYangDAO.java为数据访问对象类。
以com.zte.testYang.rev20150514.a包中的B.java为例,显示了B.java中类的继承关系、内部成员等,文件如下:
Public class B
Extends AbstractYangDate
{
private String c;
private com.zte.testYang.rev20150514.typedef.DDef d;
}
举例说明YANG模型到JAVA类的映射规则:
YANG模型中节点转化为类,节点名转化为类名。数据子节点作为父亲结点的属性。TYPE类型作为父亲节点的数据类型。
1、module
映射对象:类
类名称:module名称
例如在文件位置关系中,表示为TestYang.java;
2、container
映射对象:类
类名称:container名称
例如在文件位置关系中,表示为A.java;
3、list
映射对象:类
类名称:list名称
例如在文件位置关系中,表示为B.java;
4、leaf
映射对象:成员变量
变量名称:leaf名称
变量类型:根据leaf的type不同而不同;
例如在上面文件中,表示为private String c;
Private com.zte.testYang.rev20150514.typedef.DDef d;
该API展现的类图如图7所示,最后,将这些文件存入到codePath所指定的目录中。
实施例二
如图8所示,用户想要配置节点数据,以NETCONF作为PLUG-IN组件为例:
步骤301、初始化:读取配置文件信息,如Agent设备标识(ID)、网络协议(IP,Internet Protocol)地址、端口号、账号密码等。
步骤302、使用相应版本的业务数据类填入相应节点信息的配置信息。
步骤303、调用相应的数据访问对象类,根据Agent设备的ID、IP等信息,建立到Agent端的NETCONF连接。
步骤304、调用Plug-in组件(NETCONF组件),生成NETCONF协议报文。
步骤305、根据步骤303建立的通道,发送步骤304生成的NETCONF协议报文到Agent端。
步骤306、收到Agent端返回的NETCONF消息结果;将结果解析出内容部分。
步骤307、将返回的内容封装入API中返回给用户。这里根据返回结果的不同,会封装入不同的API。如果返回成功结果,则封装入成功的API类中;如果返回失败的错误信息,则封装入报错API类中。
实施例三
如图8所示,用户想要获取节点数据,以NETCONF作为PLUG-IN组件为例:
步骤401、系统初始化:读取配置文件信息,如Agent设备ID、IP地址、端口号、账号密码等。
步骤402、使用业务数据类填入想要获取的节点信息。
步骤403、调用相应版本的数据访问对象类,根据Agent设备的ID、IP等信息,建立到Agent端的NETCONF连接。
步骤404、调用Plug-in组件(NETCONF组件),生成NETCONF协议报文。
步骤405、根据步骤403建立的通道,发送步骤404生成的NETCONF协议报文到Agent端。
步骤406、收到Agent端返回的NETCONF消息结果;将结果解析出内 容部分。
步骤407、将返回的内容封装入API中返回给用户。这里根据返回结果的不同,会封装入不同的API。如果返回节点信息,则将其封装入对应的API业务数据类中;如果返回失败的错误信息,则封装入报错API类中。
本发明实施例还提供一种计算机可读存储介质,存储有计算机可执行指令,所述计算机可执行指令被执行时实现图1所示实施例提供的基于YANG模型的编译方法。
本发明实施例还提供一种计算机可读存储介质,存储有计算机可执行指令,所述计算机可执行指令被执行时实现图2所示实施例提供的基于YANG模型的编译方法。
本领域普通技术人员可以理解上述方法中的全部或部分步骤可通过程序来指令相关硬件(例如处理器)完成,所述程序可以存储于计算机可读存储介质中,如只读存储器、磁盘或光盘等。可选地,上述实施例的全部或部分步骤也可以使用一个或多个集成电路来实现。相应地,上述实施例中的各模块/单元可以采用硬件的形式实现,例如通过集成电路来实现其相应功能,也可以采用软件功能模块的形式实现,例如通过处理器执行存储于存储器中的程序/指令来实现其相应功能。本申请实施例不限制于任何特定形式的硬件和软件的结合。
虽然本申请所揭示的实施方式如上,但其内容只是为了便于理解本申请的技术方案而采用的实施方式,并非用于限定本申请。任何本申请所属技术领域内的技术人员,在不脱离本申请所揭示的核心技术方案的前提下,可以在实施的形式和细节上做任何修改与变化,但本申请所限定的保护范围,仍须以所附的权利要求书限定的范围为准。
工业实用性
本申请实施例提供一种基于YANG模型的编译方法、接口、组件及系统,大大降低用户对NETCONF协议报文和YANG模型的专业知识的要求,减少不必要的手动配置设备的步骤,并降低用户开发维护成本。

Claims (20)

  1. 一种基于YANG模型的编译方法,包括:
    获取待解析YANG文件;
    解析所述YANG文件获得对应的YANG模型;
    基于所述YANG模型生成对应的应用程序接口API数据。
  2. 如权利要求1所述的方法,所述解析所述YANG文件获得对应的YANG模型之前,所述方法还包括:
    验证所述YANG文件的正确性和/或完整性。
  3. 如权利要求1所述的方法,其中,所述YANG模型描述YANG模块和模块内节点之间的关系。
  4. 如权利要求1所述的方法,所述获取待解析YANG文件之前,所述方法还包括:
    获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
  5. 如权利要求1所述的方法,其中,所述基于所述YANG模型生成对应的API数据包括:
    将所述YANG模型根据映射规则生成对应的API数据,其中,所述API数据包括数据传输对象和数据访问对象,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
  6. 一种基于YANG模型的编译方法,包括:
    接收应用程序接口API数据;其中,所述API数据通过解析YANG文件获得的YANG模型生成;
    根据所述API数据生成协议数据;
    与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
  7. 如权利要求6所述的方法,其中,所述根据所述API数据生成协议数据包括:
    获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
  8. 如权利要求6所述的方法,将所述协议数据发送至代理服务器之后,所述方法还包括:
    接收所述代理服务器端反馈的结果数据,根据所述结果数据解析出协议内容;
    将所述协议内容封装后,返回给用户设备。
  9. 如权利要求6所述的方法,所述接收API数据之前,所述方法还包括:
    获取配置信息,其中,所述配置信息包括以下的一项或者多项:代理服务器信息、用户设备信息、会话管理信息、事务管理信息、操作信息。
  10. 如权利要求6所述的方法,所述根据所述API数据生成协议数据之前,所述方法还包括:对所述API数据进行抽象封装。
  11. 如权利要求8所述的方法,其中,
    当根据所述结果数据解析出的协议内容为成功信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述成功信息封装入成功API类中,返回给用户设备;
    当根据所述结果数据解析出的协议内容为错误信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述错误信息封装入报错API类中,返回给用户设备;
    当根据所述结果数据解析出的协议内容为节点信息时,所述将所述协议内容封装后,返回给用户设备,包括:将所述节点信息封装入API业务数据类中,返回给用户设备。
  12. 一种基于YANG模型的应用程序接口,包括:
    获取模块,设置为获取待解析YANG文件;
    解析模块,设置为解析所述YANG文件获得对应的YANG模型;
    编译模块,设置为基于所述YANG模型生成对应的应用程序接口API数据。
  13. 如权利要求12所述的接口,所述接口还包括:
    验证模块,设置为验证所述YANG文件的正确性和/或完整性。
  14. 如权利要求12所述的接口,其中,所述获取模块还设置为获取待解析YANG文件存放的目录全路径和生成代码的目录全路径。
  15. 一种基于YANG模型的插件程序组件,包括:
    接收模块,设置为接收应用程序接口API数据;其中,所述API数据通过解析YANG文件获得的YANG模型生成;
    生成模块,设置为根据所述API数据生成协议数据;
    连接模块,设置为与代理服务器建立连接,通过所述连接将所述协议数据发送至代理服务器。
  16. 如权利要求15所述的组件,其中,所述生成模块设置为通过以下方式根据所述API数据生成协议数据:
    获得所述API数据中的数据传输对象和数据访问对象,根据所述数据传输对象和数据访问对象生成协议数据,其中,所述数据传输对象用于存放配置节点的信息,所述数据访问对象用于对数据传输对象按照报文的格式要求进行处理后生成待抽象封装的报文。
  17. 如权利要求15所述的组件,所述组件还包括:
    反馈模块,设置为接收所述代理服务器端反馈的结果数据;
    协议模块,设置为根据所述结果数据解析出协议内容;
    封装模块,设置为将所述协议内容封装后,返回给用户设备。
  18. 如权利要求15所述的组件,其中,所述生成模块还设置为:对所述API数据进行抽象封装。
  19. 如权利要求17所述的组件,其中,所述封装模块包括成功封装单元、报错封装单元、业务封装单元,
    所述成功封装单元,设置为当根据所述结果数据解析出的协议内容为成功信息时,将所述成功信息封装入成功API类中,返回给用户设备;
    所述报错封装单元,设置为当根据所述结果数据解析出的协议内容为错误信息时,将所述错误信息封装入报错API类中,返回给用户设备;
    所述业务封装单元,设置为当根据所述结果数据解析出的协议内容为节点信息时,将所述节点信息封装入API业务数据类中,返回给用户设备。
  20. 一种基于YANG模型的网络自动化系统,包括:权利要求12至14任一项所述接口和权利要求15至19任一项所述组件。
PCT/CN2016/086916 2015-09-30 2016-06-23 一种基于yang模型的编译方法、及对应的接口、组件和系统 WO2017054531A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201510642373.3 2015-09-30
CN201510642373.3A CN106559251B (zh) 2015-09-30 2015-09-30 一种基于yang模型的编译方法、及对应的接口、组件和系统

Publications (1)

Publication Number Publication Date
WO2017054531A1 true WO2017054531A1 (zh) 2017-04-06

Family

ID=58417551

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2016/086916 WO2017054531A1 (zh) 2015-09-30 2016-06-23 一种基于yang模型的编译方法、及对应的接口、组件和系统

Country Status (2)

Country Link
CN (1) CN106559251B (zh)
WO (1) WO2017054531A1 (zh)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111294313A (zh) * 2018-12-07 2020-06-16 中国电信股份有限公司 接入设备的控制方法及控制器
CN112631694A (zh) * 2020-12-11 2021-04-09 远光软件股份有限公司 一种api接口封装调用方法及系统
CN112882719A (zh) * 2021-03-01 2021-06-01 山东浪潮通软信息科技有限公司 一种编译方法、装置、设备及存储介质
US20210176131A1 (en) * 2018-08-20 2021-06-10 Huawei Technologies Co., Ltd. Network configuration method, apparatus, and system
CN112988409A (zh) * 2019-12-18 2021-06-18 腾讯科技(深圳)有限公司 一种接口调用方法、装置、计算机设备及存储介质
US11252035B2 (en) * 2018-09-30 2022-02-15 Huawei Technologies Co., Ltd. Data configuration method and apparatus
CN114500299A (zh) * 2022-02-14 2022-05-13 北京华环电子股份有限公司 光传送网设备的软件定义网络管控方法及系统

Families Citing this family (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109033483B (zh) * 2017-06-12 2023-11-14 中兴通讯股份有限公司 一种在yang模型中定义数据关系的方法、装置及系统
CN109144489B (zh) * 2017-06-16 2021-11-05 上海赛特斯信息科技股份有限公司 基于Yang语言模型的状态数据处理方法
CN109116828B (zh) * 2017-06-22 2023-03-17 中兴通讯股份有限公司 一种控制器中模型代码配置方法和装置
CN108055142B (zh) * 2017-09-30 2021-02-02 广州西麦科技股份有限公司 一种vCPE设备的接口自动化配置方法及系统
CN108055143A (zh) * 2017-09-30 2018-05-18 广州西麦科技股份有限公司 一种SDN-Hub的配置方法和系统
CN110768811B (zh) * 2018-07-26 2022-02-22 中国电信股份有限公司 更新yang模型文件库的方法、装置和系统
CN110830275B (zh) * 2018-08-08 2022-03-25 中兴通讯股份有限公司 一种转发器配置方法、装置、设备及可读存储介质
CN109361550B (zh) * 2018-11-21 2021-06-08 国家计算机网络与信息安全管理中心 网络设备配置管理的方法、装置及设备
CN109947995B (zh) * 2019-02-14 2020-12-15 烽火通信科技股份有限公司 一种高级模型与低级模型的自动映射方法及系统
CN110007924A (zh) * 2019-03-29 2019-07-12 烽火通信科技股份有限公司 Yang模型配置界面的自动化构建方法及系统
CN112241276B (zh) * 2019-07-19 2022-04-22 华为技术有限公司 一种设备的升级方法及装置
CN112187525B (zh) 2019-10-31 2021-08-20 华为技术有限公司 设备管理方法、装置、系统、设备及存储介质
CN111416736B (zh) * 2020-03-12 2022-11-11 北京星网锐捷网络技术有限公司 网络设备的配置管理方法、装置、计算设备及存储介质
CN111988179B (zh) * 2020-08-21 2023-02-03 华信塞姆(成都)科技有限公司 一种yang模型管理系统、方法和存储介质
CN112260855B (zh) * 2020-09-22 2023-04-18 北京安博通科技股份有限公司 一种网络设备的功能模块配置方法、设备及存储介质
CN112636973A (zh) * 2020-12-22 2021-04-09 南方电网深圳数字电网研究院有限公司 基于netconf协议的自动化云网融合方法
CN113300888B (zh) * 2021-05-21 2022-07-22 刘超 一种yang模型浏览器及客户端设备
CN113590213B (zh) * 2021-06-24 2023-04-25 深圳开源互联网安全技术有限公司 组件维护方法、电子设备及存储介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101883082A (zh) * 2009-05-06 2010-11-10 华为技术有限公司 获取网络配置协议服务端建模文件信息的方法、设备和系统
US20120110028A1 (en) * 2010-11-01 2012-05-03 Athreya Arjun P Translating an object-oriented data model to a yang data model
CN103281197A (zh) * 2013-04-08 2013-09-04 浙江工商大学 一种基于NETCONF的ForCES配置方法
CN104243198A (zh) * 2013-06-21 2014-12-24 中兴通讯股份有限公司 一种基于网络配置协议的网络管理方法和系统
US20150049631A1 (en) * 2013-08-19 2015-02-19 Cisco Technology, Inc. Topology aware provisioning in a software-defined networking environment

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101883082A (zh) * 2009-05-06 2010-11-10 华为技术有限公司 获取网络配置协议服务端建模文件信息的方法、设备和系统
US20120110028A1 (en) * 2010-11-01 2012-05-03 Athreya Arjun P Translating an object-oriented data model to a yang data model
CN103281197A (zh) * 2013-04-08 2013-09-04 浙江工商大学 一种基于NETCONF的ForCES配置方法
CN104243198A (zh) * 2013-06-21 2014-12-24 中兴通讯股份有限公司 一种基于网络配置协议的网络管理方法和系统
US20150049631A1 (en) * 2013-08-19 2015-02-19 Cisco Technology, Inc. Topology aware provisioning in a software-defined networking environment

Cited By (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20210176131A1 (en) * 2018-08-20 2021-06-10 Huawei Technologies Co., Ltd. Network configuration method, apparatus, and system
US11570049B2 (en) * 2018-08-20 2023-01-31 Huawei Technologies Co., Ltd. Network configuration method, apparatus, and system
US11252035B2 (en) * 2018-09-30 2022-02-15 Huawei Technologies Co., Ltd. Data configuration method and apparatus
CN111294313A (zh) * 2018-12-07 2020-06-16 中国电信股份有限公司 接入设备的控制方法及控制器
CN111294313B (zh) * 2018-12-07 2022-03-11 中国电信股份有限公司 接入设备的控制方法及控制器
CN112988409A (zh) * 2019-12-18 2021-06-18 腾讯科技(深圳)有限公司 一种接口调用方法、装置、计算机设备及存储介质
CN112988409B (zh) * 2019-12-18 2024-01-30 腾讯科技(深圳)有限公司 一种接口调用方法、装置、计算机设备及存储介质
CN112631694A (zh) * 2020-12-11 2021-04-09 远光软件股份有限公司 一种api接口封装调用方法及系统
CN112631694B (zh) * 2020-12-11 2023-08-11 远光软件股份有限公司 一种api接口封装调用方法及系统
CN112882719A (zh) * 2021-03-01 2021-06-01 山东浪潮通软信息科技有限公司 一种编译方法、装置、设备及存储介质
CN112882719B (zh) * 2021-03-01 2024-03-22 浪潮通用软件有限公司 一种编译方法、装置、设备及存储介质
CN114500299A (zh) * 2022-02-14 2022-05-13 北京华环电子股份有限公司 光传送网设备的软件定义网络管控方法及系统

Also Published As

Publication number Publication date
CN106559251B (zh) 2019-03-15
CN106559251A (zh) 2017-04-05

Similar Documents

Publication Publication Date Title
WO2017054531A1 (zh) 一种基于yang模型的编译方法、及对应的接口、组件和系统
CN109361550B (zh) 网络设备配置管理的方法、装置及设备
EP3700132A1 (en) Supporting compilation and extensibility on unified graph-based intent models
US9100345B2 (en) Systems and/or methods for supporting a generic framework for integration of on-premises and SaaS applications with security, service mediation, administrative, and/or monitoring capabilities
KR100453824B1 (ko) 이기종 네트워크 장비의 구성 관리를 위한 엑스엠엘 기반망 관리 시스템 및 방법
US11290353B2 (en) Derivation of network service descriptor from network service requirements
WO2020062959A1 (zh) 配置数据的方法及装置
WO2014190544A1 (zh) 应用部署方法和设备
US11838176B1 (en) Provisioning and deploying RAN applications in a RAN system
CN114254606A (zh) 微服务框架模型
US11411812B2 (en) Dynamic service creation for microservice-based integration service
US11824715B2 (en) Configuration method, related apparatus, and system
US11354491B1 (en) Systems and methods for improved data modeling and translation
WO2023213262A1 (zh) 网格代理扩展的方法和装置
Ma et al. Model-based management of service composition
US9977700B2 (en) System and method for providing an application programming interface for deploying a service bus artifact from a local development environment to a cloud environment
Altarui et al. DBCChecker: A Bigraph-Based Tool for Checking Security Properties of Container Compositions
Corsaro et al. The data distribution service
Parák et al. Evolution of the Open Cloud Computing Interface.
CN116633727A (zh) 基于Nacos服务的网关动态路由方法、装置、计算机设备及计算机可读存储介质
Ghiasi-Shirazi et al. RSCM technology for developing runtime-reconfigurable telecommunication applications
CN117956017A (zh) 一种提供业务数据的方法及相关装置
Werner UML profile for communicating systems: A new UML profile for the specification and description of internet communication and signaling protocols
Bhuiya Unified hosting environment for the container monitoring and the adaptation

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

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 16850155

Country of ref document: EP

Kind code of ref document: A1