Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
/ onos-api Public archive
forked from onosproject/onos-api

gRPC API definitions for µONOS

Notifications You must be signed in to change notification settings

IntelSmartEdge/onos-api

 
 

Repository files navigation

PROJECT NOT UNDER ACTIVE MANAGEMENT

This project will no longer be maintained by Intel.

Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project.

Intel no longer accepts patches to this project.

If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the open source software community, please create your own fork of this project.

Contact: [email protected]

onos-api

gRPC API definitions for the µONOS platform

Overview

This repository houses not only the .proto files, but also a number of automatically generated artifacts, e.g. .pb.go, .py files and similarly for other languages that may be added in the future.

The source tree structure is paritioned into proto, which contains the canonical protobuf definitions and a top-level directory for each of the supported languages. The structure within each of the language-specific directories reflects the idoms and conventions appropriate to each language.

Proto

The top-level package for the protobuf definitions is onos and the next level subpackage is the name of the particular platform subsystem, such as config, topo, etc. This directory tree should contain exclusively the .proto files and not be tainted by any other artifacts, especially any language-specific ones.

The proto files are compiled and processed via build/bin/compile-protos.sh script, which is invoked by the Makefile. All protofiles here should follow the established guidelines and must pass the protobuf lint checker enforcing these conventions.

Golang

The go source tree holds the automatically-generated .pb.go artifacts and also any manually authored .go source files written in support of the Golang bindings. To minimize the churn and to exercise tighter control over versioning, the generated files are also versioned and maintained in the SCM repo.

The root package of the module is github.com/onosproject/onos-api/go/onos, with subpackages being named after each of the platform subsystems, mirroring the structure of the proto packages. Golang projects that wish to import µONOS API packages should include the following in the requirements section of their go.mod file:

require (
  ...
	github.com/onosproject/onos-api/go v0.6.1
  ...
)

Additionally, Go bindings are generated with mocks for testing with gomock. Mocks of Protobuf interfaces can be constructed via the same package as the interfaces they mock:

import topoapi "github.com/onosproject/onos-api/go/onos/topo"
...
mockClient := topoapi.NewMockTopoClient(ctrl)

Python

The python source tree holds gRPC bindings are generated for Python. Pyhton bindings are generated with the python-betterproto protoc plugin and support Python3's asyncio framework.

About

gRPC API definitions for µONOS

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 84.1%
  • Shell 11.6%
  • Makefile 2.6%
  • Python 1.7%