X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2FProgress.java;h=dea6be3fa011c351e4990b39e396368a50174e9d;hb=8c227da67c11370980154c61861bcfb9c73881c5;hp=6f05110e8715305b438258b45cf1674b992a4451;hpb=f4053377fa15da2f11e82955bfab86e673fa371c;p=fanfix.git diff --git a/src/be/nikiroo/utils/Progress.java b/src/be/nikiroo/utils/Progress.java index 6f05110..dea6be3 100644 --- a/src/be/nikiroo/utils/Progress.java +++ b/src/be/nikiroo/utils/Progress.java @@ -138,7 +138,7 @@ public class Progress { throw new RuntimeException("negative values not supported"); } - synchronized (getLock()) { + synchronized (lock) { if (min > max) { throw new RuntimeException( "The minimum progress value must be <= the maximum progress value"); @@ -168,7 +168,7 @@ public class Progress { * if max < min */ public void setMax(int max) { - synchronized (getLock()) { + synchronized (lock) { if (max < min) { throw new Error( "The maximum progress value must be >= the minimum progress value"); @@ -199,7 +199,7 @@ public class Progress { "The minimum progress value must be <= the maximum progress value"); } - synchronized (getLock()) { + synchronized (lock) { this.min = min; this.max = max; } @@ -225,7 +225,7 @@ public class Progress { * the progress to set */ public void setProgress(int progress) { - synchronized (getLock()) { + synchronized (lock) { double childrenProgress = relativeProgress - relativeLocalProgress; relativeLocalProgress = ((double) progress) / (max - min); @@ -260,7 +260,7 @@ public class Progress { */ private void setRelativeProgress(Progress pg, String name, double relativeProgress) { - synchronized (getLock()) { + synchronized (lock) { relativeProgress = Math.max(0, relativeProgress); relativeProgress = Math.min(1, relativeProgress); this.relativeProgress = relativeProgress; @@ -286,7 +286,7 @@ public class Progress { * the amount to add */ public void add(int step) { - synchronized (getLock()) { + synchronized (lock) { setProgress(getLocalProgress() + step); } } @@ -305,7 +305,7 @@ public class Progress { * Mark the {@link Progress} as done by setting its value to max. */ public void done() { - synchronized (getLock()) { + synchronized (lock) { double childrenProgress = relativeProgress - relativeLocalProgress; relativeLocalProgress = 1 - childrenProgress; setRelativeProgress(this, name, 1d); @@ -318,7 +318,7 @@ public class Progress { * @return the children (Who will think of the children??) */ public List getChildren() { - synchronized (getLock()) { + synchronized (lock) { return new ArrayList(children.keySet()); } } @@ -327,7 +327,8 @@ public class Progress { * Notify the listeners that this {@link Progress} changed value. * * @param pg - * the emmiter + * the emmiter, that is, the (sub-){link Progress} that just + * reported some change, not always the same as this * @param name * the current name (if it is NULL, the first non-null name in * the hierarchy will overwrite it) of the {@link Progress} who @@ -342,7 +343,7 @@ public class Progress { name = this.name; } - synchronized (getLock()) { + synchronized (lock) { for (ProgressListener l : listeners) { l.progress(pg, name); } @@ -360,7 +361,7 @@ public class Progress { * the listener */ public void addProgressListener(ProgressListener l) { - synchronized (getLock()) { + synchronized (lock) { this.listeners.add(l); } } @@ -374,7 +375,7 @@ public class Progress { * @return TRUE if it was found (and removed) */ public boolean removeProgressListener(ProgressListener l) { - synchronized (getLock()) { + synchronized (lock) { return this.listeners.remove(l); } } @@ -397,7 +398,7 @@ public class Progress { if (weight < min || weight > max) { throw new RuntimeException(String.format( "Progress object %s cannot have a weight of %f, " - + "it is outside of its parent (%s) range (%f)", + + "it is outside of its parent (%s) range (%d)", progress.name, weight, name, max)); } @@ -408,41 +409,25 @@ public class Progress { name, progress.parent.name)); } - progress.addProgressListener(new ProgressListener() { + ProgressListener progressListener = new ProgressListener() { @Override public void progress(Progress pg, String name) { - synchronized (getLock()) { + synchronized (lock) { double total = relativeLocalProgress; - synchronized (getLock()) { - for (Entry entry : children - .entrySet()) { - total += (entry.getValue() / (max - min)) - * entry.getKey().getRelativeProgress(); - } + for (Entry entry : children.entrySet()) { + total += (entry.getValue() / (max - min)) + * entry.getKey().getRelativeProgress(); } setRelativeProgress(pg, name, total); } } - }); + }; - synchronized (getLock()) { - this.children.put(progress, weight); - } - } - - /** - * The lock object to use (this one or the recursively-parent one). - * - * @return the lock object to use - */ - private Object getLock() { synchronized (lock) { - if (parent != null) { - return parent.getLock(); - } - - return lock; + progress.parent = this; + this.children.put(progress, weight); + progress.addProgressListener(progressListener); } } }