Giter Club home page Giter Club logo

onos-api's Introduction

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.

onos-api's People

Contributors

onos-builder avatar tomikazi avatar ray-milkey avatar adibrastegarnia avatar kuujo avatar woojoong88 avatar seancondon avatar tweoss avatar shadansari avatar raphaelvrosa avatar omikader avatar emakeev avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.