 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- Constants
- func Open(path string) (boltz.Db, error)
- type Checkable
- type NameIndexedStore
- type Router
- type RouterStore
- type Service
- type ServiceStore
- type Stores
- func (store *Stores) AddCheckable(checkable Checkable)
- func (stores *Stores) CheckIntegrity(db boltz.Db, fix bool, errorHandler func(error, bool)) error
- func (stores *Stores) CheckIntegrityInTx(db boltz.Db, tx *bbolt.Tx, fix bool, errorHandler func(error, bool)) error
- func (stores *Stores) GetStoreForEntity(entity boltz.Entity) boltz.CrudStore
- func (stores *Stores) GetStoreForEntityType(entityType string) boltz.CrudStore
- func (stores *Stores) GetStoreList() []boltz.CrudStore
 
- type Terminator
- func (entity *Terminator) GetAddress() string
- func (entity *Terminator) GetBinding() string
- func (entity *Terminator) GetCost() uint16
- func (entity *Terminator) GetEntityType() string
- func (entity *Terminator) GetHostId() string
- func (entity *Terminator) GetInstanceId() string
- func (entity *Terminator) GetInstanceSecret() []byte
- func (entity *Terminator) GetPeerData() xt.PeerData
- func (entity *Terminator) GetPrecedence() xt.Precedence
- func (entity *Terminator) GetRouterId() string
- func (entity *Terminator) GetServiceId() string
- func (entity *Terminator) LoadValues(_ boltz.CrudStore, bucket *boltz.TypedBucket)
- func (entity *Terminator) SetValues(ctx *boltz.PersistContext)
 
- type TerminatorStore
- type TestContext
Constants ¶
      View Source
      
  
    const ( FieldServiceEgress = "egress" FieldServiceBinding = "binding" FieldServiceEndpoint = "endpoint" )
      View Source
      
  
    const ( EntityTypeRouters = "routers" FieldRouterFingerprint = "fingerprint" FieldRouterCost = "cost" FieldRouterNoTraversal = "noTraversal" )
      View Source
      
  
    const ( EntityTypeServices = "services" FieldServiceTerminatorStrategy = "terminatorStrategy" )
      View Source
      
  
    const ( EntityTypeTerminators = "terminators" FieldTerminatorService = "service" FieldTerminatorRouter = "router" FieldTerminatorBinding = "binding" FieldTerminatorAddress = "address" FieldTerminatorInstanceId = "instanceId" FieldTerminatorInstanceSecret = "instanceSecret" FieldTerminatorCost = "cost" FieldTerminatorPrecedence = "precedence" FieldServerPeerData = "peerData" FieldTerminatorHostId = "hostId" )
      View Source
      
  
    const CurrentDbVersion = 5
    
      View Source
      
  
    const (
	FieldName = "name"
)
    
      View Source
      
  
const (
	RootBucket = "ziti"
)
    Variables ¶
This section is empty.
Functions ¶
Types ¶
type NameIndexedStore ¶ added in v0.17.0
type Router ¶
type Router struct {
	boltz.BaseExtEntity
	Name        string
	Fingerprint *string
	Cost        uint16
	NoTraversal bool
}
    func (*Router) GetEntityType ¶
func (*Router) LoadValues ¶
func (entity *Router) LoadValues(_ boltz.CrudStore, bucket *boltz.TypedBucket)
func (*Router) SetValues ¶
func (entity *Router) SetValues(ctx *boltz.PersistContext)
type RouterStore ¶
type Service ¶
type Service struct {
	boltz.BaseExtEntity
	Name               string
	TerminatorStrategy string
}
    func (*Service) GetEntityType ¶
func (*Service) LoadValues ¶
func (entity *Service) LoadValues(_ boltz.CrudStore, bucket *boltz.TypedBucket)
func (*Service) SetValues ¶
func (entity *Service) SetValues(ctx *boltz.PersistContext)
type ServiceStore ¶
type Stores ¶
type Stores struct {
	Terminator TerminatorStore
	Router     RouterStore
	Service    ServiceStore
	// contains filtered or unexported fields
}
    func (*Stores) AddCheckable ¶ added in v0.17.62
func (*Stores) CheckIntegrity ¶ added in v0.17.62
func (*Stores) CheckIntegrityInTx ¶ added in v0.17.62
func (*Stores) GetStoreForEntity ¶
func (*Stores) GetStoreForEntityType ¶ added in v0.18.0
func (*Stores) GetStoreList ¶
type Terminator ¶
type Terminator struct {
	boltz.BaseExtEntity
	Service        string
	Router         string
	Binding        string
	Address        string
	InstanceId     string
	InstanceSecret []byte
	Cost           uint16
	Precedence     string
	PeerData       xt.PeerData
	HostId         string
}
    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) GetEntityType ¶
func (entity *Terminator) GetEntityType() string
func (*Terminator) GetHostId ¶ added in v0.20.0
func (entity *Terminator) GetHostId() string
func (*Terminator) GetInstanceId ¶ added in v0.19.0
func (entity *Terminator) GetInstanceId() string
func (*Terminator) GetInstanceSecret ¶ added in v0.19.0
func (entity *Terminator) GetInstanceSecret() []byte
func (*Terminator) GetPeerData ¶
func (entity *Terminator) GetPeerData() xt.PeerData
func (*Terminator) GetPrecedence ¶ added in v0.17.0
func (entity *Terminator) GetPrecedence() xt.Precedence
func (*Terminator) GetRouterId ¶
func (entity *Terminator) GetRouterId() string
func (*Terminator) GetServiceId ¶
func (entity *Terminator) GetServiceId() string
func (*Terminator) LoadValues ¶
func (entity *Terminator) LoadValues(_ boltz.CrudStore, bucket *boltz.TypedBucket)
func (*Terminator) SetValues ¶
func (entity *Terminator) SetValues(ctx *boltz.PersistContext)
type TerminatorStore ¶
type TestContext ¶
type TestContext struct {
	boltz.BaseTestContext
	// contains filtered or unexported fields
}
    func NewTestContext ¶
func NewTestContext(t testing.TB) *TestContext
func (*TestContext) GetDb ¶
func (ctx *TestContext) GetDb() boltz.Db
func (*TestContext) GetStoreForEntity ¶
func (ctx *TestContext) GetStoreForEntity(entity boltz.Entity) boltz.CrudStore
func (*TestContext) Init ¶
func (ctx *TestContext) Init()
 Click to show internal directories. 
   Click to hide internal directories.