1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/*
*
* Derby - Class org.apache.derbyTesting.system.mailjdbc.utils.ThreadUtils
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
*/
package org.apache.derbyTesting.system.mailjdbc.utils;
/**
* This class is used to keep the threads in an ArrayList and starts them
* also checks whether the thread is alive or sleeping
*/
import java.util.ArrayList;
import org.apache.derbyTesting.system.mailjdbc.MailJdbc;
import org.apache.derbyTesting.system.mailjdbc.tasks.Backup;
import org.apache.derbyTesting.system.mailjdbc.tasks.Browse;
import org.apache.derbyTesting.system.mailjdbc.tasks.Purge;
import org.apache.derbyTesting.system.mailjdbc.tasks.Refresh;
public class ThreadUtils {
private static ArrayList<Thread> userThreads = new ArrayList<Thread>();
public static ThreadUtils threadutil = new ThreadUtils();
//constructor which will start the threads
public static void startThreads() {
threadutil.run();
}
public void run() {
Thread t = null;
try {
//Starting Refresh Thread
t = new Refresh("Refresh Thread");
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName());
userThreads.add(t);
//Starting browsing thread
t = new Browse("Browsing Thread");
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName());
userThreads.add(t);
//Starting Purge Thread
t = new Purge("Purging Thread");
int sleep_time = (int) 150000; //Due the cascade constriant
// This is the number that
// make sure insert attachment has been finished
Thread.sleep(sleep_time);
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName() + " with 150000 sleep time");
userThreads.add(t);
//Starting Backup Thread
t = new Backup("Backup Thread");
t.start();
MailJdbc.logAct.logMsg(LogFile.INFO + "Started: " + t.getName());
userThreads.add(t);
sleep_time = (int) (Math.random() * 15000);
Thread.sleep(sleep_time);
} catch (Exception e) {
MailJdbc.logAct
.logMsg(LogFile.ERROR
+ "Exception while starting the threads: "
+ e.getMessage());
}
}
public static synchronized boolean isThreadRunning(String name) {
//checks and returns true is the Refresh thread is active
if (name.equalsIgnoreCase("Refresh Thread")) {
Refresh rt = (Refresh) userThreads.get(0);
return rt.isRunning();
} else
return false;
}
public static synchronized Thread getThread(String name) {
if (name.equalsIgnoreCase("Refresh Thread")) {
return (Refresh) userThreads.get(0);
} if (name.equalsIgnoreCase("Purging Thread")) {
return (Purge) userThreads.get(2);
} else {
return null;
}
}
public ThreadUtils getInstance() {
return threadutil;
}
}
|