blob: 444631e210c6dc7e7bf9bcc467cda1cbc8a94590 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli;
tom0eb04ca2014-08-25 14:34:51 -070017
tom32085cf2014-10-16 00:04:33 -070018import org.apache.karaf.shell.commands.Option;
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070019import org.apache.karaf.shell.console.AbstractAction;
20import org.onlab.osgi.DefaultServiceDirectory;
21import org.onlab.osgi.ServiceNotFoundException;
Ray Milkey3078fc02015-05-06 16:14:14 -070022import org.onosproject.codec.CodecContext;
23import org.onosproject.codec.CodecService;
24import org.onosproject.codec.JsonCodec;
Brian O'Connorabafb502014-12-02 22:26:20 -080025import org.onosproject.core.ApplicationId;
26import org.onosproject.core.CoreService;
27import org.onosproject.net.Annotations;
tom0eb04ca2014-08-25 14:34:51 -070028
Ray Milkey3078fc02015-05-06 16:14:14 -070029import com.fasterxml.jackson.databind.ObjectMapper;
30import com.fasterxml.jackson.databind.node.ObjectNode;
31
Andrea Campanella13032532016-03-31 10:50:50 -070032import java.util.Set;
33import java.util.TreeSet;
34
tom0eb04ca2014-08-25 14:34:51 -070035/**
36 * Base abstraction of Karaf shell commands.
37 */
Ray Milkey3078fc02015-05-06 16:14:14 -070038public abstract class AbstractShellCommand extends AbstractAction implements CodecContext {
tom0eb04ca2014-08-25 14:34:51 -070039
tom32085cf2014-10-16 00:04:33 -070040 @Option(name = "-j", aliases = "--json", description = "Output JSON",
41 required = false, multiValued = false)
42 private boolean json = false;
43
tom0eb04ca2014-08-25 14:34:51 -070044 /**
tom6d2a43e2014-09-08 01:50:20 -070045 * Returns the reference to the implementation of the specified service.
tom0eb04ca2014-08-25 14:34:51 -070046 *
47 * @param serviceClass service class
48 * @param <T> type of service
49 * @return service implementation
tomcaf3bf72014-09-23 13:20:53 -070050 * @throws org.onlab.osgi.ServiceNotFoundException if service is unavailable
tom0eb04ca2014-08-25 14:34:51 -070051 */
tom6d2a43e2014-09-08 01:50:20 -070052 public static <T> T get(Class<T> serviceClass) {
tom0872a172014-09-23 11:24:26 -070053 return DefaultServiceDirectory.getService(serviceClass);
tom0eb04ca2014-08-25 14:34:51 -070054 }
55
tom6d2a43e2014-09-08 01:50:20 -070056 /**
Thomas Vachuskab97cf282014-10-20 23:31:12 -070057 * Returns application ID for the CLI.
58 *
59 * @return command-line application identifier
60 */
61 protected ApplicationId appId() {
Ray Milkey02479862015-02-17 17:02:19 -080062 return get(CoreService.class)
63 .registerApplication("org.onosproject.cli");
Thomas Vachuskab97cf282014-10-20 23:31:12 -070064 }
65
66 /**
tom6d2a43e2014-09-08 01:50:20 -070067 * Prints the arguments using the specified format.
68 *
69 * @param format format string; see {@link String#format}
70 * @param args arguments
71 */
tomcaf3bf72014-09-23 13:20:53 -070072 public void print(String format, Object... args) {
Brian O'Connorb28f5d72015-02-23 19:29:30 +000073 System.out.println(String.format(format, args));
tom6d2a43e2014-09-08 01:50:20 -070074 }
75
tom9eb57fb2014-09-11 19:42:38 -070076 /**
77 * Prints the arguments using the specified format to error stream.
78 *
79 * @param format format string; see {@link String#format}
80 * @param args arguments
81 */
tomcaf3bf72014-09-23 13:20:53 -070082 public void error(String format, Object... args) {
Brian O'Connorb28f5d72015-02-23 19:29:30 +000083 System.err.println(String.format(format, args));
tom9eb57fb2014-09-11 19:42:38 -070084 }
85
tom0872a172014-09-23 11:24:26 -070086 /**
Thomas Vachuska944cb6c2014-10-22 17:05:42 -070087 * Produces a string image of the specified key/value annotations.
88 *
89 * @param annotations key/value annotations
90 * @return string image with ", k1=v1, k2=v2, ..." pairs
91 */
92 public static String annotations(Annotations annotations) {
93 StringBuilder sb = new StringBuilder();
94 for (String key : annotations.keys()) {
95 sb.append(", ").append(key).append('=').append(annotations.value(key));
96 }
97 return sb.toString();
98 }
99
100 /**
Andrea Campanella13032532016-03-31 10:50:50 -0700101 * Produces a string image of the specified key/value annotations.
102 * Excludes the keys in the given Set.
103 *
104 * @param annotations key/value annotations
105 * @param excludedKeys keys not to add in the resulting string
106 * @return string image with ", k1=v1, k2=v2, ..." pairs
107 */
108 public static String annotations(Annotations annotations, Set<String> excludedKeys) {
109 StringBuilder sb = new StringBuilder();
110 Set<String> keys = new TreeSet<>(annotations.keys());
111 keys.removeAll(excludedKeys);
112 for (String key : keys) {
113 sb.append(", ").append(key).append('=').append(annotations.value(key));
114 }
115 return sb.toString();
116 }
117
118 /**
Thomas Vachuska944cb6c2014-10-22 17:05:42 -0700119 * Produces a JSON object from the specified key/value annotations.
120 *
Yuta HIGUCHI5c947272014-11-03 21:39:21 -0800121 * @param mapper ObjectMapper to use while converting to JSON
Thomas Vachuska944cb6c2014-10-22 17:05:42 -0700122 * @param annotations key/value annotations
123 * @return JSON object
124 */
125 public static ObjectNode annotations(ObjectMapper mapper, Annotations annotations) {
126 ObjectNode result = mapper.createObjectNode();
127 for (String key : annotations.keys()) {
128 result.put(key, annotations.value(key));
129 }
130 return result;
131 }
132
133 /**
tom0872a172014-09-23 11:24:26 -0700134 * Executes this command.
135 */
136 protected abstract void execute();
137
tom32085cf2014-10-16 00:04:33 -0700138 /**
139 * Indicates whether JSON format should be output.
140 *
141 * @return true if JSON is requested
142 */
143 protected boolean outputJson() {
144 return json;
145 }
146
tom0872a172014-09-23 11:24:26 -0700147 @Override
148 protected Object doExecute() throws Exception {
149 try {
150 execute();
151 } catch (ServiceNotFoundException e) {
152 error(e.getMessage());
153 }
154 return null;
155 }
156
Ray Milkey3078fc02015-05-06 16:14:14 -0700157
158
159 private final ObjectMapper mapper = new ObjectMapper();
160
161 @Override
162 public ObjectMapper mapper() {
163 return mapper;
164 }
165
166 @Override
167 @SuppressWarnings("unchecked")
168 public <T> JsonCodec<T> codec(Class<T> entityClass) {
169 return get(CodecService.class).getCodec(entityClass);
170 }
171
172 @Override
173 public <T> T getService(Class<T> serviceClass) {
174 return get(serviceClass);
175 }
176
177 /**
178 * Generates a Json representation of an object.
179 *
180 * @param entity object to generate JSON for
181 * @param entityClass class to format with - this chooses which codec to use
182 * @param <T> Type of the object being formatted
183 * @return JSON object representation
184 */
185 public <T> ObjectNode jsonForEntity(T entity, Class<T> entityClass) {
186 return codec(entityClass).encode(entity, this);
187 }
tom0eb04ca2014-08-25 14:34:51 -0700188}