Package it.eng.spagobi.engines.console.services

Source Code of it.eng.spagobi.engines.console.services.ExecuteUpdateAction

/**

SpagoBI - The Business Intelligence Free Platform

Copyright (C) 2005-2009 Engineering Ingegneria Informatica S.p.A.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

**/
package it.eng.spagobi.engines.console.services;

import it.eng.spago.base.SourceBean;
import it.eng.spagobi.commons.utilities.StringUtilities;
import it.eng.spagobi.engines.console.ConsoleEngineInstance;
import it.eng.spagobi.engines.console.ConsoleEngineRuntimeException;
import it.eng.spagobi.tools.datasource.bo.IDataSource;
import it.eng.spagobi.utilities.assertion.Assert;
import it.eng.spagobi.utilities.engines.SpagoBIEngineServiceException;
import it.eng.spagobi.utilities.engines.SpagoBIEngineServiceExceptionHandler;
import it.eng.spagobi.utilities.exceptions.SpagoBIServiceException;
import it.eng.spagobi.utilities.service.JSONAcknowledge;
import it.eng.spagobi.utilities.service.JSONSuccess;

import java.io.IOException;
import java.util.Map;

import org.apache.log4j.Logger;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import com.jamonapi.Monitor;
import com.jamonapi.MonitorFactory;

import utilities.DataSourceUtilities;




/**
* @author Antonella Giachino (antonella.giachino@eng.it)
*/
public class ExecuteUpdateAction extends AbstractConsoleEngineAction {
 
 
  public static final String SERVICE_NAME = "MONITOR";
 
  // request parameters
  public static String DATASET_LABEL = "ds_label";
  public static String USER_ID = "userId";
  public static String CALLBACK = "callback";
  public static String MESSAGE = "message";
  public static String SCHEMA = "schema";
  public static String STMT = "stmt";

 
  // logger component
  private static Logger logger = Logger.getLogger(ExecuteUpdateAction.class);
  ConsoleEngineInstance consoleEngineInstance;
 
  public void service(SourceBean request, SourceBean response) {
   
    String message;
    String user;
    String callback;

    logger.debug("IN");
    Monitor monitor =MonitorFactory.start("SpagoBI_Console.ExecuteUpdateAction.service")
       
    try {
      super.service(request,response);
      consoleEngineInstance = getConsoleEngineInstance();
     
      //check for mandatory parameters            
      user = getAttributeAsString( USER_ID );
      logger.debug("Parameter [" + USER_ID + "] is equals to [" + user + "]");     
      Assert.assertTrue(!StringUtilities.isEmpty( user ), "Parameter [" + USER_ID + "] cannot be null or empty");
     
      callback = getAttributeAsString( CALLBACK );
      logger.debug("Parameter [" + CALLBACK + "] is equals to [" + callback + "]");
     
      IDataSource ds = consoleEngineInstance.getDataSource();           
      DataSourceUtilities utility = new DataSourceUtilities(ds);
      //gets hashmap with all parameters     
      Map<String , Object> params;
      params = getAttributesAsMap()
      JSONObject metaParams = getAttributeAsJSONObject( "metaParams" );
      logger.debug("Parameter [metaParams] is equals to [" + metaParams + "]");
     
      boolean result = utility.executeUpdateQuery(params, metaParams);
      if ( !result ){
        throw new ConsoleEngineRuntimeException("Impossible to perform update statement");   
      }
     
      try {
        writeBackToClient( new JSONAcknowledge() );
      } catch (IOException e) {
        String msg = "Impossible to write back the responce to the client";
        throw new SpagoBIEngineServiceException(getActionName(), msg, e);
      }
     
    } catch (Throwable t) {
      throw SpagoBIEngineServiceExceptionHandler.getInstance().getWrappedException(getActionName(), getEngineInstance(), t);
    } finally {
      monitor.stop();
      logger.debug("OUT");
    }
  }
 
  private void getEmptyResult(String message){
    try {
      JSONArray emptyListJSON = new JSONArray();
      JSONObject results = new JSONObject();
      results.put("message", message);
      results.put("results", emptyListJSON);
      results.put("totalCount", emptyListJSON.length());
      writeBackToClient( new JSONSuccess( results ) );
    } catch (IOException e) {
      throw new SpagoBIServiceException(SERVICE_NAME, "Impossible to write back the responce to the client", e);
    } catch (JSONException e) {
      throw new SpagoBIServiceException(SERVICE_NAME, "Cannot serialize objects into a JSON object", e);
    }
  }
 


}
TOP

Related Classes of it.eng.spagobi.engines.console.services.ExecuteUpdateAction

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.