blob: 3bbdd818178be7c300f11879f002147f42a6eb76 [file] [log] [blame]
Matteo Scandolo4e0e88c2017-08-08 13:05:25 -07001
2# Copyright 2017-present Open Networking Foundation
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
Rizwan Haider51fdb3f2016-11-09 18:29:32 -050017import sys
18
19from services.vnodlocal.models import VnodLocalSystem
20from synchronizers.vnodlocal.pseudowireproviders.metronetworkpseudowireprovider import MetronetworkPseudowireProvider
21from synchronizers.vnodlocal.pseudowireproviders.segmentroutingvlanxconnectpseudowireprovider import SegmentRoutingVlanXconnectPseudowireProvider
22
23
24class ProviderFactory(object):
25 @staticmethod
26 def getprovider():
27
28 # We look up the VnodLocal Configuration to see what to do
29 vnodlocalsystems = VnodLocalSystem.objects.all()
30 if not vnodlocalsystems:
31 return None
32
33 vnodlocalsystem = vnodlocalsystems[0]
34
35 if vnodlocalsystem.pseudowireprovider == 'metronetwork':
36 return MetronetworkPseudowireProvider()
37 elif vnodlocalsystem.pseudowireprovider == 'segmentroutingxconnect':
38 return SegmentRoutingVlanXconnectPseudowireProvider()
39 else:
40 return None