aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2019-07-26vom: migration from scvpp to vomYohanPipereau1-14/+17
Change-Id: I79609f0bee9b8307da0d9bf704babe8ba06dba4d Signed-off-by: YohanPipereau <ypiperea@cisco.com> Co-authored-by: Pavel Kotucek <pavel.kotucek@pantheon.tech> Co-authored-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2019-06-18Minor changes to Cmake/Make systemYohanPipereau1-1/+1
- Verbose mode to run scvpp unit test - Set scvpp unit test timeout to 60 seconds - Set cmake required version number to 3.0 - Set libscvpp pkgconfig file version to PROJECT_VERSION Variable used in CmakeListt Change-Id: I07c4ecb805a820c78007773f2f3ff68ee5be9cc3 Signed-off-by: YohanPipereau <ypiperea@cisco.com>
2019-05-22Introduce a new registration mechanism to sweetcomb.jackiechen19851-1/+4
Sweetcomb plugins register for various [initialization] events by placing structures and __attribute__((constructor)) functions into the library. When sysrepo plugin is initializing, the framework walks constructor-generated singly-linked structure lists, calls the indicated functions. Change-Id: I0cb078391f2662e4f6dd08c1a383173f203adf2a Signed-off-by: jackiechen1985 <xiaobo.chen@tieto.com>
2019-04-18when "make build-package", we need to "make build-scvpp" first, because we useJunfeng Wang1-2/+4
pkgconfig to find dependence(libscvpp.so). this patch will compile libscvpp.so when compile plugin,you needn't extra step. Change-Id: I9dcd733ec3535a8fa5310f75ae141712320affa5 Signed-off-by: Junfeng Wang <Drenfong.Wang@intel.com>
2019-03-29Sweetcomb global cleanupYohanPipereau1-1/+0
-Merge IETF and Openconfig to use SCVPP 2 -Move L2 bridge from sc_vpp_interface to sc_vpp_v3po -Implement tav2 dump -Make openconfig-interfaces functions static -Try one more dispatch after failure in VAPI_CALL -Add error return code for scvpp -Remove unused length maccros -Return appropriate error code for interface dump when interface not found -Improve scvpp test suite -Change get_interface_id prototype -Use interface_dump_iface in openconfig_interface. -No more vapi types in openconfig_interfaces.c -Move openconfig_local_routing VAPI operations to sc_vpp_ip -Implement a multiple dump with a stack data structure -Comment out state_cb code from openconfig_local_routing to use new functions later. -Rename YANG model to their fully qualified name : <module>@<revision> -Remove headers almost empty and put registration declaration in sc_model.h -Shorten vapi context global variable name -Reorganize scvpp unit test suite -Add instructions to Makefile to install/uninstall YANG models in sysrepo. -Add this new instructions to README.md. -Reimplement interface_dump_all -Use a common message at INFO Log Level to know when sysrepo callbacks are triggered -Remove old structure to perform dump of all interfaces -Reimplement get_interface_name and add scvpp test for it -Clean sys_util -Use UNUSED maccro everywhere to have lighter prototypes -Have ietf-interfaces:interfaces-state work with new dump function -Add setup and teardown for NAT tests -Remove unused tapv2 dump -Remove useless sysrepo module callback -Remove xpath_find_first_key usage in openconfig-interfaces -Remove xpath_find_first_key in oc_local_routing and in the rest of sweetcomb -Reorganize scvpp include dir and fix scvpp_test new warnings -Fix scvpp tests for ip routes -Factorize scvpp nat and test return code of its function -Correct test_dump_if_all if there is an existing hardware interface -Implement a per-prefix dump in scvpp -free changes iterator in ietf-interfaces -Add new XPATH in oc local-routing -Introduce helper methods for sysrepo config callbacks -Factorize config callback -Refactor the openconfig-local-routing config callback -Use common foreach_change to iterate over changes in all models -Create a sample directory gathering example of configurations supposed to work with sweetcomb -Fix state callback of oc-local-routing -Add new sample for get operation on next-hop -foreach_elt maccro condition forgets to read one element Change-Id: I8e87fce577a00337977588f057a6e095a20f457c Signed-off-by: YohanPipereau <ypiperea@cisco.com>
2019-03-20Plugin - init NATAndrej Kozemcak1-0/+1
Change-Id: I072b3bc018812d9f51cb7269bfdbb98b19db873c Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2019-03-18Fix Cmake build environment and harden WarningsYohanPipereau1-12/+24
-Remove unused sweetcomb CmakeList.txt Warnings -Add more Warnings to plugins, scvpp and gNMI Cmake projects -Remove unused/useless Cmake options in CmakeList files & add comments -Improve gNMI CMakeList.txt and make it independant of a gRPC cmake build for later package integration. -Add FindGRPC.cmake -Remove the use of CXX17 variant and use a dedicated Cmake module for gRPC Change-Id: Iafa3c031d12802e8d8c914cbce6b119c2a5c4800 Signed-off-by: Yohan Pipereau <ypiperea@cisco.com>
2019-03-08Move sys_util files to plugins root directoryAndrej Kozemcak1-1/+1
Change-Id: I2c7041fd34a99ebbe8e7a20ce87da9f39e548458 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2019-02-28This commit changes the way models are registered.YohanPipereau1-1/+1
Registering a new model is now done using model_register function which is generic enough to take care of every model family (IETF, Openconfig, ...). Every model (ex: openconfig-interfaces) contain one or several xpaths. Every model (ex: openconfig-interfaces) has its own dedicated C file (ex: openconfig-interfaces.c) with its dedicated xpath_t structure in it. This structure is a mapping of all xpaths of a model to their associated callbacks. It still contains all informations needed by sr_*_subscribe functions. Thus, xpath_t is an external array used in every model, it is seen as a global symbol in shared library. And because these external arrays are passed as arguments to a function, maccros defining the size of these xpath_t arrays have been defined. datastore_e datastructure has been removed to rely on the one provided by sysrepo API. The subscription linked list which was used has been removed because sysrepo already takes care of this. Now, the same subscription_session_ctx_t is used for all subscriptions as it was the case in ietf_subscribe_events. Thus cleanup callback has been simplified to a simple sysrepo_unsubscribe instead of going through the entire Linked List. Change-Id: I43d52f619be27b6216bb3b9d197518b032306fa7 Signed-off-by: Yohan Pipereau <ypiperea@cisco.com>
2019-02-27Move bapi to scvpp plugin.Andrej Kozemcak1-12/+1
Change-Id: I87be68ddad4827d6dfa04aad5ea725efae97157a Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2019-02-20fix package run errordrenfong.wang1-5/+1
Change-Id: I5eb02817ad0b25649f89bfd2d8df022665baf064 Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-02-14fix rpm build and deb builddrenfong.wang1-3/+7
Change-Id: I6a48e0aaf6ab1fdccac30ccca7b8ac85513da2e9 Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-02-12fix gcc compile argsdrenfong.wang1-5/+5
Change-Id: Ib6c6042619e7afcb561300762e49dbbfd2ff57cf Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-02-12fix gcc compile argsdrenfong.wang1-1/+1
Change-Id: I9352e17b20d718b6385c93e4d92cb156adcca60a Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-01-23centos gcc-4.8.5 should commpile plugin with gnu99drenfong.wang1-0/+7
Change-Id: Id642632b07ce6787af364a4ea576777e3453831a Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-01-23add share lib install pathdrenfong.wang1-2/+2
Change-Id: I29f5a4e67afa218a55fabda4781ac6dbe5912a85 Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2019-01-22CMake, find all VPP library, add VOM libraryAndrej Kozemcak1-0/+4
Change-Id: Iee4e6dc1ec8c3000f725e656750ae121cbf370ab Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2019-01-22add option to build dependence from source and install vppdrenfong.wang1-0/+1
Change-Id: I4caa8737c9d5dd13f6d6c5e01e646801e5dab8a1 Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
2018-12-20Rework ietf yang implementationHongjun Ni1-1/+1
Change-Id: I2396a1dc062a14adb7e9b60a6ea5c9491118aa20 Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
2018-12-18Merge "Binary-api wrappers: IP and interfaces"Hongjun Ni1-1/+10
2018-12-18Binary-api wrappers: IP and interfacesPavol Hanzel1-1/+10
Change-Id: I3b27dae29498346bf9baccd650d5260b0bfc6491 Signed-off-by: Pavol Hanzel <pavol.hanzel@pantheon.tech>
2018-12-17Register function for openconfig modules.Andrej Kozemcak1-0/+1
Change-Id: Iaa2ad537e1665adc53df3b645c9e2c3ad3329ac3 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2018-12-12Openconfig local route xpath.Andrej Kozemcak1-0/+1
Change-Id: Id180b4a54ab6a67f25077120fead854da79ec2b6 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2018-12-12Openconfig interfaces xpath.Andrej Kozemcak1-0/+2
Change-Id: If8af26c846ae82b7ef311e7d0b431c026ad0da25 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
2018-11-28Rework vpp connection based on vapi libraryHongjun Ni1-4/+11
Change-Id: I3b41b4141fd7ef7577f4f2cc9193b9c623a9d6d7 Signed-off-by: Chuanguo Wang <wangchuanguo@huachentel.com> Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
2018-11-20Fix comments on copyright etc.Hongjun Ni1-1/+1
Change-Id: I605d76017ba61a477532fb6ab3e4bea9b93e5119 Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
2018-11-20Initial code commit for Sweetcomb projectHongjun Ni1-0/+39
The initial code is contruted by Cisco and HuachenTel. It supports three key features: 1). Keeps compatible with IETF Yang Model and Honeycomb Yang Model. 2). Supports mulitiple clients to configure VPP simultaneously. 3). Automatically connect to VPP. Change-Id: I3dda4fddb14062e5f113d505c6a7ee64d60c44c0 Signed-off-by: Rastislav Szabo <raszabo@cisco.com> Signed-off-by: Chuanguo Wang <wangchuanguo@huachentel.com> Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>