blob: b0e2f38d7909415cfde3accb6894f1b95535f77a [file] [log] [blame]
Bharat saraswald25a30a2015-10-26 18:35:47 +05301/*
2 * Copyright 2015 Open Networking Laboratory
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.vtnweb.resources;
17
Bharat saraswald25a30a2015-10-26 18:35:47 +053018import static javax.ws.rs.core.Response.Status.NOT_FOUND;
Bharat saraswalf38e2262015-11-18 22:57:05 +053019import static javax.ws.rs.core.Response.Status.OK;
20import static org.onlab.util.Tools.nullIsNotFound;
Bharat saraswald25a30a2015-10-26 18:35:47 +053021
22import java.io.IOException;
23import java.io.InputStream;
Bharat saraswald25a30a2015-10-26 18:35:47 +053024
25import javax.ws.rs.Consumes;
26import javax.ws.rs.DELETE;
27import javax.ws.rs.GET;
28import javax.ws.rs.POST;
29import javax.ws.rs.PUT;
30import javax.ws.rs.Path;
31import javax.ws.rs.PathParam;
32import javax.ws.rs.Produces;
33import javax.ws.rs.core.MediaType;
34import javax.ws.rs.core.Response;
35
Bharat saraswalf38e2262015-11-18 22:57:05 +053036import org.onosproject.rest.AbstractWebResource;
Bharat saraswald25a30a2015-10-26 18:35:47 +053037import org.onosproject.vtnrsc.FlowClassifier;
38import org.onosproject.vtnrsc.FlowClassifierId;
Jonathan Hart317f4762015-11-09 16:05:36 -080039import org.onosproject.vtnrsc.flowclassifier.FlowClassifierService;
samueljcce3d5b6a2015-10-27 15:52:52 -070040import org.onosproject.vtnweb.web.FlowClassifierCodec;
Bharat saraswalf38e2262015-11-18 22:57:05 +053041import org.slf4j.Logger;
42import org.slf4j.LoggerFactory;
Bharat saraswald25a30a2015-10-26 18:35:47 +053043
Bharat saraswalf38e2262015-11-18 22:57:05 +053044import com.fasterxml.jackson.databind.JsonNode;
Bharat saraswald25a30a2015-10-26 18:35:47 +053045import com.fasterxml.jackson.databind.ObjectMapper;
Bharat saraswalf38e2262015-11-18 22:57:05 +053046import com.fasterxml.jackson.databind.node.ArrayNode;
Bharat saraswald25a30a2015-10-26 18:35:47 +053047import com.fasterxml.jackson.databind.node.ObjectNode;
48
49/**
50 * Query and program flow classifier.
51 */
52@Path("flow_classifiers")
53public class FlowClassifierWebResource extends AbstractWebResource {
54
Bharat saraswalf38e2262015-11-18 22:57:05 +053055 private final Logger log = LoggerFactory.getLogger(FlowClassifierWebResource.class);
56
Bharat saraswald25a30a2015-10-26 18:35:47 +053057 final FlowClassifierService service = get(FlowClassifierService.class);
Bharat saraswald25a30a2015-10-26 18:35:47 +053058 public static final String FLOW_CLASSIFIER_NOT_FOUND = "Flow classifier not found";
59
60 /**
Bharat saraswalf38e2262015-11-18 22:57:05 +053061 * Get all flow classifiers created.
Bharat saraswald25a30a2015-10-26 18:35:47 +053062 *
Bharat saraswala9929a92015-11-19 00:33:55 +053063 * @return 200 OK
Bharat saraswald25a30a2015-10-26 18:35:47 +053064 */
65 @GET
66 @Produces(MediaType.APPLICATION_JSON)
67 public Response getFlowClassifiers() {
Bharat saraswalf38e2262015-11-18 22:57:05 +053068 final Iterable<FlowClassifier> flowClassifiers = service.getFlowClassifiers();
Bharat saraswald25a30a2015-10-26 18:35:47 +053069 ObjectNode result = new ObjectMapper().createObjectNode();
Bharat saraswalf38e2262015-11-18 22:57:05 +053070 ArrayNode flowClassifierEntry = result.putArray("flow_classifiers");
71 if (flowClassifiers != null) {
72 for (final FlowClassifier flowClassifier : flowClassifiers) {
73 flowClassifierEntry.add(new FlowClassifierCodec().encode(flowClassifier, this));
74 }
75 }
Bharat saraswald25a30a2015-10-26 18:35:47 +053076 return ok(result.toString()).build();
77 }
78
79 /**
Bharat saraswalf38e2262015-11-18 22:57:05 +053080 * Get details of a flow classifier.
Bharat saraswald25a30a2015-10-26 18:35:47 +053081 *
82 * @param id flow classifier id
Bharat saraswalf38e2262015-11-18 22:57:05 +053083 * @return 200 OK , 404 if given identifier does not exist
Bharat saraswald25a30a2015-10-26 18:35:47 +053084 */
85 @GET
86 @Path("{flow_id}")
87 @Produces(MediaType.APPLICATION_JSON)
88 public Response getFlowClassifier(@PathParam("flow_id") String id) {
89
Bharat saraswalf38e2262015-11-18 22:57:05 +053090 if (!service.hasFlowClassifier(FlowClassifierId.of(id))) {
Bharat saraswald25a30a2015-10-26 18:35:47 +053091 return Response.status(NOT_FOUND).entity(FLOW_CLASSIFIER_NOT_FOUND).build();
92 }
Bharat saraswalf38e2262015-11-18 22:57:05 +053093 FlowClassifier flowClassifier = nullIsNotFound(service.getFlowClassifier(FlowClassifierId.of(id)),
Bharat saraswald25a30a2015-10-26 18:35:47 +053094 FLOW_CLASSIFIER_NOT_FOUND);
95
96 ObjectNode result = new ObjectMapper().createObjectNode();
97 result.set("flow_classifier", new FlowClassifierCodec().encode(flowClassifier, this));
Bharat saraswalf38e2262015-11-18 22:57:05 +053098
Bharat saraswald25a30a2015-10-26 18:35:47 +053099 return ok(result.toString()).build();
100 }
101
102 /**
103 * Creates and stores a new flow classifier.
104 *
Bharat saraswald25a30a2015-10-26 18:35:47 +0530105 * @param stream flow classifier from JSON
106 * @return status of the request - CREATED if the JSON is correct,
Bharat saraswalf38e2262015-11-18 22:57:05 +0530107 * BAD_REQUEST if the JSON is invalid
Bharat saraswald25a30a2015-10-26 18:35:47 +0530108 */
109 @POST
110 @Consumes(MediaType.APPLICATION_JSON)
111 @Produces(MediaType.APPLICATION_JSON)
112 public Response createFlowClassifier(InputStream stream) {
Bharat saraswald25a30a2015-10-26 18:35:47 +0530113 try {
Bharat saraswalf38e2262015-11-18 22:57:05 +0530114 ObjectMapper mapper = new ObjectMapper();
115 ObjectNode jsonTree = (ObjectNode) mapper.readTree(stream);
116 JsonNode flow = jsonTree.get("flow_classifier");
Bharat saraswald25a30a2015-10-26 18:35:47 +0530117
Bharat saraswalf38e2262015-11-18 22:57:05 +0530118 FlowClassifier flowClassifier = new FlowClassifierCodec().decode((ObjectNode) flow, this);
119 Boolean issuccess = nullIsNotFound(service.createFlowClassifier(flowClassifier), FLOW_CLASSIFIER_NOT_FOUND);
120 return Response.status(OK).entity(issuccess.toString()).build();
121 } catch (IOException ex) {
122 log.error("Exception while creating flow classifier {}.", ex.toString());
Bharat saraswald25a30a2015-10-26 18:35:47 +0530123 throw new IllegalArgumentException(ex);
124 }
Bharat saraswald25a30a2015-10-26 18:35:47 +0530125 }
126
127 /**
Bharat saraswalf38e2262015-11-18 22:57:05 +0530128 * Update details of a flow classifier.
Bharat saraswald25a30a2015-10-26 18:35:47 +0530129 *
130 * @param id flow classifier id
131 * @param stream InputStream
Bharat saraswalf38e2262015-11-18 22:57:05 +0530132 * @return 200 OK, 404 if given identifier does not exist
Bharat saraswald25a30a2015-10-26 18:35:47 +0530133 */
134 @PUT
135 @Path("{flow_id}")
136 @Produces(MediaType.APPLICATION_JSON)
137 @Consumes(MediaType.APPLICATION_JSON)
138 public Response updateFlowClassifier(@PathParam("flow_id") String id, final InputStream stream) {
139 try {
Bharat saraswalf38e2262015-11-18 22:57:05 +0530140
141 JsonNode jsonTree = mapper().readTree(stream);
142 JsonNode flow = jsonTree.get("flow_classifier");
143 FlowClassifier flowClassifier = new FlowClassifierCodec().decode((ObjectNode) flow, this);
Bharat saraswald25a30a2015-10-26 18:35:47 +0530144 Boolean result = nullIsNotFound(service.updateFlowClassifier(flowClassifier), FLOW_CLASSIFIER_NOT_FOUND);
Bharat saraswalf38e2262015-11-18 22:57:05 +0530145 return Response.status(OK).entity(result.toString()).build();
146 } catch (IOException e) {
147 log.error("Update flow classifier failed because of exception {}.", e.toString());
148 throw new IllegalArgumentException(e);
Bharat saraswald25a30a2015-10-26 18:35:47 +0530149 }
150 }
151
152 /**
Bharat saraswalf38e2262015-11-18 22:57:05 +0530153 * Delete details of a flow classifier.
Bharat saraswald25a30a2015-10-26 18:35:47 +0530154 *
155 * @param id flow classifier id
Bharat saraswald25a30a2015-10-26 18:35:47 +0530156 */
157 @Path("{flow_id}")
158 @DELETE
Bharat saraswalf38e2262015-11-18 22:57:05 +0530159 public void deleteFlowClassifier(@PathParam("flow_id") String id) {
160 log.debug("Deletes flow classifier by identifier {}.", id);
161 FlowClassifierId flowClassifierId = FlowClassifierId.of(id);
162 Boolean issuccess = nullIsNotFound(service.removeFlowClassifier(flowClassifierId), FLOW_CLASSIFIER_NOT_FOUND);
163
Bharat saraswald25a30a2015-10-26 18:35:47 +0530164 }
165}