Zsolt Haraszti | dafefe1 | 2016-11-14 21:29:58 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
Zack Williams | 41513bf | 2018-07-07 20:08:35 -0700 | [diff] [blame] | 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. |
Zsolt Haraszti | dafefe1 | 2016-11-14 21:29:58 -0800 | [diff] [blame] | 15 | """ |
| 16 | Write adapter data without any custom fields |
| 17 | """ |
| 18 | import sys |
| 19 | |
| 20 | import ext1_pb2 |
| 21 | from voltha.protos import adapter_pb2 |
| 22 | from google.protobuf import any_pb2 |
| 23 | |
| 24 | def 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 | |
| 34 | def 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 | |
| 44 | adapter = adapter_pb2.Adapter( |
| 45 | id='42', |
| 46 | config=adapter_pb2.AdapterConfig( |
| 47 | additional_config=custom_config() |
| 48 | ), |
| 49 | additional_description=custom_description() |
| 50 | ) |
| 51 | |
| 52 | sys.stdout.write(adapter.SerializeToString()) |
| 53 | |