diff --git a/src/allmydata/download.py b/src/allmydata/download.py
index 53b268e71..66c399c5e 100644
--- a/src/allmydata/download.py
+++ b/src/allmydata/download.py
@@ -364,7 +364,10 @@ class DownloadStatus:
self.active = True
self.results = None
self.counter = self.statusid_counter.next()
+ self.started = time.time()
+ def get_started(self):
+ return self.started
def get_storage_index(self):
return self.storage_index
def get_size(self):
diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py
index b9ff96f4d..91757856f 100644
--- a/src/allmydata/interfaces.py
+++ b/src/allmydata/interfaces.py
@@ -1453,6 +1453,9 @@ class IClientStatus(Interface):
started downloads."""
class IUploadStatus(Interface):
+ def get_started():
+ """Return a timestamp (float with seconds since epoch) indicating
+ when the operation was started."""
def get_storage_index():
"""Return a string with the (binary) storage index in use on this
upload. Returns None if the storage index has not yet been
@@ -1489,6 +1492,9 @@ class IUploadStatus(Interface):
page can generate a suitable hyperlink."""
class IDownloadStatus(Interface):
+ def get_started():
+ """Return a timestamp (float with seconds since epoch) indicating
+ when the operation was started."""
def get_storage_index():
"""Return a string with the (binary) storage index in use on this
download. This may be None if there is no storage index (i.e. LIT
diff --git a/src/allmydata/mutable.py b/src/allmydata/mutable.py
index 925a286a6..f983d3b7a 100644
--- a/src/allmydata/mutable.py
+++ b/src/allmydata/mutable.py
@@ -211,7 +211,10 @@ class RetrieveStatus:
self.status = "Not started"
self.progress = 0.0
self.counter = self.statusid_counter.next()
+ self.started = time.time()
+ def get_started(self):
+ return self.started
def get_storage_index(self):
return self.storage_index
def using_helper(self):
@@ -783,7 +786,10 @@ class PublishStatus:
self.status = "Not started"
self.progress = 0.0
self.counter = self.statusid_counter.next()
+ self.started = time.time()
+ def get_started(self):
+ return self.started
def get_storage_index(self):
return self.storage_index
def using_helper(self):
diff --git a/src/allmydata/upload.py b/src/allmydata/upload.py
index c3dd29dfa..015a74a5f 100644
--- a/src/allmydata/upload.py
+++ b/src/allmydata/upload.py
@@ -575,7 +575,10 @@ class UploadStatus:
self.active = True
self.results = None
self.counter = self.statusid_counter.next()
+ self.started = time.time()
+ def get_started(self):
+ return self.started
def get_storage_index(self):
return self.storage_index
def get_size(self):
diff --git a/src/allmydata/web/download-status.xhtml b/src/allmydata/web/download-status.xhtml
index 5e563acfd..5a3d47e2a 100644
--- a/src/allmydata/web/download-status.xhtml
+++ b/src/allmydata/web/download-status.xhtml
@@ -11,6 +11,7 @@
File Download Status
+ - Started:
- Storage Index:
- Helper?:
- Total Size:
diff --git a/src/allmydata/web/publish-status.xhtml b/src/allmydata/web/publish-status.xhtml
index 657bde3c5..f6b862c33 100644
--- a/src/allmydata/web/publish-status.xhtml
+++ b/src/allmydata/web/publish-status.xhtml
@@ -11,6 +11,7 @@
Mutable File Publish Status
+ - Started:
- Storage Index:
- Helper?:
- Current Size:
diff --git a/src/allmydata/web/retrieve-status.xhtml b/src/allmydata/web/retrieve-status.xhtml
index 1d2bb554c..422cdcd87 100644
--- a/src/allmydata/web/retrieve-status.xhtml
+++ b/src/allmydata/web/retrieve-status.xhtml
@@ -11,6 +11,7 @@
Mutable File Retrieve Status
+ - Started:
- Storage Index:
- Helper?:
- Current Size:
diff --git a/src/allmydata/web/status.xhtml b/src/allmydata/web/status.xhtml
index f0a24247a..4c478b97d 100644
--- a/src/allmydata/web/status.xhtml
+++ b/src/allmydata/web/status.xhtml
@@ -36,6 +36,7 @@
Recent Operations:
+ Started |
Type |
Storage Index |
Helper? |
@@ -44,6 +45,7 @@
Status |
+ |
|
|
|
diff --git a/src/allmydata/web/upload-status.xhtml b/src/allmydata/web/upload-status.xhtml
index 1d8c7e0fd..90e676ff1 100644
--- a/src/allmydata/web/upload-status.xhtml
+++ b/src/allmydata/web/upload-status.xhtml
@@ -11,6 +11,7 @@
File Upload Status
+ - Started:
- Storage Index:
- Helper?:
- Total Size:
diff --git a/src/allmydata/webish.py b/src/allmydata/webish.py
index bdbce4438..bae3d7d13 100644
--- a/src/allmydata/webish.py
+++ b/src/allmydata/webish.py
@@ -1638,6 +1638,12 @@ class UploadStatusPage(UploadResultsRendererMixin, rend.Page):
d.addCallback(_got_results)
return d
+ def render_started(self, ctx, data):
+ TIME_FORMAT = "%H:%M:%S %d-%b-%Y"
+ started_s = time.strftime(TIME_FORMAT,
+ time.localtime(data.get_started()))
+ return started_s
+
def render_si(self, ctx, data):
si_s = base32.b2a_or_none(data.get_storage_index())
if si_s is None:
@@ -1841,6 +1847,12 @@ class DownloadStatusPage(DownloadResultsRendererMixin, rend.Page):
d.addCallback(_got_results)
return d
+ def render_started(self, ctx, data):
+ TIME_FORMAT = "%H:%M:%S %d-%b-%Y"
+ started_s = time.strftime(TIME_FORMAT,
+ time.localtime(data.get_started()))
+ return started_s
+
def render_si(self, ctx, data):
si_s = base32.b2a_or_none(data.get_storage_index())
if si_s is None:
@@ -1868,6 +1880,12 @@ class DownloadStatusPage(DownloadResultsRendererMixin, rend.Page):
class RetrieveStatusPage(rend.Page):
docFactory = getxmlfile("retrieve-status.xhtml")
+ def render_started(self, ctx, data):
+ TIME_FORMAT = "%H:%M:%S %d-%b-%Y"
+ started_s = time.strftime(TIME_FORMAT,
+ time.localtime(data.get_started()))
+ return started_s
+
def render_si(self, ctx, data):
si_s = base32.b2a_or_none(data.get_storage_index())
if si_s is None:
@@ -1895,6 +1913,12 @@ class RetrieveStatusPage(rend.Page):
class PublishStatusPage(rend.Page):
docFactory = getxmlfile("publish-status.xhtml")
+ def render_started(self, ctx, data):
+ TIME_FORMAT = "%H:%M:%S %d-%b-%Y"
+ started_s = time.strftime(TIME_FORMAT,
+ time.localtime(data.get_started()))
+ return started_s
+
def render_si(self, ctx, data):
si_s = base32.b2a_or_none(data.get_storage_index())
if si_s is None:
@@ -1936,10 +1960,18 @@ class Status(rend.Page):
IClient(ctx).list_recent_publish() +
IClient(ctx).list_recent_retrieve())
if not o.get_active()]
+ recent.sort(lambda a,b: cmp(a.get_started(), b.get_started()))
+ recent.reverse()
return recent
def render_row(self, ctx, data):
s = data
+
+ TIME_FORMAT = "%H:%M:%S %d-%b-%Y"
+ started_s = time.strftime(TIME_FORMAT,
+ time.localtime(s.get_started()))
+ ctx.fillSlots("started", started_s)
+
si_s = base32.b2a_or_none(s.get_storage_index())
if si_s is None:
si_s = "(None)"