]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/ResultCallWrappedQueryProcedure4.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / procedure / ResultCallWrappedQueryProcedure4.java
index 7a107bf6a521df4f992a16e31dc59f4a391bd8df..c24e8766811bf073cd48eeb5029634c53005a1ad 100644 (file)
@@ -1,89 +1,89 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.impl.procedure;\r
-\r
-import java.util.ArrayList;\r
-import java.util.concurrent.atomic.AtomicBoolean;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.common.utils.Logger;\r
-import org.simantics.db.impl.query.QueryProcessor.AsyncBarrier;\r
-import org.simantics.db.procedure.AsyncMultiProcedure;\r
-\r
-public class ResultCallWrappedQueryProcedure4<Result> implements AsyncMultiProcedure<Result> {\r
-\r
-    final private ArrayList<Result> result;\r
-    private Throwable exception = null;\r
-    final private AsyncMultiProcedure<Result> procedure;\r
-    final private AtomicBoolean latch;\r
-    \r
-    public ResultCallWrappedQueryProcedure4(AsyncMultiProcedure<Result> procedure) {\r
-        this.procedure = procedure;\r
-        latch = new AtomicBoolean(false);\r
-        result = new ArrayList<Result>();\r
-    }\r
-    \r
-    @Override\r
-    public void execute(AsyncReadGraph graph, Result result) {\r
-       try {\r
-            synchronized(this.result) {\r
-                this.result.add(result);\r
-            }\r
-               procedure.execute(graph, result);\r
-       } catch (Throwable t) {\r
-               Logger.defaultLogError("AsyncMultiProcedure.execute failed for " + procedure, t);\r
-       }\r
-    }\r
-    \r
-    @Override\r
-    public void finished(AsyncReadGraph graph) {\r
-       if(latch.compareAndSet(false, true)) {\r
-               try {\r
-                procedure.finished(graph);\r
-               } catch (Throwable t) {\r
-                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, t);\r
-               } finally {\r
-               }\r
-       } else {\r
-               Logger.defaultLogError("Finished or exception was called many times (this time is finished)");\r
-       }\r
-    }\r
-\r
-    @Override\r
-    public void exception(AsyncReadGraph graph, Throwable t) {\r
-       if(latch.compareAndSet(false, true)) {\r
-               try {\r
-                this.exception = t;\r
-                procedure.exception(graph, t);\r
-               } catch (Throwable throwable) {\r
-                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, throwable);\r
-               } finally {\r
-               }\r
-       } else {\r
-               Logger.defaultLogError("Finished or exception was called many times (this time is exception)");\r
-       }\r
-    }\r
-    \r
-    public ArrayList<Result> getResult() {\r
-        return result;\r
-    }\r
-    \r
-    public Throwable getException() {\r
-        return exception;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return "ResultCallWrappedQueryProcedure4[" + procedure + "]"; \r
-    }\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.impl.procedure;
+
+import java.util.ArrayList;
+import java.util.concurrent.atomic.AtomicBoolean;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.common.utils.Logger;
+import org.simantics.db.impl.query.QueryProcessor.AsyncBarrier;
+import org.simantics.db.procedure.AsyncMultiProcedure;
+
+public class ResultCallWrappedQueryProcedure4<Result> implements AsyncMultiProcedure<Result> {
+
+    final private ArrayList<Result> result;
+    private Throwable exception = null;
+    final private AsyncMultiProcedure<Result> procedure;
+    final private AtomicBoolean latch;
+    
+    public ResultCallWrappedQueryProcedure4(AsyncMultiProcedure<Result> procedure) {
+        this.procedure = procedure;
+        latch = new AtomicBoolean(false);
+        result = new ArrayList<Result>();
+    }
+    
+    @Override
+    public void execute(AsyncReadGraph graph, Result result) {
+       try {
+            synchronized(this.result) {
+                this.result.add(result);
+            }
+               procedure.execute(graph, result);
+       } catch (Throwable t) {
+               Logger.defaultLogError("AsyncMultiProcedure.execute failed for " + procedure, t);
+       }
+    }
+    
+    @Override
+    public void finished(AsyncReadGraph graph) {
+       if(latch.compareAndSet(false, true)) {
+               try {
+                procedure.finished(graph);
+               } catch (Throwable t) {
+                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, t);
+               } finally {
+               }
+       } else {
+               Logger.defaultLogError("Finished or exception was called many times (this time is finished)");
+       }
+    }
+
+    @Override
+    public void exception(AsyncReadGraph graph, Throwable t) {
+       if(latch.compareAndSet(false, true)) {
+               try {
+                this.exception = t;
+                procedure.exception(graph, t);
+               } catch (Throwable throwable) {
+                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, throwable);
+               } finally {
+               }
+       } else {
+               Logger.defaultLogError("Finished or exception was called many times (this time is exception)");
+       }
+    }
+    
+    public ArrayList<Result> getResult() {
+        return result;
+    }
+    
+    public Throwable getException() {
+        return exception;
+    }
+
+    @Override
+    public String toString() {
+        return "ResultCallWrappedQueryProcedure4[" + procedure + "]"; 
+    }
+    
+}