blob: 8945d62a5b308fcf76990188bfaa491fabfaf56d [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
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
tom0eb04ca2014-08-25 14:34:51 -070032/**
33 * Base abstraction of Karaf shell commands.
34 */
Ray Milkey3078fc02015-05-06 16:14:14 -070035public abstract class AbstractShellCommand extends AbstractAction implements CodecContext {
tom0eb04ca2014-08-25 14:34:51 -070036
tom32085cf2014-10-16 00:04:33 -070037 @Option(name = "-j", aliases = "--json", description = "Output JSON",
38 required = false, multiValued = false)
39 private boolean json = false;
40
tom0eb04ca2014-08-25 14:34:51 -070041 /**
tom6d2a43e2014-09-08 01:50:20 -070042 * Returns the reference to the implementation of the specified service.
tom0eb04ca2014-08-25 14:34:51 -070043 *
44 * @param serviceClass service class
45 * @param <T> type of service
46 * @return service implementation
tomcaf3bf72014-09-23 13:20:53 -070047 * @throws org.onlab.osgi.ServiceNotFoundException if service is unavailable
tom0eb04ca2014-08-25 14:34:51 -070048 */
tom6d2a43e2014-09-08 01:50:20 -070049 public static <T> T get(Class<T> serviceClass) {
tom0872a172014-09-23 11:24:26 -070050 return DefaultServiceDirectory.getService(serviceClass);
tom0eb04ca2014-08-25 14:34:51 -070051 }
52
tom6d2a43e2014-09-08 01:50:20 -070053 /**
Thomas Vachuskab97cf282014-10-20 23:31:12 -070054 * Returns application ID for the CLI.
55 *
56 * @return command-line application identifier
57 */
58 protected ApplicationId appId() {
Ray Milkey02479862015-02-17 17:02:19 -080059 return get(CoreService.class)
60 .registerApplication("org.onosproject.cli");
Thomas Vachuskab97cf282014-10-20 23:31:12 -070061 }
62
63 /**
tom6d2a43e2014-09-08 01:50:20 -070064 * Prints the arguments using the specified format.
65 *
66 * @param format format string; see {@link String#format}
67 * @param args arguments
68 */
tomcaf3bf72014-09-23 13:20:53 -070069 public void print(String format, Object... args) {
Brian O'Connorb28f5d72015-02-23 19:29:30 +000070 System.out.println(String.format(format, args));
tom6d2a43e2014-09-08 01:50:20 -070071 }
72
tom9eb57fb2014-09-11 19:42:38 -070073 /**
74 * Prints the arguments using the specified format to error stream.
75 *
76 * @param format format string; see {@link String#format}
77 * @param args arguments
78 */
tomcaf3bf72014-09-23 13:20:53 -070079 public void error(String format, Object... args) {
Brian O'Connorb28f5d72015-02-23 19:29:30 +000080 System.err.println(String.format(format, args));
tom9eb57fb2014-09-11 19:42:38 -070081 }
82
tom0872a172014-09-23 11:24:26 -070083 /**
Thomas Vachuska944cb6c2014-10-22 17:05:42 -070084 * Produces a string image of the specified key/value annotations.
85 *
86 * @param annotations key/value annotations
87 * @return string image with ", k1=v1, k2=v2, ..." pairs
88 */
89 public static String annotations(Annotations annotations) {
90 StringBuilder sb = new StringBuilder();
91 for (String key : annotations.keys()) {
92 sb.append(", ").append(key).append('=').append(annotations.value(key));
93 }
94 return sb.toString();
95 }
96
97 /**
98 * Produces a JSON object from the specified key/value annotations.
99 *
Yuta HIGUCHI5c947272014-11-03 21:39:21 -0800100 * @param mapper ObjectMapper to use while converting to JSON
Thomas Vachuska944cb6c2014-10-22 17:05:42 -0700101 * @param annotations key/value annotations
102 * @return JSON object
103 */
104 public static ObjectNode annotations(ObjectMapper mapper, Annotations annotations) {
105 ObjectNode result = mapper.createObjectNode();
106 for (String key : annotations.keys()) {
107 result.put(key, annotations.value(key));
108 }
109 return result;
110 }
111
112 /**
tom0872a172014-09-23 11:24:26 -0700113 * Executes this command.
114 */
115 protected abstract void execute();
116
tom32085cf2014-10-16 00:04:33 -0700117 /**
118 * Indicates whether JSON format should be output.
119 *
120 * @return true if JSON is requested
121 */
122 protected boolean outputJson() {
123 return json;
124 }
125
tom0872a172014-09-23 11:24:26 -0700126 @Override
127 protected Object doExecute() throws Exception {
128 try {
129 execute();
130 } catch (ServiceNotFoundException e) {
131 error(e.getMessage());
132 }
133 return null;
134 }
135
Ray Milkey3078fc02015-05-06 16:14:14 -0700136
137
138 private final ObjectMapper mapper = new ObjectMapper();
139
140 @Override
141 public ObjectMapper mapper() {
142 return mapper;
143 }
144
145 @Override
146 @SuppressWarnings("unchecked")
147 public <T> JsonCodec<T> codec(Class<T> entityClass) {
148 return get(CodecService.class).getCodec(entityClass);
149 }
150
151 @Override
152 public <T> T getService(Class<T> serviceClass) {
153 return get(serviceClass);
154 }
155
156 /**
157 * Generates a Json representation of an object.
158 *
159 * @param entity object to generate JSON for
160 * @param entityClass class to format with - this chooses which codec to use
161 * @param <T> Type of the object being formatted
162 * @return JSON object representation
163 */
164 public <T> ObjectNode jsonForEntity(T entity, Class<T> entityClass) {
165 return codec(entityClass).encode(entity, this);
166 }
tom0eb04ca2014-08-25 14:34:51 -0700167}