dbadapter

package
v1.4.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 11, 2018 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package dbadapter implements Domain Specific Language (DSL) for resync and change of VPP and Linux configuration.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DataChangeDSL

type DataChangeDSL struct {
	// contains filtered or unexported fields
}

DataChangeDSL is an implementation of Domain Specific Language (DSL) for changes of both Linux and VPP configuration.

func NewDataChangeDSL

func NewDataChangeDSL(txn keyval.ProtoTxn) *DataChangeDSL

NewDataChangeDSL returns a new instance of DataChangeDSL which implements the data change DSL for both Linux and VPP config (inherits dbadapter from defaultplugins). Transaction <txn> is used to propagate changes to plugins.

func (*DataChangeDSL) Delete

func (dsl *DataChangeDSL) Delete() linux.DeleteDSL

Delete initiates a chained sequence of data change DSL statements removing existing configurable objects.

func (*DataChangeDSL) Put

func (dsl *DataChangeDSL) Put() linux.PutDSL

Put initiates a chained sequence of data change DSL statements and declares new configurable objects or changes existing ones.

func (*DataChangeDSL) Send

func (dsl *DataChangeDSL) Send() vpp_clientv1.Reply

Send propagates requested changes to the plugins.

type DataResyncDSL

type DataResyncDSL struct {
	// contains filtered or unexported fields
}

DataResyncDSL is an implementation of Domain Specific Language (DSL) for data RESYNC of both Linux and VPP configuration.

func NewDataResyncDSL

func NewDataResyncDSL(txn keyval.ProtoTxn, listKeys func(prefix string) (keyval.ProtoKeyIterator, error)) *DataResyncDSL

NewDataResyncDSL returns a new instance of DataResyncDSL which implements the data RESYNC DSL for both Linux and VPP config (inherits dbadapter from defaultplugins). Transaction <txn> is used to propagate changes to plugins. Function <listKeys> is used to list keys with already existing configuration.

func (*DataResyncDSL) ACL

ACL adds VPP Access Control List to the RESYNC request.

func (*DataResyncDSL) AppNamespace added in v1.4.0

AppNamespace adds VPP Application namespaces to the RESYNC request

func (*DataResyncDSL) Arp added in v1.4.0

Arp adds VPP L3 ARP to the RESYNC request.

func (*DataResyncDSL) BD

BD adds VPP Bridge Domain to the RESYNC request.

func (*DataResyncDSL) BDFIB

BDFIB adds VPP L2 FIB to the RESYNC request.

func (*DataResyncDSL) BfdAuthKeys added in v1.0.5

func (dsl *DataResyncDSL) BfdAuthKeys(val *vpp_bfd.SingleHopBFD_Key) linux.DataResyncDSL

BfdAuthKeys adds VPP bidirectional forwarding detection key to the RESYNC request.

func (*DataResyncDSL) BfdEchoFunction added in v1.0.5

BfdEchoFunction adds VPP bidirectional forwarding detection echo function to the RESYNC request.

func (*DataResyncDSL) BfdSession added in v1.0.5

BfdSession adds VPP bidirectional forwarding detection session to the RESYNC request.

func (*DataResyncDSL) L4Features added in v1.4.0

func (dsl *DataResyncDSL) L4Features(val *vpp_l4.L4Features) linux.DataResyncDSL

L4Features adds L4 features to the RESYNC request

func (*DataResyncDSL) LinuxArpEntry added in v1.0.7

LinuxArpEntry adds Linux ARP entry to the RESYNC request.

func (*DataResyncDSL) LinuxInterface

LinuxInterface adds Linux interface to the RESYNC request.

func (*DataResyncDSL) LinuxRoute added in v1.0.7

LinuxRoute adds Linux route to the RESYNC request.

func (*DataResyncDSL) NAT44DNat added in v1.4.0

func (dsl *DataResyncDSL) NAT44DNat(nat44 *nat.Nat44DNat_DNatConfig) linux.DataResyncDSL

