1 | package omq.common.event; |
---|
2 | |
---|
3 | import java.io.IOException; |
---|
4 | import java.security.KeyManagementException; |
---|
5 | import java.security.NoSuchAlgorithmException; |
---|
6 | import java.util.Properties; |
---|
7 | |
---|
8 | import omq.common.remote.RevoConnectionFactory; |
---|
9 | import omq.common.util.RevoEnvironment; |
---|
10 | import omq.common.util.Serializer; |
---|
11 | import omq.exception.EnvironmentException; |
---|
12 | import omq.exception.SerializerException; |
---|
13 | |
---|
14 | |
---|
15 | import com.rabbitmq.client.Channel; |
---|
16 | import com.rabbitmq.client.Connection; |
---|
17 | |
---|
18 | /** |
---|
19 | * This class is used to publish events into a topic |
---|
20 | * |
---|
21 | * @author Sergi Toda <sergi.toda@estudiants.urv.cat> |
---|
22 | * |
---|
23 | */ |
---|
24 | public class EventTrigger { |
---|
25 | private static EventTrigger trigger; |
---|
26 | private static Connection connection; |
---|
27 | private static Channel channel; |
---|
28 | |
---|
29 | private EventTrigger(Properties env) throws IOException, KeyManagementException, NoSuchAlgorithmException { |
---|
30 | connection = RevoConnectionFactory.getConnection(env); |
---|
31 | channel = connection.createChannel(); |
---|
32 | } |
---|
33 | |
---|
34 | public static void initEventTrigger(Properties env) throws EnvironmentException, Exception { |
---|
35 | if (trigger == null) { |
---|
36 | trigger = new EventTrigger(env); |
---|
37 | } |
---|
38 | } |
---|
39 | |
---|
40 | public static void initEventTrigger() throws EnvironmentException, Exception { |
---|
41 | if (trigger == null) { |
---|
42 | trigger = new EventTrigger(RevoEnvironment.getEnvironment()); |
---|
43 | } |
---|
44 | } |
---|
45 | |
---|
46 | public static synchronized void publish(String topic, Object obj) throws IOException, SerializerException { |
---|
47 | Event event = new Event(topic, obj); |
---|
48 | channel.exchangeDeclare(topic, "fanout"); |
---|
49 | channel.basicPublish(topic, "", null, Serializer.serialize(event)); |
---|
50 | } |
---|
51 | |
---|
52 | public static synchronized void publish(String topic, Event event) throws IOException, SerializerException { |
---|
53 | channel.exchangeDeclare(topic, "fanout"); |
---|
54 | channel.basicPublish(topic, "", null, Serializer.serialize(event)); |
---|
55 | } |
---|
56 | |
---|
57 | public static void close() throws Exception { |
---|
58 | trigger = null; |
---|
59 | channel.close(); |
---|
60 | connection.close(); |
---|
61 | } |
---|
62 | } |
---|