blob: 9123ceb07ce610d8a4157fc2fe482855af8a2884 [file] [log] [blame]
/* $Id$
*
* 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.etch.util;
/**
* Implementation of startable which creates a thread and runs.
*/
abstract public class Runner
extends AbstractStartable implements Runnable
{
/**
* Constructs the Runner.
*/
public Runner()
{
// nothing to do.
}
/**
* @param handler the handler to notify of started and stopped events.
*/
public void setHandler( RunnerHandler handler )
{
this.handler = handler;
}
/**
* The handler is used to report started and stopped events.
*/
private RunnerHandler handler;
@Override
protected void start0() throws Exception
{
thread = new Thread( this );
thread.start();
}
@Override
protected void stop0() throws Exception
{
Thread t = thread;
if (t != null)
{
thread = null;
//t.join();
}
}
private Thread thread;
final public void run()
{
fireStarted();
try
{
boolean first = true;
while (isStarted())
{
if (!run0( first ))
break;
first = false;
}
}
catch ( Exception e )
{
fireException( "run", e );
}
finally
{
setStopped();
fireStopped();
//Log.report( "thread dead" );
}
}
private void fireStarted()
{
handler.started();
}
/**
* Reports an exception caught by the thread managing the runnable.
* @param what
* @param e
*/
protected void fireException( String what, Exception e )
{
try
{
handler.exception( what, e );
}
catch ( Exception x )
{
e.printStackTrace();
if (x != e)
x.printStackTrace();
}
}
private void fireStopped()
{
handler.stopped();
}
/**
* @param first true the first time we are called
* @return true if we should keep running.
* @throws Exception
*/
abstract protected boolean run0( boolean first ) throws Exception;
}