123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // Copyright 2015 CoreOS, Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package subnet
- import (
- "encoding/json"
- "errors"
- "fmt"
- "time"
- "github.com/coreos/flannel/Godeps/_workspace/src/golang.org/x/net/context"
- "github.com/coreos/flannel/pkg/ip"
- )
- type LeaseAttrs struct {
- PublicIP ip.IP4
- BackendType string `json:",omitempty"`
- BackendData json.RawMessage `json:",omitempty"`
- }
- type Lease struct {
- Subnet ip.IP4Net
- Attrs *LeaseAttrs
- Expiration time.Time
- }
- func (l *Lease) Key() string {
- return l.Subnet.StringSep(".", "-")
- }
- type (
- EventType int
- Event struct {
- Type EventType `json:"type"`
- Lease Lease `json:"lease"`
- }
- )
- const (
- SubnetAdded EventType = iota
- SubnetRemoved
- )
- type WatchResult struct {
- // Either Events or Leases should be set.
- // If Leases are not empty, it means the cursor
- // was out of range and Snapshot contains the current
- // list of leases
- Events []Event `json:"events"`
- Snapshot []Lease `json:"snapshot"`
- Cursor interface{} `json:"cursor"`
- }
- func (et EventType) MarshalJSON() ([]byte, error) {
- s := ""
- switch et {
- case SubnetAdded:
- s = "added"
- case SubnetRemoved:
- s = "removed"
- default:
- return nil, errors.New("bad event type")
- }
- return json.Marshal(s)
- }
- func (et *EventType) UnmarshalJSON(data []byte) error {
- switch string(data) {
- case "\"added\"":
- *et = SubnetAdded
- case "\"removed\"":
- *et = SubnetRemoved
- default:
- fmt.Println(string(data))
- return errors.New("bad event type")
- }
- return nil
- }
- type Manager interface {
- GetNetworkConfig(ctx context.Context, network string) (*Config, error)
- AcquireLease(ctx context.Context, network string, attrs *LeaseAttrs) (*Lease, error)
- RenewLease(ctx context.Context, network string, lease *Lease) error
- WatchLeases(ctx context.Context, network string, cursor interface{}) (WatchResult, error)
- }
|