-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity.py
164 lines (144 loc) · 5.09 KB
/
activity.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2010, 2011 CNRS
# Author: Florent Lamiraux
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import datetime as dt
class TagError (BaseException) :
pass
class Activity (object):
"""
Atomic activity with a time and a list of tags that will enable users to
sum up the time spent for given tags.
An activity is included in a unique day
"""
tags = set([])
"""
The list of tags this activity is related to
"""
partition = set ([])
"""
A set of tags that realizes a partitions of all activities
"""
startTime = None
"""
Starting time of the activity: a datetime.datetime object
"""
endTime = None
"""
Ending time of the activity
"""
description = ""
nbMembers = 4
"""
Number of members written in file for each activity
"""
@staticmethod
def readPartition (filename):
with open (filename, 'r') as f:
for line in f:
Activity.partition.add (line.strip('\n'))
@staticmethod
def listToDatetime (strDateAndTime) :
if strDateAndTime == 'None':
return None
# parse starting time
dateAndTime = strDateAndTime.split(' ')
if len(dateAndTime) != 2 :
raise (IOError("wrong starting date or time."))
# parse date
initList = map(int, dateAndTime[0].split('-'))
if len(initList) != 3 :
raise (IOError("wrong starting date."))
#parse time
listTime = map(int, dateAndTime[1].split(":")[:2])
initList.extend(listTime)
return dt.datetime(*initList)
@staticmethod
def fromList (l) :
"""
Create an instance from a list of string
"""
if len (l) != Activity.nbMembers :
raise (IOError ("expect %d element, got %d."%
(Activity.nbMembers, len(l))))
startTime = Activity.listToDatetime (l[0])
endTime = Activity.listToDatetime (l[1])
description = l[2]
instanceTags = l[3].split('" "')
instanceTags = map(lambda s : s.strip('"'), instanceTags)
a = Activity()
a.startTime = startTime
a.endTime = endTime
a.description = description
for t in instanceTags:
a.addNewTag(t)
return a
def __init__(self) :
"""
Initialize starting time with current time
"""
self.startTime = dt.datetime.now()
self.instanceTags = set()
def addTag(self, tag) :
"""
Add a tag for this activity
Tag must already be referenced in class set.
"""
if tag not in Activity.tags :
raise TagError\
("tag %s is unknown. Use addNewTag method for new tags"%tag)
self.instanceTags.add (tag)
def addNewTag(self, tag) :
self.instanceTags.add (tag)
Activity.tags.add(tag)
def __str__(self) :
string = "%s;%s;%s;"% (str(self.startTime), str(self.endTime),
self.description)
for t in self.instanceTags :
string += '"%s" '%t
string = string[:-1:]
return string
def __le__(self, other) :
return self.startTime <= other.startTime
def __ge__(self, other) :
return self.startTime >= other.startTime
def __lt__(self, other) :
return self.startTime < other.startTime
def __gt__(self, other) :
return self.startTime > other.startTime
def write(self, f) :
"""
Write in a file
"""
f.write (str(self))
@property
def duration(self) :
"""
Compute and return the duration of the activity
"""
if self.endTime:
result = self.endTime - self.startTime
else:
result = dt.timedelta(0)
return result