Use custom object to return information about the next reaction to run.
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / engine / Engine.java
1 /*
2  * Rhynodge - Engine.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.rhynodge.engine;
19
20 import static com.google.common.base.Optional.absent;
21 import static com.google.common.base.Optional.of;
22 import static com.google.common.collect.Maps.newTreeMap;
23 import static java.lang.String.format;
24
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Map.Entry;
28 import java.util.SortedMap;
29
30 import net.pterodactylus.rhynodge.Filter;
31 import net.pterodactylus.rhynodge.Query;
32 import net.pterodactylus.rhynodge.Reaction;
33 import net.pterodactylus.rhynodge.Trigger;
34 import net.pterodactylus.rhynodge.states.AbstractState;
35 import net.pterodactylus.rhynodge.states.FailedState;
36 import net.pterodactylus.rhynodge.states.StateManager;
37
38 import com.google.common.base.Optional;
39 import com.google.common.util.concurrent.AbstractExecutionThreadService;
40 import org.apache.commons.lang3.tuple.Pair;
41 import org.apache.log4j.Logger;
42
43 /**
44  * Rhynodge main engine.
45  *
46  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
47  */
48 public class Engine extends AbstractExecutionThreadService {
49
50         /** The logger. */
51         private static final Logger logger = Logger.getLogger(Engine.class);
52
53         /** The state manager. */
54         private final StateManager stateManager;
55
56         /** All defined reactions. */
57         /* synchronize on itself. */
58         private final Map<String, Reaction> reactions = new HashMap<String, Reaction>();
59
60         /**
61          * Creates a new engine.
62          *
63          * @param stateManager
64          *            The state manager
65          */
66         public Engine(StateManager stateManager) {
67                 this.stateManager = stateManager;
68         }
69
70         //
71         // ACCESSORS
72         //
73
74         /**
75          * Adds the given reaction to this engine.
76          *
77          * @param name
78          *            The name of the reaction
79          * @param reaction
80          *            The reaction to add to this engine
81          */
82         public void addReaction(String name, Reaction reaction) {
83                 synchronized (reactions) {
84                         reactions.put(name, reaction);
85                         reactions.notifyAll();
86                 }
87         }
88
89         /**
90          * Removes the reaction with the given name.
91          *
92          * @param name
93          *            The name of the reaction to remove
94          */
95         public void removeReaction(String name) {
96                 synchronized (reactions) {
97                         if (!reactions.containsKey(name)) {
98                                 return;
99                         }
100                         reactions.remove(name);
101                         reactions.notifyAll();
102                 }
103         }
104
105         //
106         // ABSTRACTSERVICE METHODS
107         //
108
109         /**
110          * {@inheritDoc}
111          */
112         @Override
113         public void run() {
114                 while (isRunning()) {
115                         Optional<NextReaction> nextReaction = getNextReaction();
116                         if (!nextReaction.isPresent()) {
117                                 continue;
118                         }
119
120                         String reactionName = nextReaction.get().getKey();
121                         logger.debug(format("Next Reaction: %s.", reactionName));
122
123                         /* wait until the next reaction has to run. */
124                         Optional<net.pterodactylus.rhynodge.State> lastState = stateManager.loadLastState(reactionName);
125                         long lastStateTime = lastState.isPresent() ? lastState.get().time() : 0;
126                         int lastStateFailCount = lastState.isPresent() ? lastState.get().failCount() : 0;
127                         long waitTime = (lastStateTime + nextReaction.get().getReaction().updateInterval()) - System.currentTimeMillis();
128                         logger.debug(format("Time to wait for next Reaction: %d millseconds.", waitTime));
129                         if (waitTime > 0) {
130                                 synchronized (reactions) {
131                                         try {
132                                                 logger.info(format("Waiting until %tc.", lastStateTime + nextReaction.get().getReaction().updateInterval()));
133                                                 reactions.wait(waitTime);
134                                         } catch (InterruptedException ie1) {
135                                                 /* we’re looping! */
136                                         }
137                                 }
138
139                                 /* re-start loop to check for new reactions. */
140                                 continue;
141                         }
142
143                         /* run reaction. */
144                         logger.info(format("Running Query for %s...", reactionName));
145                         Query query = nextReaction.get().getReaction().query();
146                         net.pterodactylus.rhynodge.State state;
147                         try {
148                                 logger.debug("Querying system...");
149                                 state = query.state();
150                                 if (state == null) {
151                                         state = FailedState.INSTANCE;
152                                 }
153                                 logger.debug("System queried.");
154                         } catch (Throwable t1) {
155                                 logger.warn("Querying system failed!", t1);
156                                 state = new AbstractState(t1) {
157                                         /* no further state. */
158                                 };
159                         }
160                         logger.debug(format("State is %s.", state));
161
162                         /* convert states. */
163                         for (Filter filter : nextReaction.get().getReaction().filters()) {
164                                 if (state.success()) {
165                                         net.pterodactylus.rhynodge.State newState = filter.filter(state);
166                                         //logger.debug(String.format("Old state is %s, new state is %s.", state, newState));
167                                         state = newState;
168                                 }
169                         }
170                         if (!state.success()) {
171                                 state.setFailCount(lastStateFailCount + 1);
172                         }
173                         Optional<net.pterodactylus.rhynodge.State> lastSuccessfulState = stateManager.loadLastSuccessfulState(reactionName);
174
175                         /* merge states. */
176                         boolean triggerHit = false;
177                         Trigger trigger = nextReaction.get().getReaction().trigger();
178                         if (lastSuccessfulState.isPresent() && lastSuccessfulState.get().success() && state.success()) {
179                                 net.pterodactylus.rhynodge.State newState = trigger.mergeStates(lastSuccessfulState.get(), state);
180
181                                 /* save new state. */
182                                 stateManager.saveState(reactionName, newState);
183
184                                 triggerHit = trigger.triggers();
185                         } else {
186                                 /* save first or error state. */
187                                 stateManager.saveState(reactionName, state);
188                         }
189
190                         /* run action if trigger was hit. */
191                         logger.debug(format("Trigger was hit: %s.", triggerHit));
192                         if (triggerHit) {
193                                 logger.info("Executing Action...");
194                                 nextReaction.get().getReaction().action().execute(trigger.output(nextReaction.get().getReaction()));
195                         }
196
197                 }
198         }
199
200         private Optional<NextReaction> getNextReaction() {
201                 while (isRunning()) {
202                         synchronized (reactions) {
203                                 if (reactions.isEmpty()) {
204                                         logger.debug("Sleeping while no Reactions available.");
205                                         try {
206                                                 reactions.wait();
207                                         } catch (InterruptedException ie1) {
208                                                 /* ignore, we’re looping anyway. */
209                                         }
210                                         continue;
211                                 }
212                         }
213
214                         /* find next reaction. */
215                         SortedMap<Long, Pair<String, Reaction>> nextReactions = newTreeMap();
216                         synchronized (reactions) {
217                                 for (Entry<String, Reaction> reactionEntry : reactions.entrySet()) {
218                                         Optional<net.pterodactylus.rhynodge.State> state = stateManager.loadLastState(reactionEntry.getKey());
219                                         long stateTime = state.isPresent() ? state.get().time() : 0;
220                                         nextReactions.put(stateTime + reactionEntry.getValue().updateInterval(), Pair.of(reactionEntry.getKey(), reactionEntry.getValue()));
221                                 }
222                                 Pair<String, Reaction> keyReaction = nextReactions.get(nextReactions.firstKey());
223                                 return of(new NextReaction(keyReaction.getKey(), keyReaction.getValue(), nextReactions.firstKey()));
224                         }
225                 }
226                 return absent();
227         }
228
229         private static class NextReaction {
230
231                 private final String key;
232                 private final Reaction reaction;
233                 private final long nextTime;
234
235                 private NextReaction(String key, Reaction reaction, long nextTime) {
236                         this.key = key;
237                         this.reaction = reaction;
238                         this.nextTime = nextTime;
239                 }
240
241                 public String getKey() {
242                         return key;
243                 }
244
245                 public Reaction getReaction() {
246                         return reaction;
247                 }
248
249                 public long getNextTime() {
250                         return nextTime;
251                 }
252
253         }
254
255 }