blob: 705de80303f1d414951cced591a60cbabbdca895 [file] [log] [blame]
Author Namea594e632018-08-10 11:33:58 -04001/*
2 Copyright 2017 the original author or authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17package physical
18
donNewtonAlpha5234b132018-08-16 14:12:28 -040019import (
20 "fmt"
21 "net"
22)
Author Namea594e632018-08-10 11:33:58 -040023
24/*
25Chassis is a model that takes up to 16 discreet OLT chassis as if it is a 16 slot OLT chassis
26*/
27type Chassis struct {
28 CLLI string
29 VCoreAddress net.TCPAddr
30 Dataswitch DataSwitch
31 Linecards []OLT
32}
donNewtonAlpha8205a4d2018-08-16 18:27:20 -040033type UnprovisionedSlotError struct {
34 CLLI string
35 SlotNumber int
36}
37
38func (e *UnprovisionedSlotError) Error() string {
39 return fmt.Sprintf("SlotNumber %d in Chassis %s is currently unprovsioned", e.SlotNumber, e.CLLI)
40}
donNewtonAlpha5234b132018-08-16 14:12:28 -040041
42/*
43AddOLTChassis - adds a reference to a new olt chassis
44*/
45func (chassis *Chassis) AddOLTChassis(olt OLT) {
46 chassis.Linecards = append(chassis.Linecards, olt)
47 //TODO - api call to add olt i.e. preprovision_olt
48 fmt.Printf("chassis.AddOLTChassis(%s)\n", olt.GetHostname())
49}
50func (chassis *Chassis) provisionONT(ont Ont) {
51 //TODO - api call to provison s/c vlans and ont serial number etc
52 fmt.Printf("chassis.provisionONT(%s,SVlan:%d,CVlan:%d)\n", ont.SerialNumber, ont.Svlan, ont.Cvlan)
53}
donNewtonAlphaf7cc9992018-08-29 14:23:02 -040054func (chassis *Chassis) deleteONT(ont Ont) {
55 //TODO - api call to provison s/c vlans and ont serial number etc
56 fmt.Printf("chassis.deleteONT(%s,SVlan:%d,CVlan:%d)\n", ont.SerialNumber, ont.Svlan, ont.Cvlan)
57}
donNewtonAlpha8205a4d2018-08-16 18:27:20 -040058func (chassis *Chassis) ActivateSlot(slotNumber int) error {
59 // AT&T backend systems start at 1 and not 0 :P
60 if chassis.Linecards[slotNumber-1] == nil {
61 return &UnprovisionedSlotError{CLLI: chassis.CLLI, SlotNumber: slotNumber}
62 }
63 return chassis.Linecards[slotNumber-1].activate()
64}