NAT44DNat adds a request to RESYNC a new DNAT configuration

func (*DataResyncDSL) NAT44Global added in v1.4.0

func (dsl *DataResyncDSL) NAT44Global(nat44 *nat.Nat44Global) linux.DataResyncDSL

NAT44Global adds a request to RESYNC global configuration for NAT44

func (*DataResyncDSL) ProxyArpInterfaces added in v1.4.0

ProxyArpInterfaces adds L3 proxy ARP interfaces to the RESYNC request.

func (*DataResyncDSL) ProxyArpRanges added in v1.4.0

ProxyArpRanges adds L3 proxy ARP ranges to the RESYNC request.

func (*DataResyncDSL) Send

func (dsl *DataResyncDSL) Send() vpp_clientv1.Reply

Send propagates the request to the plugins. It deletes obsolete keys if listKeys() (from constructor) function is not nil.

func (*DataResyncDSL) StaticRoute

func (dsl *DataResyncDSL) StaticRoute(staticRoute *vpp_l3.StaticRoutes_Route) linux.DataResyncDSL

StaticRoute adds VPP L3 Static Route to the RESYNC request.

func (*DataResyncDSL) StnRule added in v1.4.0

func (dsl *DataResyncDSL) StnRule(stn *vpp_stn.STN_Rule) linux.DataResyncDSL

StnRule adds Stn rule to the RESYNC request.

func (*DataResyncDSL) VppInterface

VppInterface adds VPP interface to the RESYNC request.

func (*DataResyncDSL) XConnect

XConnect adds VPP Cross Connect to the RESYNC request.

type DeleteDSL

type DeleteDSL struct {
	// contains filtered or unexported fields
}

DeleteDSL implements delete operations of data change DSL.

func (*DeleteDSL) ACL

func (dsl *DeleteDSL) ACL(aclName string) linux.DeleteDSL

ACL adds a request to delete an existing VPP Access Control List.

func (*DeleteDSL) AppNamespace added in v1.4.0

func (dsl *DeleteDSL) AppNamespace(id string) linux.DeleteDSL

AppNamespace adds a request to delete VPP Application namespace Note: current version does not support application namespace deletion

func (*DeleteDSL) Arp added in v1.4.0

func (dsl *DeleteDSL) Arp(ifaceName string, ipAddr string) linux.DeleteDSL

Arp adds a request to delete an existing VPP L3 ARP.

func (*DeleteDSL) BD

func (dsl *DeleteDSL) BD(bdName string) linux.DeleteDSL

BD adds a request to delete an existing VPP Bridge Domain.

func (*DeleteDSL) BDFIB

func (dsl *DeleteDSL) BDFIB(bdName string, mac string) linux.DeleteDSL

BDFIB adds a request to delete an existing VPP L2 Forwarding Information Base.

func (*DeleteDSL) BfdAuthKeys added in v1.0.5

func (dsl *DeleteDSL) BfdAuthKeys(bfdKey string) linux.DeleteDSL

BfdAuthKeys adds a request to delete an existing VPP bidirectional forwarding detection key.

func (*DeleteDSL) BfdEchoFunction added in v1.0.5

func (dsl *DeleteDSL) BfdEchoFunction(bfdEchoName string) linux.DeleteDSL

BfdEchoFunction adds a request to delete an existing VPP bidirectional forwarding detection echo function.

func (*DeleteDSL) BfdSession added in v1.0.5

func (dsl *DeleteDSL) BfdSession(bfdSessionIfaceName string) linux.DeleteDSL

BfdSession adds a request to delete an existing VPP bidirectional forwarding detection session.

func (*DeleteDSL) L4Features added in v1.4.0

func (dsl *DeleteDSL) L4Features() linux.DeleteDSL

L4Features adds a request to enable or disable L4 features

func (*DeleteDSL) LinuxArpEntry added in v1.0.7

