summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/thrifthelper/ThriftManager.java
blob: 6072030bf634bd2d472921b83e37f0ebdfba83eb (plain) (blame)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package org.openslx.thrifthelper;

import java.lang.reflect.Proxy;

import org.apache.log4j.Logger;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.protocol.TProtocol;
import org.apache.thrift.transport.TFramedTransport;
import org.apache.thrift.transport.TSocket;
import org.apache.thrift.transport.TTransport;
import org.apache.thrift.transport.TTransportException;
import org.openslx.imagemaster.thrift.iface.ImageServer;
import org.openslx.sat.thrift.iface.Server;
import org.openslx.thrifthelper.ThriftHandler.EventCallback;

public class ThriftManager
{

	private final static Logger LOGGER = Logger.getLogger( ThriftManager.class );

	public interface ErrorCallback
	{
		/**
		 * Called if connecting/reconnecting to the thrift server failed.
		 * 
		 * @param t the exception that occured last (may be null)
		 * @param message an optional message describing the circumstances
		 */
		public void thriftError( Throwable t, String message );
	}

	private static ErrorCallback _errorCallback = null;

	/**
	 * Private members for master connection information
	 */
	private static final String MASTERSERVER_ADDRESS = "bwlp-masterserver.ruf.uni-freiburg.de";
	private static final int MASTERSERVER_PORT = 9090;
	private static final int MASTERSERVER_TIMEOUT = 15000;

	/**
	 * Private members for satellite connection information
	 */
	private static String SATELLITE_IP = null;
	private static final int SATELLITE_PORT = 9090;
	private static final int SATELLITE_TIMEOUT = 15000;

	/**
	 * Sat connection. Initialized when we know the sat server IP.
	 */
	private static Server.Iface _satClient = null;

	/**
	 * Master connection. As its address is known in advance, create the object right away.
	 */
	private static ImageServer.Iface _masterClient = (ImageServer.Iface)Proxy.newProxyInstance(
			ImageServer.Iface.class.getClassLoader(),
			new Class[] { ImageServer.Iface.class }, new ThriftHandler<ImageServer.Client>( ImageServer.Client.class, new EventCallback<ImageServer.Client>() {

				@Override
				public ImageServer.Client getNewClient()
				{
					// ok lets do it
					TTransport transport =
							new TFramedTransport( new TSocket( MASTERSERVER_ADDRESS, MASTERSERVER_PORT, MASTERSERVER_TIMEOUT ) );
					try {
						transport.open();
					} catch ( TTransportException e ) {
						LOGGER.error( "Could not open transport to thrift's server with IP: " + MASTERSERVER_ADDRESS );
						transport.close();
						return null;
					}
					final TProtocol protocol = new TBinaryProtocol( transport );
					// now we are ready to create the client, according to ClientType!
					return new ImageServer.Client( protocol );

				}

				@Override
				public void error( Throwable t, String message )
				{
					synchronized ( LOGGER ) {
						if ( _errorCallback != null )
							_errorCallback.thriftError( t, message );
					}
				}
			} ) );

	/**
	 * IP Validation Regex
	 */
	private static final String IP_VALID_PATTERN =
			"^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." +
					"([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." +
					"([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." +
					"([01]?\\d\\d?|2[0-4]\\d|25[0-5])$";

	/**
	 * Sets the IP of the satellite to connect to
	 * 
	 * @param ip the ip of the satellite as String
	 * @return true if setting the ip worked, false otherwise
	 */
	public static boolean setSatellite( String ip )
	{
		if ( ip.isEmpty() ) {
			LOGGER.error( "Given IP for satellite is empty." );
			return false;
		}
		// validate
		if ( !ip.matches( IP_VALID_PATTERN ) ) {
			LOGGER.error( "Given form of IP is invalid: " + ip );
			return false;
		}
		// finally set it
		SATELLITE_IP = ip;

		// Create monster proxy class from interface
		_satClient = (Server.Iface)Proxy.newProxyInstance(
				Server.Iface.class.getClassLoader(),
				new Class[] { Server.Iface.class }, new ThriftHandler<Server.Client>( Server.Client.class, new EventCallback<Server.Client>() {

					@Override
					public Server.Client getNewClient()
					{
						// first check if we have a sat ip
						if ( SATELLITE_IP == null ) {
							LOGGER.error( "Satellite ip adress was not set prior to getting the sat client. Use setSatellite(<ip>)." );
							return null;
						}
						// ok lets do it
						TTransport transport =
								new TSocket( SATELLITE_IP, SATELLITE_PORT, SATELLITE_TIMEOUT );
						try {
							transport.open();
						} catch ( TTransportException e ) {
							LOGGER.error( "Could not open transport to thrift's server with IP: " + SATELLITE_IP );
							transport.close();
							return null;
						}
						final TProtocol protocol = new TBinaryProtocol( transport );
						// now we are ready to create the client, according to ClientType!
						LOGGER.info( "Satellite '" + SATELLITE_IP + "' reachable. Client initialised." );
						return new Server.Client( protocol );
					}

					@Override
					public void error( Throwable t, String message )
					{
						synchronized ( LOGGER ) {
							if ( _errorCallback != null )
								_errorCallback.thriftError( t, message );
						}
					}
				} ) );
		return true;
	}

	/**
	 * Returns the singleton client of the thrift connection to the satellite
	 * 
	 * @return the thrift client to the satellite server
	 */
	public static Server.Iface getSatClient()
	{
		return _satClient;
	}

	/**
	 * Returns the singleton client of the master thrift connection
	 * 
	 * @return the thrift client to the master server
	 */
	public static ImageServer.Iface getMasterClient()
	{
		return _masterClient;
	}

	/**
	 * Set the callback class for errors that occur on one of the
	 * thrift connections.
	 * 
	 * @param cb
	 */
	public static void setErrorCallback( ErrorCallback cb )
	{
		synchronized ( LOGGER ) {
			_errorCallback = cb;
		}
	}
}