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