Documentation ¶
Index ¶
- Variables
- type Cache
- type Circuit
- type Controller
- type Controllers
- type InvalidSessionError
- type Link
- type LinkMode
- type LinkState
- type MultipleErrors
- type Network
- func (network *Network) AcceptMetrics(metrics *metrics_pb.MetricsMessage)
- func (network *Network) AddCapability(capability string)
- func (network *Network) AddRouterPresenceHandler(h RouterPresenceHandler)
- func (network *Network) AllConnectedRouters() []*Router
- func (network *Network) CircuitUpdated(sessionId *identity.TokenId, circuit *Circuit)
- func (network *Network) ConnectRouter(r *Router)
- func (network *Network) ConnectedRouter(id string) bool
- func (network *Network) CreateCircuit(srcR, dstR *Router) (*Circuit, error)
- func (network *Network) CreateCircuitWithPath(path []*Router) (*Circuit, error)
- func (network *Network) CreateRouter(router *Router) error
- func (network *Network) CreateSession(srcR *Router, clientId *identity.TokenId, serviceId string) (*session, error)
- func (network *Network) Debug() string
- func (network *Network) DisconnectRouter(r *Router)
- func (network *Network) GetAllLinks() []*Link
- func (network *Network) GetAllLinksForRouter(routerId string) []*Link
- func (network *Network) GetAllSessions() []*session
- func (network *Network) GetAppId() *identity.TokenId
- func (network *Network) GetCapabilities() []string
- func (network *Network) GetConnectedRouter(routerId string) *Router
- func (network *Network) GetControllers() *Controllers
- func (network *Network) GetDb() boltz.Db
- func (network *Network) GetEventDispatcher() event.Dispatcher
- func (network *Network) GetLink(linkId *identity.TokenId) (*Link, bool)
- func (network *Network) GetMetricsRegistry() metrics.Registry
- func (network *Network) GetRouter(routerId string) (*Router, error)
- func (network *Network) GetServiceCache() Cache
- func (network *Network) GetSession(sessionId *identity.TokenId) (*session, bool)
- func (network *Network) GetStores() *db.Stores
- func (network *Network) GetTraceController() trace.Controller
- func (network *Network) LinkChanged(l *Link)
- func (network *Network) LinkConnected(id *identity.TokenId, connected bool) error
- func (network *Network) RemoveSession(sessionId *identity.TokenId, now bool) error
- func (network *Network) RouterChanged(r *Router)
- func (network *Network) Run()
- func (network *Network) SessionCreated(sessionId *identity.TokenId, clientId *identity.TokenId, serviceId string, ...)
- func (network *Network) SessionDeleted(sessionId *identity.TokenId)
- func (network *Network) Shutdown()
- func (network *Network) SnapshotDatabase() error
- func (network *Network) UpdateCircuit(circuit *Circuit) (*Circuit, error)
- func (network *Network) ValidateTerminators(r *Router)
- type Options
- type PathAndCost
- type Router
- type RouterController
- func (ctrl *RouterController) BaseList(query string) (*models.EntityListResult, error)
- func (ctrl *RouterController) BaseLoad(id string) (models.Entity, error)
- func (ctrl *RouterController) BaseLoadInTx(tx *bbolt.Tx, id string) (models.Entity, error)
- func (ctrl *RouterController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
- func (ctrl *RouterController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
- func (ctrl *RouterController) Create(router *Router) error
- func (ctrl *RouterController) Delete(id string) error
- func (ctrl *RouterController) IsConnected(id string) bool
- func (ctrl *RouterController) Read(id string) (entity *Router, err error)
- type RouterPresenceHandler
- type RoutingTerminator
- type Service
- type ServiceController
- func (ctrl *ServiceController) BaseList(query string) (*models.EntityListResult, error)
- func (ctrl *ServiceController) BaseLoad(id string) (models.Entity, error)
- func (ctrl *ServiceController) BaseLoadInTx(tx *bbolt.Tx, id string) (models.Entity, error)
- func (ctrl *ServiceController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
- func (ctrl *ServiceController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
- func (ctrl *ServiceController) Create(s *Service) error
- func (ctrl *ServiceController) Delete(id string) error
- func (ctrl *ServiceController) Read(id string) (entity *Service, err error)
- func (ctrl *ServiceController) RemoveFromCache(id string)
- func (ctrl *ServiceController) Update(s *Service) error
- type SessionEventHandler
- type Terminator
- type TerminatorController
- func (ctrl *TerminatorController) BaseList(query string) (*models.EntityListResult, error)
- func (ctrl *TerminatorController) BaseLoad(id string) (models.Entity, error)
- func (ctrl *TerminatorController) BaseLoadInTx(tx *bbolt.Tx, id string) (models.Entity, error)
- func (ctrl *TerminatorController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
- func (ctrl *TerminatorController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
- func (ctrl *TerminatorController) Create(s *Terminator) (string, error)
- func (ctrl *TerminatorController) Delete(id string) error
- func (ctrl *TerminatorController) Patch(terminator *Terminator, checker boltz.FieldChecker) error
- func (ctrl *TerminatorController) Query(query string) (*TerminatorListResult, error)
- func (ctrl *TerminatorController) Read(id string) (entity *Terminator, err error)
- func (ctrl *TerminatorController) Update(terminator *Terminator) error
- type TerminatorListResult
Constants ¶
This section is empty.
Variables ¶
View Source
var DbSnapshotTooFrequentError = dbSnapshotTooFrequentError{}
View Source
var SessionEventHandlerRegistry = cowslice.NewCowSlice(make([]SessionEventHandler, 0))
Functions ¶
This section is empty.
Types ¶
type Circuit ¶
type Circuit struct { Path []*Router Links []*Link Binding string IngressId string EgressId string }
func (*Circuit) CreateRouteMessages ¶
func (*Circuit) EgressRouter ¶
type Controller ¶
type Controller interface { models.EntityRetriever // contains filtered or unexported methods }
type Controllers ¶
type Controllers struct { Terminators *TerminatorController Routers *RouterController Services *ServiceController // contains filtered or unexported fields }
func NewControllers ¶
func NewControllers(db boltz.Db, stores *db.Stores) *Controllers
type InvalidSessionError ¶
type InvalidSessionError struct {
// contains filtered or unexported fields
}
func (InvalidSessionError) Error ¶
func (err InvalidSessionError) Error() string
type Link ¶
type Link struct { Id *identity.TokenId Src *Router Dst *Router Down bool Cost int SrcLatency int64 DstLatency int64 // contains filtered or unexported fields }
func (*Link) CurrentState ¶
type MultipleErrors ¶
type MultipleErrors []error
func (MultipleErrors) Error ¶
func (e MultipleErrors) Error() string
type Network ¶
type Network struct { *Controllers // contains filtered or unexported fields }
func NewNetwork ¶
func (*Network) AcceptMetrics ¶
func (network *Network) AcceptMetrics(metrics *metrics_pb.MetricsMessage)
func (*Network) AddCapability ¶
func (*Network) AddRouterPresenceHandler ¶
func (network *Network) AddRouterPresenceHandler(h RouterPresenceHandler)
func (*Network) AllConnectedRouters ¶
func (*Network) CircuitUpdated ¶ added in v0.12.1
func (*Network) ConnectRouter ¶
func (*Network) ConnectedRouter ¶
func (*Network) CreateCircuit ¶
func (*Network) CreateCircuitWithPath ¶
func (*Network) CreateRouter ¶
func (*Network) CreateSession ¶
func (*Network) DisconnectRouter ¶
func (*Network) GetAllLinks ¶
func (*Network) GetAllLinksForRouter ¶
func (*Network) GetAllSessions ¶
func (network *Network) GetAllSessions() []*session
func (*Network) GetCapabilities ¶
func (*Network) GetConnectedRouter ¶
func (*Network) GetControllers ¶
func (network *Network) GetControllers() *Controllers
func (*Network) GetEventDispatcher ¶ added in v0.12.1
func (network *Network) GetEventDispatcher() event.Dispatcher
func (*Network) GetMetricsRegistry ¶ added in v0.12.3
func (*Network) GetServiceCache ¶
func (*Network) GetSession ¶
func (*Network) GetTraceController ¶
func (network *Network) GetTraceController() trace.Controller
func (*Network) LinkChanged ¶
func (*Network) LinkConnected ¶
func (*Network) RemoveSession ¶
func (*Network) RouterChanged ¶
func (*Network) SessionCreated ¶ added in v0.12.1
func (*Network) SessionDeleted ¶ added in v0.12.1
func (*Network) SnapshotDatabase ¶ added in v0.11.40
func (*Network) UpdateCircuit ¶
func (*Network) ValidateTerminators ¶
type Options ¶
type Options struct { CycleSeconds uint32 Smart struct { RerouteFraction float32 RerouteCap uint32 } }
func DefaultOptions ¶
func DefaultOptions() *Options
func LoadOptions ¶
type PathAndCost ¶
type PathAndCost struct {
// contains filtered or unexported fields
}
type Router ¶
type Router struct { models.BaseEntity Name string Fingerprint *string AdvertisedListener string Control channel2.Channel CostFactor int Connected concurrenz.AtomicBoolean }
type RouterController ¶
type RouterController struct {
// contains filtered or unexported fields
}
func (*RouterController) BaseList ¶
func (ctrl *RouterController) BaseList(query string) (*models.EntityListResult, error)
func (*RouterController) BaseLoadInTx ¶
func (*RouterController) BasePreparedList ¶
func (ctrl *RouterController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
func (*RouterController) BasePreparedListAssociated ¶
func (ctrl *RouterController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
func (*RouterController) Create ¶
func (ctrl *RouterController) Create(router *Router) error
func (*RouterController) Delete ¶
func (ctrl *RouterController) Delete(id string) error
func (*RouterController) IsConnected ¶
func (ctrl *RouterController) IsConnected(id string) bool
type RouterPresenceHandler ¶
type RoutingTerminator ¶
type RoutingTerminator struct { RouteCost uint32 Stats xt.Stats *Terminator }
func (*RoutingTerminator) GetPrecedence ¶
func (r *RoutingTerminator) GetPrecedence() xt.Precedence
func (*RoutingTerminator) GetRouteCost ¶
func (r *RoutingTerminator) GetRouteCost() uint32
func (*RoutingTerminator) GetTerminatorStats ¶
func (r *RoutingTerminator) GetTerminatorStats() xt.Stats
type Service ¶
type Service struct { models.BaseEntity Name string TerminatorStrategy string Terminators []*Terminator }
type ServiceController ¶
type ServiceController struct {
// contains filtered or unexported fields
}
func (*ServiceController) BaseList ¶
func (ctrl *ServiceController) BaseList(query string) (*models.EntityListResult, error)
func (*ServiceController) BaseLoadInTx ¶
func (*ServiceController) BasePreparedList ¶
func (ctrl *ServiceController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
func (*ServiceController) BasePreparedListAssociated ¶
func (ctrl *ServiceController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
func (*ServiceController) Create ¶
func (ctrl *ServiceController) Create(s *Service) error
func (*ServiceController) Delete ¶
func (ctrl *ServiceController) Delete(id string) error
func (*ServiceController) Read ¶
func (ctrl *ServiceController) Read(id string) (entity *Service, err error)
func (*ServiceController) RemoveFromCache ¶
func (ctrl *ServiceController) RemoveFromCache(id string)
func (*ServiceController) Update ¶
func (ctrl *ServiceController) Update(s *Service) error
type SessionEventHandler ¶ added in v0.12.1
type Terminator ¶
type Terminator struct { models.BaseEntity Service string Router string Binding string Address string Cost uint16 PeerData map[uint32][]byte }
func (*Terminator) GetAddress ¶
func (entity *Terminator) GetAddress() string
func (*Terminator) GetBinding ¶
func (entity *Terminator) GetBinding() string
func (*Terminator) GetCost ¶
func (entity *Terminator) GetCost() uint16
func (*Terminator) GetPeerData ¶
func (entity *Terminator) GetPeerData() xt.PeerData
func (*Terminator) GetRouterId ¶
func (entity *Terminator) GetRouterId() string
func (*Terminator) GetServiceId ¶
func (entity *Terminator) GetServiceId() string
type TerminatorController ¶
type TerminatorController struct {
// contains filtered or unexported fields
}
func (*TerminatorController) BaseList ¶
func (ctrl *TerminatorController) BaseList(query string) (*models.EntityListResult, error)
func (*TerminatorController) BaseLoadInTx ¶
func (*TerminatorController) BasePreparedList ¶
func (ctrl *TerminatorController) BasePreparedList(query ast.Query) (*models.EntityListResult, error)
func (*TerminatorController) BasePreparedListAssociated ¶
func (ctrl *TerminatorController) BasePreparedListAssociated(id string, typeLoader models.EntityRetriever, query ast.Query) (*models.EntityListResult, error)
func (*TerminatorController) Create ¶
func (ctrl *TerminatorController) Create(s *Terminator) (string, error)
func (*TerminatorController) Delete ¶
func (ctrl *TerminatorController) Delete(id string) error
func (*TerminatorController) Patch ¶
func (ctrl *TerminatorController) Patch(terminator *Terminator, checker boltz.FieldChecker) error
func (*TerminatorController) Query ¶
func (ctrl *TerminatorController) Query(query string) (*TerminatorListResult, error)
func (*TerminatorController) Read ¶
func (ctrl *TerminatorController) Read(id string) (entity *Terminator, err error)
func (*TerminatorController) Update ¶
func (ctrl *TerminatorController) Update(terminator *Terminator) error
type TerminatorListResult ¶
type TerminatorListResult struct { Entities []*Terminator models.QueryMetaData // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.