]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.acorn/src/org/simantics/acorn/MainProgram.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / MainProgram.java
1 package org.simantics.acorn;
2
3 import java.io.Closeable;
4 import java.io.IOException;
5 import java.util.ArrayList;
6 import java.util.Comparator;
7 import java.util.List;
8 import java.util.Map;
9 import java.util.TreeMap;
10 import java.util.concurrent.Callable;
11 import java.util.concurrent.ExecutorService;
12 import java.util.concurrent.Executors;
13 import java.util.concurrent.Semaphore;
14 import java.util.concurrent.ThreadFactory;
15 import java.util.concurrent.TimeUnit;
16
17 import org.simantics.acorn.exception.AcornAccessVerificationException;
18 import org.simantics.acorn.exception.IllegalAcornStateException;
19 import org.simantics.acorn.lru.ClusterStreamChunk;
20 import org.simantics.acorn.lru.ClusterUpdateOperation;
21 import org.simantics.db.service.ClusterUID;
22 import org.simantics.utils.logging.TimeLogger;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25
26 public class MainProgram implements Runnable, Closeable {
27
28         private static final Logger LOGGER = LoggerFactory.getLogger(MainProgram.class);
29
30         private static final int CLUSTER_THREADS = 4;
31         private static final int CHUNK_CACHE_SIZE = 100;
32
33         private final GraphClientImpl2 client;
34         private final ExecutorService[] clusterUpdateThreads;
35     private final List<ClusterUpdateOperation>[] updateSchedules;
36
37         private Thread mainProgramThread;
38
39         private boolean alive = true;
40         private Semaphore deathBarrier = new Semaphore(0);
41
42         final ClusterManager clusters;
43
44         private final OperationQueue operationQueue = new OperationQueue(this);
45
46         static class ClusterThreadFactory implements ThreadFactory {
47
48                 final String name;
49                 final boolean daemon;
50
51                 public ClusterThreadFactory(String name, boolean daemon) {
52                         this.name = name;
53                         this.daemon = daemon;
54                 }
55
56                 @Override
57                 public Thread newThread(Runnable r) {
58                         Thread thread = new Thread(r, name);
59                         thread.setDaemon(daemon);
60                         return thread;
61                 }
62         }
63
64         @SuppressWarnings("unchecked")
65         MainProgram(GraphClientImpl2 client, ClusterManager clusters) {
66
67                 this.client = client;
68                 this.clusters = clusters;
69                 this.clusterUpdateThreads = new ExecutorService[CLUSTER_THREADS];
70                 this.updateSchedules = new ArrayList[CLUSTER_THREADS];
71                 for(int i=0;i<clusterUpdateThreads.length;i++) {
72                         clusterUpdateThreads[i] = Executors.newSingleThreadExecutor(new ClusterThreadFactory("Cluster Updater " + (i+1), false));
73                         updateSchedules[i] = new ArrayList<>();
74                 }
75         }
76
77         void startTransaction(long id) {
78                 operationQueue.startTransaction(id);
79         }
80
81         private static Comparator<ClusterUID> clusterComparator = new Comparator<ClusterUID>() {
82
83                 @Override
84                 public int compare(ClusterUID o1, ClusterUID o2) {
85                         return Long.compare(o1.second, o2.second);
86                 }
87         };
88
89         @Override
90         public void run() {
91
92                 mainProgramThread = Thread.currentThread();
93
94                 try {
95
96                         TreeMap<ClusterUID, List<ClusterUpdateOperation>> updates = new TreeMap<>(clusterComparator);
97
98                         main:
99                         while(alive) {
100
101                                 if (!updates.isEmpty())
102                                         updates.clear();
103                                 operationQueue.pumpUpdates(updates);
104
105                                 if(updates.isEmpty()) {
106
107                                         long duration = operationQueue.waitFor();
108
109                                         if (!alive)
110                                                 break main;
111
112                                         if(duration > 4000000000L) {
113                                                 checkIdle();
114                                         }
115                                         
116                                 }
117
118 //                              long sss = System.nanoTime();
119
120                                 runUpdates(updates);
121                                 runTasksIfEmpty();
122
123                                 /*
124                                  * Here we are actively processing updates from client.
125                                  * Maintain necessary caching here.
126                                  */
127
128                                 clusters.streamLRU.acquireMutex();
129                                 try {
130                                         swapChunks();
131                                 } catch (AcornAccessVerificationException | IllegalAcornStateException e) {
132                                         LOGGER.error("cluster chunk swapping failed", e);
133                                 } finally {
134                                         clusters.streamLRU.releaseMutex();
135                                 }
136                                 clusters.csLRU.acquireMutex();
137                                 try {
138                                         swapCS();
139                                 } catch (Throwable t) {
140                                         throw new IllegalAcornStateException(t);
141                                 } finally {
142                                         clusters.csLRU.releaseMutex();
143                                 }
144
145                                 TimeLogger.log("Performed updates");
146
147                         }
148
149                 } catch (Throwable t) {
150                         LOGGER.error("FATAL: MainProgram died unexpectedly", t);
151                 } finally {
152                         deathBarrier.release();
153                 }
154         }
155
156         @FunctionalInterface
157         static interface MainProgramRunnable {
158                 void run() throws Exception;
159                 default void error(Exception e) {
160                         LOGGER.error("An error occured", e);
161                 }
162                 default void success() {}
163         }
164
165         private void runUpdates(TreeMap<ClusterUID, List<ClusterUpdateOperation>> updates) throws InterruptedException {
166
167                 for(int i=0;i<CLUSTER_THREADS;i++)
168                         updateSchedules[i].clear();
169
170                 if (updates.isEmpty())
171                         return;
172
173                 final Semaphore s = new Semaphore(0);
174
175                 for(Map.Entry<ClusterUID, List<ClusterUpdateOperation>> entry : updates.entrySet()) {
176                         ClusterUID key = entry.getKey();
177                         int hash = key.hashCode() & (clusterUpdateThreads.length-1);
178                         updateSchedules[hash].addAll(entry.getValue());
179                 }
180
181                 //                              final AtomicLong elapsed = new AtomicLong(0);
182                 int acquireAmount = 0;
183                 for(int i=0;i<CLUSTER_THREADS;i++) {
184                         final List<ClusterUpdateOperation> ops = updateSchedules[i];
185                         if (!ops.isEmpty()) {
186                                 acquireAmount++;
187                                 clusterUpdateThreads[i].submit(new Callable<Object>() {
188
189                     @Override
190                     public Object call() throws Exception {
191                         //long st = System.nanoTime();
192                         try {
193                             for(ClusterUpdateOperation op : ops) {
194                                 op.run();
195                             }
196                         } finally {
197                             s.release();
198                         }
199                         return null;
200
201 //                          long duration = System.nanoTime()-st;
202 //                          elapsed.addAndGet(duration);
203 //                          double dur = 1e-9*duration;
204 //                          if(dur > 0.05)
205 //                              System.err.println("duration=" + dur + "s. " + ops.size());
206                     }
207                 });
208                         }
209                 }
210
211                 s.acquire(acquireAmount);
212
213         }
214
215         /*
216          * This shall be run when no updates are currently available.
217          */
218         private void runTasksIfEmpty() {
219                 if(operationQueue.isEmpty()) {
220                         List<MainProgramRunnable> todo = new ArrayList<>();
221                         operationQueue.pumpTasks(todo);
222                         for(MainProgramRunnable runnable : todo) {
223                                 try {
224                                         runnable.run();
225                                         runnable.success();
226                                 } catch (Exception e) {
227                                         runnable.error(e);
228                                 }
229                         }
230                 }
231         }
232
233         /*
234          * This gets called when an idle period has been detected
235          */
236         private void checkIdle() throws IOException, IllegalAcornStateException, AcornAccessVerificationException {
237
238                 // Was this a time-out or a new stream request?
239                 if(operationQueue.isEmpty()) {
240
241                         /*
242                          * We are idling here.
243                          * Flush all caches gradually
244                          */
245
246                         // Write pending cs to disk
247                         boolean written = clusters.csLRU.swapForced();
248                         while(written) {
249                                 if(!operationQueue.isEmpty()) break;
250                                 written = clusters.csLRU.swapForced();
251                         }
252                         // Write pending chunks to disk
253                         written = clusters.streamLRU.swapForced();
254                         while(written) {
255                                 if(!operationQueue.isEmpty()) break;
256                                 written = clusters.streamLRU.swapForced();
257                         }
258                         // Write pending files to disk
259                         written = clusters.fileLRU.swapForced();
260                         while(written) {
261                                 if(!operationQueue.isEmpty()) break;
262                                 written = clusters.fileLRU.swapForced();
263                         }
264                         // Write pending clusters to disk
265                         written = clusters.clusterLRU.swapForced();
266                         while(written) {
267                                 if(!operationQueue.isEmpty()) break;
268                                 written = clusters.clusterLRU.swapForced();
269                         }
270
271                         client.tryMakeSnapshot();
272
273                 }
274
275         }
276
277
278         /*
279          * This schedules tasks to be run in MainProgram thread
280          * Called from other threads than MainProgram thread
281          *
282          */
283         void runIdle(MainProgramRunnable task) {
284                 operationQueue.scheduleTask(task);
285         }
286
287         /*
288          * Mutex for streamLRU is assumed here
289          *
290          */
291         private void swapChunks() throws AcornAccessVerificationException, IllegalAcornStateException {
292
293                 // Cache chunks during update operations
294                 while(clusters.streamLRU.swap(Long.MAX_VALUE, CHUNK_CACHE_SIZE));
295         }
296
297         private void swapCS() throws AcornAccessVerificationException, IllegalAcornStateException {
298
299                 // Cache chunks during update operations
300                 while(clusters.csLRU.swap(Long.MAX_VALUE, CHUNK_CACHE_SIZE));
301         }
302
303         /*
304          * Called by DB client write threads
305          */
306         void committed() {
307
308                 ClusterStreamChunk last = operationQueue.commitLast();
309         if (!alive) {
310             LOGGER.error("Trying to commit operation after MainProgram is closed! Operation is " + last);
311         }
312
313         }
314
315         /*
316          * Called by DB client write threads
317          */
318         void schedule(ClusterUpdateOperation operation) throws IllegalAcornStateException {
319
320                 if (!alive) {
321                 LOGGER.error("Trying to schedule operation after MainProgram is closed! Operation is " + operation);
322             }
323
324                 clusters.streamLRU.acquireMutex();
325
326                 try {
327
328                         operationQueue.scheduleUpdate(operation);
329                         swapChunks();
330
331                 } catch (IllegalAcornStateException e) {
332                     throw e;
333                 } catch (Throwable t) {
334                         throw new IllegalAcornStateException(t);
335                 } finally {
336                         clusters.streamLRU.releaseMutex();
337                 }
338
339         }
340
341     @Override
342     public void close() {
343
344         alive = false;
345
346         // This will wake up the sleeping beauty
347         operationQueue.scheduleTask(() -> {});
348
349         try {
350             deathBarrier.acquire();
351         } catch (InterruptedException e) {
352         }
353
354         for (ExecutorService executor : clusterUpdateThreads)
355             executor.shutdown();
356
357         for (int i = 0; i < clusterUpdateThreads.length; i++) {
358             try {
359                 ExecutorService executor  = clusterUpdateThreads[i];
360                 executor.awaitTermination(500, TimeUnit.MILLISECONDS);
361                 clusterUpdateThreads[i] = null;
362             } catch (InterruptedException e) {
363                 LOGGER.error("clusterUpdateThread[{}] termination interrupted", i, e);
364             }
365         }
366     }
367
368     void assertMainProgramThread() {
369         assert(Thread.currentThread().equals(mainProgramThread));
370     }
371
372     void assertNoMainProgramThread() {
373         assert(!Thread.currentThread().equals(mainProgramThread));
374     }
375
376 }