]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/CallWrappedQueryProcedure4.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / procedure / CallWrappedQueryProcedure4.java
index 6cc6b4086d33d8e783541ebd07060b5c2a33464b..554ce618be7ddf2acbe65c58ccc38ff8e80fe9b5 100644 (file)
@@ -1,72 +1,72 @@
-/*******************************************************************************\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.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 CallWrappedQueryProcedure4<Result> implements AsyncMultiProcedure<Result> {\r
-\r
-    final private AsyncMultiProcedure<Result> procedure;\r
-    final private AsyncBarrier barrier;\r
-    final private AtomicBoolean latch;\r
-    \r
-    public CallWrappedQueryProcedure4(AsyncMultiProcedure<Result> procedure, AsyncBarrier barrier) {\r
-        this.procedure = procedure;\r
-        this.barrier = barrier;\r
-        latch = new AtomicBoolean(false);\r
-    }\r
-    \r
-    @Override\r
-    public void execute(AsyncReadGraph graph, Result result) {\r
-       try {\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
-                barrier.dec();                 \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
-                procedure.exception(graph, t);\r
-               } catch (Throwable throwable) {\r
-                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, throwable);\r
-               } finally {\r
-                barrier.dec();                 \r
-               }\r
-       } else {\r
-               Logger.defaultLogError("Finished or exception was called many times (this time is exception)");\r
-       }\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.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 CallWrappedQueryProcedure4<Result> implements AsyncMultiProcedure<Result> {
+
+    final private AsyncMultiProcedure<Result> procedure;
+    final private AsyncBarrier barrier;
+    final private AtomicBoolean latch;
+    
+    public CallWrappedQueryProcedure4(AsyncMultiProcedure<Result> procedure, AsyncBarrier barrier) {
+        this.procedure = procedure;
+        this.barrier = barrier;
+        latch = new AtomicBoolean(false);
+    }
+    
+    @Override
+    public void execute(AsyncReadGraph graph, Result result) {
+       try {
+               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 {
+                barrier.dec();                 
+               }
+       } 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 {
+                procedure.exception(graph, t);
+               } catch (Throwable throwable) {
+                       Logger.defaultLogError("AsyncMultiProcedure.exception failed for " + procedure, throwable);
+               } finally {
+                barrier.dec();                 
+               }
+       } else {
+               Logger.defaultLogError("Finished or exception was called many times (this time is exception)");
+       }
+    }
+       
+}