Package org.openrdf.http.server.resources

Source Code of org.openrdf.http.server.resources.SizeResource

/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 2008-2009.
*
* Licensed under the Aduna BSD-style license.
*/
package org.openrdf.http.server.resources;

import static org.restlet.data.Status.SERVER_ERROR_INTERNAL;

import org.restlet.data.MediaType;
import org.restlet.representation.Representation;
import org.restlet.representation.StringRepresentation;
import org.restlet.representation.Variant;
import org.restlet.resource.ResourceException;

import org.openrdf.http.server.helpers.ServerConnection;
import org.openrdf.http.server.helpers.ServerUtil;
import org.openrdf.http.server.helpers.StatementPatternParams;
import org.openrdf.http.server.resources.helpers.SesameResource;
import org.openrdf.model.Resource;
import org.openrdf.model.URI;
import org.openrdf.model.Value;
import org.openrdf.model.ValueFactory;
import org.openrdf.store.StoreException;

/**
* @author Arjohn Kampman
*/
public class SizeResource extends SesameResource {

  protected void doInit() {
    super.doInit();
    addCacheableMediaTypes(MediaType.TEXT_PLAIN);
  }

  @Override
  protected Representation get(Variant variant)
    throws ResourceException
  {
    setDimensions(ServerUtil.VARY_ACCEPT);

    if (variant.getMediaType().equals(MediaType.TEXT_PLAIN, true)) {
      ServerConnection connection = getConnection();
      ValueFactory vf = connection.getValueFactory();

      StatementPatternParams spParams = new StatementPatternParams(getRequest(), vf);

      Resource subj = spParams.getSubject();
      URI pred = spParams.getPredicate();
      Value obj = spParams.getObject();
      Resource[] contexts = spParams.getContext();
      boolean includeInferred = spParams.isIncludeInferred();

      try {
        long size = connection.sizeMatch(subj, pred, obj, includeInferred, contexts);
        return new StringRepresentation(String.valueOf(size));
      }
      catch (StoreException e) {
        throw new ResourceException(e);
      }
    }

    throw new ResourceException(SERVER_ERROR_INTERNAL, "Unsupported media type: " + variant.getMediaType());
  }
}
TOP

Related Classes of org.openrdf.http.server.resources.SizeResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.