blob: 1f99152c6c03403644c1eeef21f5f95767cd9c13 [file] [log] [blame]
package net.onrc.onos.core.intent.runtime.web;
import net.onrc.onos.api.rest.RestError;
import net.onrc.onos.api.rest.RestErrorCodes;
import net.onrc.onos.core.intent.Intent;
import net.onrc.onos.core.intent.IntentMap;
import net.onrc.onos.core.intent.runtime.IPathCalcRuntimeService;
import org.restlet.data.Status;
import org.restlet.representation.Representation;
import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A class to access a single low-level intent.
*/
public class IntentLowObjectResource extends ServerResource {
private static final Logger log = LoggerFactory.getLogger(IntentLowObjectResource.class);
// TODO need to assign proper application id.
private static final String APPLN_ID = "1";
/**
* Gets a single low-level intent.
*
* @return a Representation of the single low-level intent if found,
* otherwise a Representation of a RestError object describing the problem.
*/
@Get("json")
public Representation retrieve() {
IPathCalcRuntimeService pathRuntime = (IPathCalcRuntimeService) getContext().
getAttributes().get(IPathCalcRuntimeService.class.getCanonicalName());
Representation result;
String intentId = (String) getRequestAttributes().get("intent-id");
//
// Get a single low-level Intent: use the Intent ID to find it
//
IntentMap intentMap = pathRuntime.getPathIntents();
String applnIntentId = APPLN_ID + ":" + intentId;
Intent intent = intentMap.getIntent(applnIntentId);
if (intent != null) {
result = toRepresentation(intent, null);
} else {
setStatus(Status.CLIENT_ERROR_NOT_FOUND);
final RestError notFound =
RestError.createRestError(RestErrorCodes.RestErrorCode.INTENT_NOT_FOUND,
applnIntentId);
result = toRepresentation(notFound, null);
}
return result;
}
}