Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/stats_consolidation/consolidation.py
blob: 282996df91970c812840fe8a0794d0fa10da1b9c (plain)
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
import os
import argparse
import logging

from stats_consolidation.db import *
from stats_consolidation.rrd_files import *


log = logging.getLogger("stats-consolidation")

class Consolidation:
	
	def __init__(self, path, db):
		self.base_path = path
		try:
			self.date_start = db.get_date_last_record()
			if self.date_start == 0:
				self.date_start = None
			self.db = db	
		except Exception as e:
			log.error('Exception: %s ', e)
	
	def process_rrds (self):
		id_hash_list = os.listdir(unicode(self.base_path))
		try:
			if id_hash_list:
				for id_hash in id_hash_list:
					user_hash_list = os.listdir( unicode( os.path.join(self.base_path, id_hash) ) )
					if user_hash_list:
						for user_hash in user_hash_list:
							rrd_list = os.listdir( unicode(os.path.join(self.base_path, id_hash, user_hash)) )
							if rrd_list:
								for rrd in rrd_list: 
									rrd_path = unicode (os.path.join(self.base_path, id_hash, user_hash) )
									try:
										rrd_obj = RRD (path=rrd_path, name=rrd, date_start=self.date_start, date_end=None)
										self.db.store_activity_uptime(rrd_obj)
										self.db.store_activity_focus_time(rrd_obj)
									except Exception as e:
										log.warning('Exception on RRD object instance: \'%s\'', e)
							else:
								log.warning('RRD file not found: %s', os.path.join(self.base_path, id_hash, user_hash))
					else:
						log.warning('Hash user direcotory not found: %s', os.path.join(self.base_path, id_hash))
				self.db.update_last_record();
				log.info("End RRDs processing")	
			else:
				log.error('Hash ids  not found on: %s', self.base_path)
		except Exception as e:
			log.error('Excpetion processing rrds: \'%s\'', e)