Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2009-04-01 14:37:09 +0000
committerDJ Houghton2009-04-01 14:37:09 +0000
commit2a014d7ab22803a621caa89e0434d4a05028093d (patch)
treed21259cc483b1670e7330fb0d65f521321636e08 /bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java
parent5bcdc270280b094eced03fd6ccd40f9886aad96b (diff)
downloadrt.equinox.p2-2a014d7ab22803a621caa89e0434d4a05028093d.tar.gz
rt.equinox.p2-2a014d7ab22803a621caa89e0434d4a05028093d.tar.xz
rt.equinox.p2-2a014d7ab22803a621caa89e0434d4a05028093d.zip
Bug 270535 - New p2.repository bundle uses 1.5 methodsv20090401-1036
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java18
1 files changed, 11 insertions, 7 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java
index 839dbb1bd..f34a6c17f 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/ProgressStatistics.java
@@ -7,6 +7,7 @@
******************************************************************************/
package org.eclipse.equinox.internal.p2.repository;
+import java.text.NumberFormat;
import java.util.*;
import java.util.Map.Entry;
import org.eclipse.osgi.util.NLS;
@@ -17,6 +18,7 @@ import org.eclipse.osgi.util.NLS;
* in progress monitoring is provided.
*
* @author thomas.hallgren@cloudsmith.com
+ * @author henrik.lindberg@cloudsmith.com (adaption to java 1.4)
*/
public class ProgressStatistics {
private static final int DEFAULT_REPORT_INTERVAL = 1000;
@@ -26,13 +28,15 @@ public class ProgressStatistics {
private static final int SPEED_RESOLUTION = 1000;
private static String convert(long amount) {
+ NumberFormat fmt = NumberFormat.getInstance();
if (amount < 1024)
- return String.format(Locale.US, "%dB", new Object[] {Long.valueOf(amount)}); //$NON-NLS-1$
+ return fmt.format(amount) + "B"; //$NON-NLS-1$
+ fmt.setMaximumFractionDigits(2);
if (amount < 1024 * 1024)
- return String.format(Locale.US, "%.2fkB", new Object[] {Double.valueOf(((double) amount) / 1024)}); //$NON-NLS-1$
+ return fmt.format(((double) amount) / 1024) + "kB"; //$NON-NLS-1$
- return String.format(Locale.US, "%.2fMB", new Object[] {Double.valueOf(((double) amount) / (1024 * 1024))}); //$NON-NLS-1$
+ return fmt.format(((double) amount) / (1024 * 1024)) + "MB"; //$NON-NLS-1$
}
private final String m_fileName;
@@ -88,7 +92,7 @@ public class ProgressStatistics {
removeObsoleteRecentSpeedData(getDuration() / SPEED_RESOLUTION);
long dur = 0L;
long amount = 0L;
- SortedMap relevantData = m_recentSpeedMap.headMap(Long.valueOf(m_recentSpeedMapKey));
+ SortedMap relevantData = m_recentSpeedMap.headMap(new Long(m_recentSpeedMapKey));
Iterator itor = relevantData.entrySet().iterator();
while (itor.hasNext()) {
@@ -138,13 +142,13 @@ public class ProgressStatistics {
}
synchronized private void registerRecentSpeed(long key, long inc) {
- Long keyL = Long.valueOf(key);
+ Long keyL = new Long(key);
Long currentValueL = (Long) m_recentSpeedMap.get(keyL);
long currentValue = 0L;
if (currentValueL != null)
currentValue = currentValueL.longValue();
- m_recentSpeedMap.put(keyL, Long.valueOf(inc + currentValue));
+ m_recentSpeedMap.put(keyL, new Long(inc + currentValue));
if (m_recentSpeedMapKey != key) {
m_recentSpeedMapKey = key;
@@ -154,6 +158,6 @@ public class ProgressStatistics {
synchronized private void removeObsoleteRecentSpeedData(long lastKey) {
long threshold = lastKey - SPEED_INTERVAL / SPEED_RESOLUTION;
- m_recentSpeedMap.headMap(Long.valueOf(threshold)).clear();
+ m_recentSpeedMap.headMap(new Long(threshold)).clear();
}
}

Back to the top