blob: 9b3635fc8b73387c6cd4c7b81301b737db72bfe0 [file] [log] [blame]
Yuta HIGUCHI7d7d46e2017-08-29 12:19:10 -07001/*
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.
15 */
16package org.onosproject.cli;
17
18import java.io.IOException;
19import java.io.InputStreamReader;
20
21import org.apache.karaf.shell.commands.Command;
22import org.onlab.util.XmlString;
23
24import com.google.common.io.CharStreams;
25
26/**
27 * Pretty print previous command output XML.
28 */
29@Command(scope = "onos", name = "ppxml",
30 description = "Pretty print XML output from previous command")
31public class PrettyXml extends AbstractShellCommand {
32
33 @Override
34 protected void execute() {
35 try {
36 String xmlS = CharStreams.toString(new InputStreamReader(System.in));
37
38 print("%s", XmlString.prettifyXml(xmlS));
39 } catch (IOException e) {
40 log.error("Failed parsing XML.", e);
41 print("%s", e);
42 }
43 }
44
45}