blob: 012b4ec025600aa8bd86e741b22e92e62781edde [file] [log] [blame]
Zsolt Harasztidafefe12016-11-14 21:29:58 -08001#!/usr/bin/env python
Zack Williams41513bf2018-07-07 20:08:35 -07002# 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.
Zsolt Harasztidafefe12016-11-14 21:29:58 -080015"""
16Write adapter data without any custom fields
17"""
18import sys
19
20import ext1_pb2
21from voltha.protos import adapter_pb2
22from google.protobuf import any_pb2
23
24def custom_config():
25 any = any_pb2.Any()
26 any.Pack(ext1_pb2.AdapterConfig(
27 volume=20,
28 bass=50,
29 treble=50
30 ))
31 return any
32
33
34def custom_description():
35 any = any_pb2.Any()
36 any.Pack(ext1_pb2.AdapterDescription(
37 internal_name='hulu',
38 internal_code='foo',
39 price=42
40 ))
41 return any
42
43
44adapter = adapter_pb2.Adapter(
45 id='42',
46 config=adapter_pb2.AdapterConfig(
47 additional_config=custom_config()
48 ),
49 additional_description=custom_description()
50)
51
52sys.stdout.write(adapter.SerializeToString())
53