blob: 10259627766e2db367c953056a769d1251301e5d [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
16"""
17Read adapter data while decoding both known custom fields
18"""
19
20import sys
21from json import dumps
22
23from common.utils.json_format import MessageToDict
24from voltha.protos import adapter_pb2
25
26adapter = adapter_pb2.Adapter()
27binary = sys.stdin.read()
28adapter.ParseFromString(binary)
29
30print dumps(MessageToDict(adapter, strict_any_handling=False))
31