func (dsl *DeleteDSL) LinuxArpEntry(entryName string) linux.DeleteDSL

LinuxArpEntry adds a request to delete Linux ARP entry.

func (*DeleteDSL) LinuxInterface

func (dsl *DeleteDSL) LinuxInterface(interfaceName string) linux.DeleteDSL

LinuxInterface adds a request to delete an existing Linux network interface.

func (*DeleteDSL) LinuxRoute added in v1.0.7

func (dsl *DeleteDSL) LinuxRoute(routeName string) linux.DeleteDSL

LinuxRoute adds a request to delete Linux route.

func (*DeleteDSL) NAT44DNat added in v1.4.0

func (dsl *DeleteDSL) NAT44DNat(label string) linux.DeleteDSL

NAT44DNat adds a request to delete a new DNAT configuration

func (*DeleteDSL) NAT44Global added in v1.4.0

func (dsl *DeleteDSL) NAT44Global() linux.DeleteDSL

NAT44Global adds a request to remove global configuration for NAT44

func (*DeleteDSL) ProxyArpInterfaces added in v1.4.0

func (dsl *DeleteDSL) ProxyArpInterfaces(label string) linux.DeleteDSL

ProxyArpInterfaces adds a request to delete an existing VPP L3 proxy ARP interfaces

func (*DeleteDSL) ProxyArpRanges added in v1.4.0

func (dsl *DeleteDSL) ProxyArpRanges(label string) linux.DeleteDSL

ProxyArpRanges adds a request to delete an existing VPP L3 proxy ARP ranges

func (*DeleteDSL) Put

func (dsl *DeleteDSL) Put() linux.PutDSL

Put changes the DSL mode to allow configuration editing.

func (*DeleteDSL) Send

func (dsl *DeleteDSL) Send() vpp_clientv1.Reply

Send propagates requested changes to the plugins.

func (*DeleteDSL) StaticRoute

func (dsl *DeleteDSL) StaticRoute(vrf uint32, dstAddr string, nextHopAddr string) linux.DeleteDSL

StaticRoute adds a request to delete an existing VPP L3 Static Route.

func (*DeleteDSL) StnRule added in v1.4.0

func (dsl *DeleteDSL) StnRule(ruleName string) linux.DeleteDSL

StnRule adds a request to delete an existing VPP Stn rule.

func (*DeleteDSL) VppInterface

func (dsl *DeleteDSL) VppInterface(ifaceName string) linux.DeleteDSL

VppInterface adds a request to delete an existing VPP network interface.

func (*DeleteDSL) XConnect

func (dsl *DeleteDSL) XConnect(rxIfaceName string) linux.DeleteDSL

XConnect adds a request to delete an existing VPP Cross Connect.

type PutDSL

type PutDSL struct {
	// contains filtered or unexported fields
}

PutDSL implements put operations of data change DSL.

func (*PutDSL) ACL

func (dsl *PutDSL) ACL(acl *vpp_acl.AccessLists_Acl) linux.PutDSL

ACL adds a request to create or update VPP Access Control List.

func (*PutDSL) AppNamespace added in v1.4.0

func (dsl *PutDSL) AppNamespace(appNs *vpp_l4.AppNamespaces_AppNamespace) linux.PutDSL

AppNamespace adds a request to create or update VPP Application namespace

func (*PutDSL) Arp added in v1.4.0

func (dsl *PutDSL) Arp(arp *vpp_l3.ArpTable_ArpEntry) linux.PutDSL

Arp adds a request to create or update VPP L3 ARP.

func (*PutDSL) BD

BD adds a request to create or update VPP Bridge Domain.

func (*PutDSL) BDFIB

func (dsl *PutDSL) BDFIB(fib *vpp_l2.FibTable_FibEntry) linux.PutDSL

BDFIB adds a request to create or update VPP L2 Forwarding Information Base.

func (*PutDSL) BfdAuthKeys added in v1.0.5

