Summary of changes: - Adding the p4runtime starter code and solution. - Adding NO_P4, BMV2_SWITCH_EXE and P4C_ARGS to utils/Makefile - Updated p4runtime/Makefile to use variables - Adding conversion functions for match and action param values - Separating P4Info and P4Runtime libraries - Updating global README and adding p4runtime/README.md - Disabling screen saver on VM GUI - Adding desktop icons for Terminal, Wireshare and Sublime Text - Updating topo.pdf -> png for Markdown viewing in basic_tunnel and p4runtime READMEs
31 lines
1.1 KiB
Python
31 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 switch import SwitchConnection
|
|
from p4.tmp import p4config_pb2
|
|
|
|
|
|
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()
|
|
return device_config
|
|
|
|
|
|
class Bmv2SwitchConnection(SwitchConnection):
|
|
def buildDeviceConfig(self, **kwargs):
|
|
return buildDeviceConfig(**kwargs)
|