summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/GenericAutoService.java
blob: 0b3546231a4a8dab8f3e8e0079e58fe43a7cae3d (plain)
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
package f00f.net.irc.martyr;

import java.util.Observable;

/**
 * Provides a framework for an auto service.  Does enable by default.
 * Splits the 'update' method into two, 'updateState' and 'updateCommand'.
 * Also provides thread safety on all methods.
 */
public abstract class GenericAutoService extends GenericCommandAutoService
{

protected GenericAutoService( IRCConnection connection )
{
	super( connection );
}

public synchronized void enable()
{
	if( enabled )
		return;

	connection.addStateObserver( this );

	super.enable();
}

public synchronized void disable()
{
	if( !enabled )
		return;
		
	connection.removeStateObserver( this );

	super.disable();
}

public synchronized void update( Observable observer, Object updated )
{
	if( !enabled )
		throw new IllegalStateException("This observer is not enabled." );
	if( updated instanceof State )
		updateState( (State)updated );
	else 
		super.update( observer, updated );
}

protected abstract void updateState( State state );

}