public abstract class AbstractVTKNodeMap<DBObject,E extends INode> implements VTKNodeMap<DBObject,E>, IMappingListener, RenderListener, NodeListener, UndoRedoSupport.ChangeListener{
- private static final boolean DEBUG = true;
-
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractVTKNodeMap.class);
protected Session session;
undoOpCount = undoContext.getAll().size();
redoOpCount = undoContext.getRedoList().size();
} catch(DatabaseException e) {
- e.printStackTrace();
+ LOGGER.error("Error reading from undo context", e);
}
}
UndoContext undoContext = undoRedoSupport.getUndoContext(session);
int ucount = undoContext.getAll().size();
int rcount = undoContext.getRedoList().size();
- if (DEBUG) System.out.println("Previous U:" + undoOpCount +" R:" + redoOpCount +" Current U:"+ucount+" R:"+rcount);
+
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Previous U:" + undoOpCount +" R:" + redoOpCount +" Current U:"+ucount+" R:"+rcount);
if (ucount < undoOpCount) {
runUndo = true;
} else {
undoOpCount = ucount;
redoOpCount = rcount;
- if (DEBUG) System.out.println("Undo " + runUndo + " Redo " + runRedo);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Undo " + runUndo + " Redo " + runRedo);
} catch (DatabaseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
@SuppressWarnings("unchecked")
private void receiveAdd(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveAdd " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveAdd " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
for (Pair<E, String> n : added) {
if (n.first.equals(node))
@SuppressWarnings("unchecked")
private void receiveRemove(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveRemove " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveRemove " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
for (Pair<E, String> n : removed) {
if (n.first.equals(node))
}
private void receiveUpdate(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveUpdate " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveUpdate " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
// for (Pair<E, String> n : updated) {
// if (n.first.equals(node))
session.syncRequest(new WriteRequest() {
@Override
public void perform(WriteGraph graph) throws DatabaseException {
- if (DEBUG) System.out.println("Commit " + commitMessage);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit " + commitMessage);
if (commitMessage != null) {
Layer0Utils.addCommentMetadata(graph, commitMessage);
graph.markUndoPoint();
protected void commit(WriteGraph graph) throws DatabaseException {
synchronized(syncMutex) {
- if (DEBUG) System.out.println("Commit");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit");
graphUpdates = true;
mapping.updateDomain(graph);
graphUpdates = false;
clearDeletes();
- if (DEBUG) System.out.println("Commit done");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit done");
}
}
public void domainModified() {
if (graphUpdates)
return;
- if (DEBUG)System.out.println("domainModified");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("domainModified");
session.asyncRequest(new UniqueRead<Object>() {
@Override
public Object perform(ReadGraph graph) throws DatabaseException {
}
protected void reset(ReadGraph graph) throws MappingException {
- if (DEBUG) System.out.println("Reset");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Reset");
graphUpdates = true;
mapping.getRangeModified().clear();
private boolean useFullSyncWithUndo = false;
protected void update(ReadGraph graph) throws DatabaseException {
- if (DEBUG) System.out.println("Graph update start");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Graph update start");
if (runUndo && useFullSyncWithUndo) {
synchronized (syncMutex) {
if (mapping.isRangeModified() && !runUndo && !runRedo)
commit((String)null);
- if (DEBUG) System.out.println("Graph update done");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Graph update done");
}
@Override
public void rangeModified() {
- //System.out.println("rangeModified");
+ //LOGGER.trace("rangeModified");
}
for (Pair<E, String> n : added) {
deleteUC.remove(n.first);
}
- if (DEBUG && deleteUC.size() > 0) {
- System.out.println("Delete sync");
+ if (LOGGER.isTraceEnabled() && deleteUC.size() > 0) {
+ LOGGER.trace("Delete sync");
for (E n : delete) {
- System.out.println(debugString(n));
+ LOGGER.trace(debugString(n));
}
}
delete.addAll(deleteUC);
* Clears deletable objects from mapping cache.
*/
protected void clearDeletes() {
- if (DEBUG && delete.size() > 0) System.out.println("Delete");
+ if (LOGGER.isTraceEnabled() && delete.size() > 0) LOGGER.trace("Delete");
for (E n : delete) {
- if (DEBUG) System.out.println(debugString(n));
+ if (LOGGER.isTraceEnabled()) LOGGER.trace(debugString(n));
mapping.getRange().remove(n);
stopListening(n);
}
E n = stack.pop();
boolean conflict = filterChange(removed, n);
if (conflict) {
- if (DEBUG) System.out.println("Prevent removing " + n);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Prevent removing " + n);
//filterChange(added, n)
if (filterChange(added, n))
- if (DEBUG) System.out.println("Prevent adding " + n);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Prevent adding " + n);
}
if (n instanceof ParentNode) {
ParentNode<INode> pn = (ParentNode<INode>)n;
@Override
public <T extends INode> void nodeAdded(ParentNode<T> node, INode child,
String rel) {
- if (DEBUG) System.out.println("Node added " + child + " parent " + node);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Node added " + child + " parent " + node);
//receiveAdd((E)child, rel ,graphUpdates);
receiveAdd((E)child, rel ,graphModified.contains(node));
}
@Override
public <T extends INode> void nodeRemoved(ParentNode<T> node, INode child,
String rel) {
- if (DEBUG) System.out.println("Node removed " + child + " parent " + node);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Node removed " + child + " parent " + node);
//receiveRemove((E)child, rel, graphUpdates);
receiveRemove((E)child, rel, graphModified.contains(node));
import org.simantics.objmap.graph.IMappingListener;
import org.simantics.utils.datastructures.MapSet;
import org.simantics.utils.datastructures.Pair;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
/**
* NodeMap implementation used with SCL scripts.
*/
public abstract class ScriptNodeMap<DBObject,E extends INode> implements NodeMap<DBObject,Object,E>, IMappingListener, NodeListener {
- private static final boolean DEBUG = false;
+ private static final Logger LOGGER = LoggerFactory.getLogger(ScriptNodeMap.class);
protected RequestProcessor session;
protected IMapping<DBObject,INode> mapping;
@SuppressWarnings("unchecked")
private void receiveAdd(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveAdd " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveAdd " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
for (Pair<E, String> n : added) {
if (n.first.equals(node))
@SuppressWarnings("unchecked")
private void receiveRemove(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveRemove " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveRemove " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
for (Pair<E, String> n : removed) {
if (n.first.equals(node))
}
private void receiveUpdate(E node, String id, boolean db) {
- if (DEBUG) System.out.println("receiveUpdate " + debugString(node) + " " + id + " " + db);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("receiveUpdate " + debugString(node) + " " + id + " " + db);
synchronized (syncMutex) {
// for (Pair<E, String> n : updated) {
// if (n.first.equals(node))
@Override
public void perform(WriteGraph graph) throws DatabaseException {
- if (DEBUG) System.out.println("Commit " + commitMessage);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit " + commitMessage);
if (commitMessage != null) {
Layer0Utils.addCommentMetadata(graph, commitMessage);
graph.markUndoPoint();
protected void commit(WriteGraph graph) throws DatabaseException {
synchronized(syncMutex) {
- if (DEBUG) System.out.println("Commit");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit");
graphUpdates = true;
mapping.updateDomain(graph);
graphUpdates = false;
clearDeletes();
- if (DEBUG) System.out.println("Commit done");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Commit done");
}
}
public void domainModified() {
if (graphUpdates)
return;
- if (DEBUG)System.out.println("domainModified");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("domainModified");
// FIXME : this is called by IMapping id DB thread
dirty = true;
// session.asyncRequest(new ReadRequest() {
}
protected void reset(ReadGraph graph) throws MappingException {
- if (DEBUG) System.out.println("Reset");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Reset");
synchronized (syncMutex) {
graphUpdates = true;
mapping.getRangeModified().clear();
}
protected void update(ReadGraph graph) throws DatabaseException {
- if (DEBUG) System.out.println("Graph update start");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Graph update start");
synchronized (syncMutex) {
graphUpdates = true;
for (DBObject domainObject : mapping.getDomainModified()) {
//if (mapping.isRangeModified() && !runUndo) // FIXME : redo?
if (mapping.isRangeModified())
commit((String)null);
- if (DEBUG) System.out.println("Graph update done");
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Graph update done");
}
@Override
for (Pair<E, String> n : added) {
deleteUC.remove(n.first);
}
- if (DEBUG && deleteUC.size() > 0) {
- System.out.println("Delete sync");
+ if (LOGGER.isTraceEnabled() && deleteUC.size() > 0) {
+ LOGGER.trace("Delete sync");
for (E n : delete) {
- System.out.println(debugString(n));
+ LOGGER.trace(debugString(n));
}
}
delete.addAll(deleteUC);
*/
@SuppressWarnings("unused")
protected void clearDeletes() {
- if (DEBUG && delete.size() > 0) System.out.println("Delete");
+ if (LOGGER.isTraceEnabled() && delete.size() > 0) LOGGER.trace("Delete");
for (E n : delete) {
- if (DEBUG) System.out.println(debugString(n));
+ if (LOGGER.isTraceEnabled()) LOGGER.trace(debugString(n));
mapping.getRange().remove(n);
}
delete.clear();
@Override
public <T extends INode> void nodeAdded(ParentNode<T> node, INode child,
String rel) {
- if (DEBUG) System.out.println("Node added " + child + " parent " + node);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Node added " + child + " parent " + node);
//receiveAdd((E)child, rel ,graphUpdates);
receiveAdd((E)child, rel ,graphModified.contains(node));
@Override
public <T extends INode> void nodeRemoved(ParentNode<T> node, INode child,
String rel) {
- if (DEBUG) System.out.println("Node removed " + child + " parent " + node);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("Node removed " + child + " parent " + node);
//receiveRemove((E)child, rel, graphUpdates);
receiveRemove((E)child, rel, graphModified.contains(node));
import org.simantics.plant3d.utils.ComponentUtils;
import org.simantics.utils.datastructures.Pair;
import org.simantics.utils.ui.ErrorLogger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
public class PipingRules {
- private static final boolean DEBUG = false;
+ private static final Logger LOGGER = LoggerFactory.getLogger(PipingRules.class);
+
private static final boolean DUMMY = false;
private static double MIN_TURN_ANGLE = 0.001; // Threshold for removing turn components.
public static void requestUpdate(PipeControlPoint pcp) {
if (!PipingRules.enabled)
return;
- if (DEBUG) System.out.println("PipingRules request " + pcp);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("PipingRules request " + pcp);
synchronized (updateMutex) {
if (!requestUpdates.contains(pcp))
requestUpdates.add(pcp);
if (pcp.getPipeRun() == null)
return false;
try {
- if (DEBUG) System.out.println("PipingRules " + pcp);
+ if (LOGGER.isTraceEnabled()) LOGGER.trace("PipingRules " + pcp);
updating = true;
allowInsertRemove = allowIR;
triedIR = false;
return true;
} finally {
updating = false;
-// System.out.println("PipingRules done " + pcp);
+// LOGGER.trace("PipingRules done " + pcp);
}
}
}
private static void updatePathLegEndControlPoint(PipeControlPoint pcp) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updatePathLegEndControlPoint() " + pcp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updatePathLegEndControlPoint() " + pcp);
if (pcp.getNext() != null) {
updatePathLegNext(pcp, pcp, PathLegUpdateType.NEXT_S);
}
}
private static void updateInlineControlPoint(PipeControlPoint pcp) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateInlineControlPoint() " + pcp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateInlineControlPoint() " + pcp);
PipeControlPoint start = pcp.findPreviousEnd();
updatePathLegNext(start, pcp, PathLegUpdateType.NONE);
}
private static PipeControlPoint insertElbow(PipeControlPoint pcp1, PipeControlPoint pcp2, Vector3d pos) throws Exception{
- if (DEBUG)
- System.out.println("PipingRules.insertElbow() " + pcp1 + " " + pcp2 + " " + pos);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.insertElbow() " + pcp1 + " " + pcp2 + " " + pos);
if (pcp1.getNext() == pcp2 && pcp2.getPrevious() == pcp1) {
} else if (pcp1.getNext() == pcp2 && pcp1.isDualInline() && pcp2.getPrevious() == pcp1.getDualSub()) {
}
private static PipeControlPoint insertStraight(PipeControlPoint pcp1, PipeControlPoint pcp2, Vector3d pos, double length) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.insertStraight() " + pcp1 + " " + pcp2 + " " + pos);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.insertStraight() " + pcp1 + " " + pcp2 + " " + pos);
if (pcp1.getNext() == pcp2 && pcp2.getPrevious() == pcp1) {
} else if (pcp1.getNext() == pcp2 && pcp1.isDualInline() && pcp2.getPrevious() == pcp1.getDualSub()) {
}
private static PipeControlPoint insertStraight(PipeControlPoint pcp, Direction direction , Vector3d pos, double length) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.insertStraight() " + pcp + " " + direction + " " + pos);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.insertStraight() " + pcp + " " + direction + " " + pos);
InlineComponent component = ComponentUtils.createStraight((P3DRootNode)pcp.getRootNode());
PipeControlPoint scp = component.getControlPoint();
private static void updatePathLegNext(PipeControlPoint start, PipeControlPoint updated, PathLegUpdateType lengthChange) throws Exception {
UpdateStruct2 us = createUS(start, Direction.NEXT, 0, new ArrayList<ExpandIterInfo>(), updated);
if (us == null) {
- System.out.println("Null update struct " + start);
+ LOGGER.trace("Null update struct " + start);
return;
}
updatePathLeg(us, lengthChange);
private static void updatePathLegPrev(PipeControlPoint start, PipeControlPoint updated, PathLegUpdateType lengthChange) throws Exception {
UpdateStruct2 us = createUS(start, Direction.PREVIOUS, 0, new ArrayList<ExpandIterInfo>(), updated);
if (us == null) {
- System.out.println("Null update struct " + start);
+ LOGGER.trace("Null update struct " + start);
return;
}
updatePathLeg(us, lengthChange);
dir.scale(1.0/Math.sqrt(l));
}
- if (DEBUG)
- System.out.println("calcOffset s:"+ startPoint + " e:" + endPoint + " d:" + dir + " o:"+offset) ;
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("calcOffset s:"+ startPoint + " e:" + endPoint + " d:" + dir + " o:"+offset) ;
return true;
}
}
private static void updateFreePathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateFreePipeRun " + u + " " + lengthChange);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateFreePipeRun " + u + " " + lengthChange);
checkExpandPathLeg(u, lengthChange);
if (u.start.isInline() || u.end.isInline() || u.start.asFixedAngle()|| u.end.asFixedAngle())
processPathLeg(u, true, false);
}
private static void updateInlineControlPoints(UpdateStruct2 u, boolean checkSizes) throws Exception{
- if (DEBUG)
- System.out.println("PipingRules.updateInlineControlPoints() " + u);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateInlineControlPoints() " + u);
Vector3d start = new Vector3d(u.startPoint);
Vector3d end = new Vector3d(u.endPoint);
for (PipeControlPoint pcp : u.list)
setError(pcp, "Not enough available space");
}
-// System.out.println(u.start.getPipelineComponent().toString() + " " + pathLegLength + " " + availableLength + " " + u.end.getPipelineComponent().toString() + " " + u.start.getInlineLength() + " " + u.end.getInlineLength());
+// LOGGER.trace(u.start.getPipelineComponent().toString() + " " + pathLegLength + " " + availableLength + " " + u.end.getPipelineComponent().toString() + " " + u.start.getInlineLength() + " " + u.end.getInlineLength());
}
}
triedIR = true;
return false;
}
- if (DEBUG)
- System.out.println("PipingRules.updateVariableLength removing " + icp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateVariableLength removing " + icp);
icp._remove();
return true;
} else {
double l = beginPos.distance(endPos);
if (Double.isNaN(l))
- System.out.println("Length for " + icp + " is NaN");
+ LOGGER.debug("Length for " + icp + " is NaN");
dir.scale(l * 0.5);
beginPos.add(dir); // center position
- if (DEBUG)
- System.out.println("PipingRules.updateInlineControlPoints() setting variable length to " + l);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateInlineControlPoints() setting variable length to " + l);
icp.setLength(l);
icp.setWorldPosition(new Vector3d(beginPos));
* @throws Exception
*/
private static void ppNoOffset(UpdateStruct2 u, boolean updateEnds) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.ppNoOffset() " + u);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.ppNoOffset() " + u);
Vector3d offset = new Vector3d();
if (u.hasOffsets) {
for (PipeControlPoint icp : u.list) {
}
private static void ppNoDir(PipeControlPoint start, Vector3d startPoint, ArrayList<PipeControlPoint> list, PipeControlPoint end, Vector3d endPoint, boolean hasOffsets, int iter, boolean reversed, ArrayList<ExpandIterInfo> toRemove, PipeControlPoint updated) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.ppNoDir() " + start + " " + end + " " + iter + " " + toRemove.size());
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.ppNoDir() " + start + " " + end + " " + iter + " " + toRemove.size());
// FIXME : extra loop (dir should be calculated here)
Vector3d dir = new Vector3d();
Vector3d offset = new Vector3d();
}
private static void checkExpandPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange, boolean updateEnds) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.checkExpandPathLeg() " + u + " " + lengthChange);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.checkExpandPathLeg() " + u + " " + lengthChange);
if (lengthChange != PathLegUpdateType.NONE) {
// FIXME : turns cannot be checked before inline cps are updated,
// since their position affects calculation of turns
}
private static void updateDirectedPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateDirectedPipeRun() " + u + " " + lengthChange);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDirectedPipeRun() " + u + " " + lengthChange);
PipeControlPoint dcp;
PipeControlPoint other;
boolean canMoveOther = false;
}
if (canMoveOther) {
- if (DEBUG)
- System.out.println("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + closest);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + closest);
// Not aligned - we need to recalculate the offset to reflect new end points.
Vector3d offset;
throw new UnsupportedOperationException("not implemented");
}
if (canMoveOther) {
- if (DEBUG)
- System.out.println("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + bintersect);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + bintersect);
// is required branch position is in possible range
bcp.setWorldPosition(bintersect);
if (dcpStart) {
}
private static void updateDualDirectedPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateDualDirectedPipeRun() " + u + " " + lengthChange);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDualDirectedPipeRun() " + u + " " + lengthChange);
PipeControlPoint dcp1 = u.start;
PipeControlPoint dcp2 = u.end;
PipeControlPoint tcp1 = insertElbow(dcp, next, p1);
PipeControlPoint tcp2 = insertElbow(tcp1, next, p2);
- if (DEBUG)
- System.out.println("PipingRules.updateDualDirectedPipeRun() created two turns " + tcp1 + " " + tcp2);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDualDirectedPipeRun() created two turns " + tcp1 + " " + tcp2);
if (!u.reversed) {
Vector3d dd = new Vector3d(p2);
tcp.setPosition(p);
closest = p;
- if (DEBUG)
- System.out.println("PipingRules.updateDirectedPipeRun() inserted " + tcp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateDirectedPipeRun() inserted " + tcp);
if (dcpStart) {
// update pipe run from new turn to other end
* Checks if turns can be removed (turn angle near zero)
*/
private static int checkTurns(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.checkTurns() " + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.checkTurns() " + u.start + " " + u.end);
boolean startRemoved = false;
boolean endRemoved = false;
if (u.start.isVariableAngle()) {
}
}
}
- if (DEBUG)
- System.out.println("PipingRules.checkTurns() res " + startRemoved + " " + endRemoved);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.checkTurns() res " + startRemoved + " " + endRemoved);
if (!startRemoved && !endRemoved)
return REMOVE_NONE;
if (startRemoved && endRemoved)
*
*/
private static void expandPathLeg(UpdateStruct2 u, int type) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.expandPipeline " + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.expandPipeline " + u.start + " " + u.end);
ArrayList<PipeControlPoint> newList = new ArrayList<PipeControlPoint>();
switch (type) {
case REMOVE_NONE:
ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
}
}
- if (DEBUG)
- System.out.println("PipingRules.expandPipeline expanded " + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.expandPipeline expanded " + u.start + " " + u.end);
u.iter++;
updatePathLeg(u, PathLegUpdateType.NONE);
}
*/
private static void backIter(UpdateStruct2 u) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.backIter" + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.backIter" + u.start + " " + u.end);
if (u.iter == 0)
throw new RuntimeException("Error in piping rules");
ExpandIterInfo info = u.toRemove.get(u.toRemove.size() - 1);
// toRemove) throws TransactionException {
private static void processPathLeg(UpdateStruct2 u) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.processPathLeg " + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.processPathLeg " + u.start + " " + u.end);
processPathLeg(u, true, true);
}
private static void processPathLeg(UpdateStruct2 u, boolean updateEnds, boolean updateInline) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.processPathLeg " + (updateEnds ? "ends " : "") + (updateInline ? "inline " : "") + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.processPathLeg " + (updateEnds ? "ends " : "") + (updateInline ? "inline " : "") + u.start + " " + u.end);
if (u.toRemove.size() > 0) {
for (ExpandIterInfo info : u.toRemove) {
if (info.getStart() != null) {
- if (DEBUG)
- System.out.println("PipingRules.processPathLeg removing start " + info.getStart());
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.processPathLeg removing start " + info.getStart());
info.getStart()._remove();
}
if (info.getEnd() != null) {
- if (DEBUG)
- System.out.println("PipingRules.processPathLeg removing end " + info.getEnd());
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.processPathLeg removing end " + info.getEnd());
info.getEnd()._remove();
}
}
// {
@SuppressWarnings("unused")
private static void processPathLegNoOffset(UpdateStruct2 u) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.processPathLeg " + u.start + " " + u.end);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.processPathLeg " + u.start + " " + u.end);
Vector3d offset = new Vector3d();
if (u.hasOffsets) {
u.dir.normalize();
* @param prevPoint
*/
private static void updateInlineControlPoint(PipeControlPoint icp, Vector3d prev, Vector3d next, Vector3d dir) {
- if (DEBUG)
- System.out.println("PipingRules.updateInlineControlPoint() " + icp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateInlineControlPoint() " + icp);
Vector3d inlinePoint = icp.getWorldPosition();
Vector3d prevPoint = new Vector3d(prev);
}
}
boolean canCalc = MathTools.distance(prevPoint, nextPoint) > ALLOWED_OFFSET;
- if (DEBUG)
+ if (LOGGER.isTraceEnabled())
System.out.print("InlineControlPoint update " + icp + " " + inlinePoint + " " + prevPoint + " " + nextPoint);
Vector3d newInlinePoint = null;
if (canCalc) {
newInlinePoint = new Vector3d();
double mu[] = new double[2];
MathTools.intersectStraightStraight(new Vector3d(prevPoint), dir1, new Vector3d(branchLegEnd), dir2, newInlinePoint, new Vector3d(), mu);
- if (DEBUG)
- System.out.println(mu[0]);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace(Double.toString(mu[0]));
// FIXME : reserve space
if (mu[0] < 0.0) {
newInlinePoint = new Vector3d(prevPoint);
// prevPoint == nextPoint
newInlinePoint = new Vector3d(prevPoint);
}
- if (DEBUG)
- System.out.println(" " + newInlinePoint);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace(" " + newInlinePoint);
icp.setWorldPosition(newInlinePoint);
icp.orientToDirection(dir);
* @param prevPoint
*/
private static void updateEndComponentControlPoint(PipeControlPoint ecp, Vector3d dir) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateEndComponentControlPoint() " + ecp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateEndComponentControlPoint() " + ecp);
if (!ecp.isFixed()) // prevent overriding nozzle orientations..
ecp.orientToDirection(dir);
* @param bcp
*/
private static void updateBranchControlPointBranches(PipeControlPoint bcp) throws Exception {
- if (DEBUG)
- System.out.println("PipingRules.updateBranchControlPointBranches() " + bcp);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingRules.updateBranchControlPointBranches() " + bcp);
if (bcp.isDualInline())
return;
Collection<PipeControlPoint> branches = bcp.getChildPoints();
if (branches.size() == 0) {
- if (DEBUG)
- System.out.println("No Branches found");
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("No Branches found");
return;
}
tcp.orientToDirection(prev);
- if (DEBUG)
- System.out.println("PipingTools.updateTurnControlPointTurn " + prev + " " + next + " " + turnAngle + " " + turnAxis);
+ if (LOGGER.isTraceEnabled())
+ LOGGER.trace("PipingTools.updateTurnControlPointTurn " + prev + " " + next + " " + turnAngle + " " + turnAxis);
return turnAngle;
} else {
synchronized (ruleMutex) {
Collection<PipeControlPoint> pcps = pipeRun.getControlPoints();
int count = 0;
- //System.out.println("Validate " + pipeRun.getName());
+ //LOGGER.trace("Validate " + pipeRun.getName());
for (PipeControlPoint pcp : pcps) {
if (pcp.getParentPoint() == null || pcp.getParentPoint().getPipeRun() != pipeRun)
count++;
}
List<PipeControlPoint> runPcps = getControlPoints(pipeRun);
if (runPcps.size() != count) {
- System.out.println("Run " + pipeRun.getName() + " contains unconnected control points, found " + runPcps.size() + " connected, " + pcps.size() + " total.");
+ LOGGER.debug("Run " + pipeRun.getName() + " contains unconnected control points, found " + runPcps.size() + " connected, " + pcps.size() + " total.");
for (PipeControlPoint pcp : pcps) {
if (!runPcps.contains(pcp)) {
- System.out.println("Unconnected " + pcp + " " + pcp.getPipelineComponent());
+ LOGGER.debug("Unconnected " + pcp + " " + pcp.getPipelineComponent());
}
}
}
for (PipeControlPoint pcp : pcps) {
if (pcp.getPipeRun() == null) {
- System.out.println("PipeRun ref missing " + pcp + " " + pcp.getPipelineComponent());
+ LOGGER.debug("PipeRun ref missing " + pcp + " " + pcp.getPipelineComponent());
}
if (!pcp.isDirected() && pcp.getNext() == null && pcp.getPrevious() == null)
- System.out.println("Orphan undirected " + pcp + " " + pcp.getPipelineComponent());
+ LOGGER.debug("Orphan undirected " + pcp + " " + pcp.getPipelineComponent());
}
for (PipeControlPoint pcp : pcps) {
if (pcp.getParentPoint() == null) {
PipeControlPoint prev = pcp.getPrevious();
if (next != null) {
if (!(next.getPrevious() == pcp || next.getPrevious() == sub)) {
- System.out.println("Inconsistency between " + pcp + " -> " +next );
+ LOGGER.debug("Inconsistency between " + pcp + " -> " +next );
}
}
if (prev != null) {
if (prev.isDualSub()) {
prevParent = prev.getParentPoint();
} else if (prev.isDualInline()) {
- System.out.println("Inconsistency between " + pcp + " <-- " +prev );
+ LOGGER.debug("Inconsistency between " + pcp + " <-- " +prev );
}
if (!(prev.getNext() == pcp && (prevParent == null || prevParent.getNext() == pcp))) {
- System.out.println("Inconsistency between " + pcp + " <-- " +prev );
+ LOGGER.debug("Inconsistency between " + pcp + " <-- " +prev );
}
}
}