* Remove unused python imports These changes have been auto-generated with: pip3 install isort autoflake isort -rc -sl . autoflake --remove-all-unused-imports -i -r . isort -rc -m 3 . Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org> * python: remove redundant parenthesis Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
# Copyright 2017-present Open Networking Foundation
|
|
#
|
|
# 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.
|
|
#
|
|
from p4.tmp import p4config_pb2
|
|
|
|
from .switch import SwitchConnection
|
|
|
|
|
|
def buildDeviceConfig(bmv2_json_file_path=None):
|
|
"Builds the device config for BMv2"
|
|
device_config = p4config_pb2.P4DeviceConfig()
|
|
device_config.reassign = True
|
|
with open(bmv2_json_file_path) as f:
|
|
device_config.device_data = f.read().encode('utf-8')
|
|
return device_config
|
|
|
|
|
|
class Bmv2SwitchConnection(SwitchConnection):
|
|
def buildDeviceConfig(self, **kwargs):
|
|
return buildDeviceConfig(**kwargs)
|