func (dsl *PutDSL) BfdAuthKeys(val *vpp_bfd.SingleHopBFD_Key) linux.PutDSL

BfdAuthKeys adds a request to create or update VPP bidirectional forwarding detection key.

func (*PutDSL) BfdEchoFunction added in v1.0.5

func (dsl *PutDSL) BfdEchoFunction(val *vpp_bfd.SingleHopBFD_EchoFunction) linux.PutDSL

BfdEchoFunction adds a request to create or update VPP bidirectional forwarding detection echo function.

func (*PutDSL) BfdSession added in v1.0.5

func (dsl *PutDSL) BfdSession(val *vpp_bfd.SingleHopBFD_Session) linux.PutDSL

BfdSession adds a request to create or update VPP bidirectional forwarding detection session.

func (*PutDSL) Delete

func (dsl *PutDSL) Delete() linux.DeleteDSL

Delete changes the DSL mode to allow removal of an existing configuration.

func (*PutDSL) L4Features added in v1.4.0

func (dsl *PutDSL) L4Features(val *vpp_l4.L4Features) linux.PutDSL

L4Features adds a request to enable or disable L4 features

func (*PutDSL) LinuxArpEntry added in v1.0.7

func (dsl *PutDSL) LinuxArpEntry(val *l3.LinuxStaticArpEntries_ArpEntry) linux.PutDSL

LinuxArpEntry adds a request to create or update Linux ARP entry.

func (*PutDSL) LinuxInterface

func (dsl *PutDSL) LinuxInterface(val *interfaces.LinuxInterfaces_Interface) linux.PutDSL

LinuxInterface adds a request to create or update Linux network interface.

func (*PutDSL) LinuxRoute added in v1.0.7

func (dsl *PutDSL) LinuxRoute(val *l3.LinuxStaticRoutes_Route) linux.PutDSL

LinuxRoute adds a request to create or update Linux route.

func (*PutDSL) NAT44DNat added in v1.4.0

func (dsl *PutDSL) NAT44DNat(nat44 *nat.Nat44DNat_DNatConfig) linux.PutDSL

NAT44DNat adds a request to create a new DNAT configuration

func (*PutDSL) NAT44Global added in v1.4.0

func (dsl *PutDSL) NAT44Global(nat44 *nat.Nat44Global) linux.PutDSL

NAT44Global adds a request to set global configuration for NAT44

func (*PutDSL) ProxyArpInterfaces added in v1.4.0

func (dsl *PutDSL) ProxyArpInterfaces(arp *vpp_l3.ProxyArpInterfaces_InterfaceList) linux.PutDSL

ProxyArpInterfaces adds a request to create or update VPP L3 proxy ARP interfaces.

func (*PutDSL) ProxyArpRanges added in v1.4.0

func (dsl *PutDSL) ProxyArpRanges(arp *vpp_l3.ProxyArpRanges_RangeList) linux.PutDSL

ProxyArpRanges adds a request to create or update VPP L3 proxy ARP ranges

func (*PutDSL) Send

func (dsl *PutDSL) Send() vpp_clientv1.Reply

Send propagates requested changes to the plugins.

func (*PutDSL) StaticRoute

func (dsl *PutDSL) StaticRoute(val *vpp_l3.StaticRoutes_Route) linux.PutDSL

StaticRoute adds a request to create or update VPP L3 Static Route.

func (*PutDSL) StnRule added in v1.4.0

func (dsl *PutDSL) StnRule(stn *vpp_stn.STN_Rule) linux.PutDSL

StnRule adds a request to create or update VPP Stn rule.

func (*PutDSL) VppInterface

func (dsl *PutDSL) VppInterface(val *vpp_intf.Interfaces_Interface) linux.PutDSL

VppInterface adds a request to create or update VPP network interface.

func (*PutDSL) XConnect

func (dsl *PutDSL) XConnect(val *vpp_l2.XConnectPairs_XConnectPair) linux.PutDSL

XConnect adds a request to create or update VPP Cross Connect.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL