Package org.jboss.jbossts.qa.Utils

Source Code of org.jboss.jbossts.qa.Utils.EmptyObjectStore

/*
* JBoss, Home of Professional Open Source
* Copyright 2007, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* 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,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA  02110-1301, USA.
*
* (C) 2005-2006,
* @author JBoss Inc.
*/
//
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
//
// Arjuna Technologies Ltd.,
// Newcastle upon Tyne,
// Tyne and Wear,
// UK.
//
// $Id: EmptyObjectStore.java,v 1.5 2004/10/26 11:13:18 jcoleman Exp $
//

package org.jboss.jbossts.qa.Utils;

import com.arjuna.ats.arjuna.common.Environment;
import com.arjuna.ats.arjuna.common.arjPropertyManager;
import com.arjuna.ats.arjuna.objectstore.jdbc.JDBCAccess;

import java.io.File;
import java.sql.Connection;
import java.sql.Statement;

public class EmptyObjectStore
{
  public static void main(String[] args)
  {
    Setup orbClass = null;

    try
    {
      boolean needOrb = true;

      for (int i = 0; i < args.length; i++)
      {
        if (args[i].equals("-local"))
        {
          needOrb = false;
        }
      }

      if (needOrb)
      {
        Class c = Thread.currentThread().getContextClassLoader().loadClass("org.jboss.jbossts.qa.Utils.OrbSetup");

        orbClass = (Setup) c.newInstance();

        orbClass.start(args);
      }

      if (arjPropertyManager.propertyManager.getProperty(Environment.OBJECTSTORE_TYPE) != null &&
          arjPropertyManager.propertyManager.getProperty(Environment.OBJECTSTORE_TYPE).startsWith("JDBCStore"))
      {
        JDBCAccess mJDBC = (JDBCAccess) Class.forName(arjPropertyManager.propertyManager.getProperty(Environment.JDBC_USER_DB_ACCESS)).newInstance();
        String tableName = mJDBC.tableName();
        if (tableName == "")
          /* from arjuna.internal.JDBCStore */
        {
          tableName = "ArjunaTSTable";
        }
        System.err.println("Dropping object store table: " + tableName);
        Connection mConnection = mJDBC.getConnection();
        Statement s = mConnection.createStatement();
        try
        {
          s.executeUpdate("DROP TABLE " + tableName);
        }
        catch (java.sql.SQLException se1)
        {
          se1.printStackTrace();
        }
        System.err.println("Dropping action store table: ArjunaTSTxTable");
        /* from arjuna.internal.JDBCActionStore */
        try
        {
          s.executeUpdate("DROP TABLE ArjunaTSTxTable");
        }
        catch (java.sql.SQLException se2)
        {
          se2.printStackTrace();
        }
      }
      else
      {
        String objectStoreDirName = arjPropertyManager.propertyManager.getProperty(Environment.OBJECTSTORE_DIR, com.arjuna.ats.arjuna.common.Configuration.objectStoreRoot());

        System.out.println("Emptying " + objectStoreDirName);

        if (objectStoreDirName != null)
        {
          File objectStoreDir = new File(objectStoreDirName);

          removeContents(objectStoreDir);
        }
        else
        {
          System.err.println("Unable to find the ObjectStore root.");
          System.out.println("Failed");
        }
      }
      emptyPIDStore();
    }
    catch (Exception exception)
    {
      System.err.println("EmptyObjectStore.main: " + exception);
      exception.printStackTrace(System.err);
    }

    try
    {
      if (orbClass != null)
      {
        orbClass.stop();
      }
    }
    catch (Exception exception)
    {
      System.err.println("EmptyObjectStore.main: " + exception);
      exception.printStackTrace(System.err);
    }

    System.out.println("Passed");
  }

  public static void removeContents(File directory)
  {
    if ((directory != null) &&
        directory.isDirectory() &&
        (!directory.getName().equals("")) &&
        (!directory.getName().equals("/")) &&
        (!directory.getName().equals("\\")) &&
        (!directory.getName().equals(".")) &&
        (!directory.getName().equals("..")))
    {
      File[] contents = directory.listFiles();

      for (int index = 0; index < contents.length; index++)
      {
        if (contents[index].isDirectory())
        {
          removeContents(contents[index]);

          //System.err.println("Deleted: " + contents[index]);
          contents[index].delete();
        }
        else
        {
          System.err.println("Deleted: " + contents[index]);
          contents[index].delete();
        }
      }
    }
  }

  public static void emptyPIDStore()
  {
    // Do nothing
  }
}
TOP

Related Classes of org.jboss.jbossts.qa.Utils.EmptyObjectStore

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.