aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
Diffstat (limited to 'libbe')
-rw-r--r--libbe/bugdir.py16
-rw-r--r--libbe/utility.py28
2 files changed, 44 insertions, 0 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py
index e2f40d6..d318690 100644
--- a/libbe/bugdir.py
+++ b/libbe/bugdir.py
@@ -4,6 +4,8 @@ import cmdutil
import errno
import names
import mapfile
+import time
+import utility
from rcs import rcs_by_name
class NoBugDir(Exception):
@@ -162,6 +164,9 @@ class Bug(object):
self.status = dict.get("status")
self.severity = dict.get("severity")
self.assigned = dict.get("assigned")
+ self.time = dict.get("time")
+ if self.time is not None:
+ self.time = utility.str_to_time(self.time)
def get_path(self, file):
return os.path.join(self.path, self.uuid, file)
@@ -184,10 +189,21 @@ class Bug(object):
self.add_attr(map, "target")
self.add_attr(map, "status")
self.add_attr(map, "severity")
+ if self.time is not None:
+ map["time"] = utility.time_to_str(self.time)
path = self.get_path("values")
map_save(rcs_by_name(self.rcs_name), path, map)
+def new_bug(dir):
+ bug = dir.new_bug()
+ bug.creator = names.creator()
+ bug.severity = "minor"
+ bug.status = "open"
+ bug.time = time.time()
+ return bug
+
+
def map_save(rcs, path, map):
"""Save the map as a mapfile to the specified path"""
if not os.path.exists(path):
diff --git a/libbe/utility.py b/libbe/utility.py
index a67037d..a2774d3 100644
--- a/libbe/utility.py
+++ b/libbe/utility.py
@@ -1,3 +1,6 @@
+import calendar
+import time
+
class FileString(object):
"""Bare-bones pseudo-file class
@@ -49,3 +52,28 @@ def get_file(f):
return f
+RFC_2822_TIME_FMT = "%a, %d %b %Y %H:%M:%S +0000"
+
+
+def time_to_str(time_val):
+ """Convert a time value into an RFC 2822-formatted string. This format
+ lacks sub-second data.
+ >>> time_to_str(0)
+ 'Thu, 01 Jan 1970 00:00:00 +0000'
+ """
+ return time.strftime(RFC_2822_TIME_FMT, time.gmtime(time_val))
+
+def str_to_time(str_time):
+ """Convert an RFC 2822-fomatted string into a time falue.
+ >>> str_to_time("Thu, 01 Jan 1970 00:00:00 +0000")
+ 0
+ >>> q = time.time()
+ # int(q) because the round-trip loses sub-second data
+ >>> str_to_time(time_to_str(q)) == int(q)
+ True
+ """
+ return calendar.timegm(time.strptime(str_time, RFC_2822_TIME_FMT))
+
+def handy_time(time_val):
+ return time.strftime("%a, %d %b %Y %H:%M", time.localtime(time_val))
+