/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.combus.listeners; import javax.jms.MessageProducer; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.TextMessage; import org.openanzo.combus.endpoint.BaseServiceListener; import org.openanzo.exceptions.AnzoException; import org.openanzo.exceptions.ExceptionConstants; import org.openanzo.rdf.Constants; import org.openanzo.services.IOperationContext; import org.openanzo.services.IAuthenticationService; /** * Index Service combus listener interface * @author Generated Code */ public class CombusIndexServiceListener extends BaseServiceListener { /** Service's Name in {@link String} form */ public static final String SERVICE_ENDPOINT_NAME = Constants.NAMESPACES.SERVICE_PREFIX + "CombusIndexServiceListener"; /** Stats for object*/ protected org.openanzo.services.DynamicServiceStats stats=null; /** Service interface*/ protected org.openanzo.datasource.IIndexService iIndexService=null; /**Queue Name Prefix*/ protected String queueNamePrefix=null; /** * Create a new JMSIndexServiceListener * @param authenticationService Authentication service used by this listener * @param _service Service for which listener is handling requests * @param queueNamePrefix Prefix for the queue name on which this listener is listening */ public CombusIndexServiceListener(IAuthenticationService authenticationService,org.openanzo.datasource.IIndexService _service,String queueNamePrefix) { super(SERVICE_ENDPOINT_NAME,authenticationService); this.iIndexService =_service; this.queueNamePrefix=queueNamePrefix; stats=new org.openanzo.services.DynamicServiceStats(org.openanzo.datasource.IIndexService.QUERY_INDEX); } /** * Statistics object for this service * @return the stats object for this service */ public org.openanzo.services.DynamicServiceStats getStatistics(){ return stats; } public String getQueueName() { return "services/"+((queueNamePrefix!=null)?queueNamePrefix:"")+"index"; } public TextMessage handleMessage(IOperationContext context, Destination replyTo, String resultFormat, String operation, TextMessage request, MessageProducer messageProducer) throws JMSException, AnzoException { verifyCaller(context); TextMessage response = null; if(org.openanzo.datasource.IIndexService.QUERY_INDEX.equals(operation)){ long start=0; if (stats.isEnabled()) { start = System.currentTimeMillis(); } try{ org.openanzo.combus.JMSMessageWrapper messageWrapper=new org.openanzo.combus.JMSMessageWrapper(request); boolean queryExists=request.propertyExists(org.openanzo.datasource.IIndexService.PARAM_QUERY); String query = (queryExists)?org.openanzo.services.serialization.transport.StringSerializer.deserialize(messageWrapper,org.openanzo.datasource.IIndexService.PARAM_QUERY, null):null; String queryBody=request.getText(); boolean offsetExists=request.propertyExists(org.openanzo.datasource.IIndexService.PARAM_OFFSET); int offset = (offsetExists)?org.openanzo.services.serialization.transport.IntSerializer.deserialize(messageWrapper,org.openanzo.datasource.IIndexService.PARAM_OFFSET, null):-1; boolean numberOfResultsExists=request.propertyExists(org.openanzo.datasource.IIndexService.PARAM_NUMBER_OF_RESULTS); int numberOfResults = (numberOfResultsExists)?org.openanzo.services.serialization.transport.IntSerializer.deserialize(messageWrapper,org.openanzo.datasource.IIndexService.PARAM_NUMBER_OF_RESULTS, null):-1; java.io.StringWriter output = new java.io.StringWriter(); this.iIndexService.queryIndex(context,query,queryBody,offset,numberOfResults, output,resultFormat); response = session.createTextMessage(); response.setBooleanProperty(org.openanzo.rdf.utils.SerializationConstants.operationFailed, false); String out = output.toString(); if (out.length() > 0) { response.setText(output.toString()); } }finally{ if (stats.isEnabled()) { stats.use("queryIndex",(System.currentTimeMillis() - start)); } } } else { throw new AnzoException(ExceptionConstants.SERVER.UNKNOWN_OPERATION_ERROR, operation); } return response; } }