blob: 3f050aae133fc0155e957d9678be654b7b9f61c3 [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}
donNewtonAlpha5234b132018-08-16 14:12:28 -040033
34/*
35AddOLTChassis - adds a reference to a new olt chassis
36*/
37func (chassis *Chassis) AddOLTChassis(olt OLT) {
38 chassis.Linecards = append(chassis.Linecards, olt)
39 //TODO - api call to add olt i.e. preprovision_olt
40 fmt.Printf("chassis.AddOLTChassis(%s)\n", olt.GetHostname())
41}
42func (chassis *Chassis) provisionONT(ont Ont) {
43 //TODO - api call to provison s/c vlans and ont serial number etc
44 fmt.Printf("chassis.provisionONT(%s,SVlan:%d,CVlan:%d)\n", ont.SerialNumber, ont.Svlan, ont.Cvlan)
45}