servicemp3.cpp: more simple/flexible streaming detection
[enigma2.git] / lib / python / Tools / Profile.py
index 1c44bc84578e611999db4ab5e88fd019e5bf51eb..4d8dd9012841311f2ef3e64a8137e6fcbe69af77 100644 (file)
@@ -1,5 +1,6 @@
+# the implementation here is a bit crappy.
 import time
 import time
-from Directories import resolveFilename, SCOPE_SYSETC
+from Directories import resolveFilename, SCOPE_CONFIG
 
 PERCENTAGE_START = 50
 PERCENTAGE_END = 100
 
 PERCENTAGE_START = 50
 PERCENTAGE_END = 100
@@ -8,9 +9,10 @@ profile_start = time.time()
 
 profile_data = {}
 total_time = 1
 
 profile_data = {}
 total_time = 1
+profile_file = None
 
 try:
 
 try:
-       profile_old = open(resolveFilename(SCOPE_SYSETC, "profile"), "r").readlines()
+       profile_old = open(resolveFilename(SCOPE_CONFIG, "profile"), "r").readlines()
 
        t = None
        for line in profile_old:
 
        t = None
        for line in profile_old:
@@ -21,19 +23,23 @@ try:
 except:
        print "no profile data available"
 
 except:
        print "no profile data available"
 
-profile_file = open(resolveFilename(SCOPE_SYSETC, "profile"), "w")
+try:
+       profile_file = open(resolveFilename(SCOPE_CONFIG, "profile"), "w")
+except IOError:
+       print "WARNING: couldn't open profile file!"
 
 def profile(id):
        now = time.time() - profile_start
        if profile_file:
                profile_file.write("%.2f\t%s\n" % (now, id))
 
 def profile(id):
        now = time.time() - profile_start
        if profile_file:
                profile_file.write("%.2f\t%s\n" % (now, id))
-       if id in profile_data:
-               t = profile_data[id]
-               perc = t * (PERCENTAGE_END - PERCENTAGE_START) / total_time + PERCENTAGE_START
-               try:
-                       open("/proc/progress", "w").write("%d \n" % perc)
-               except IOError:
-                       pass
+
+               if id in profile_data:
+                       t = profile_data[id]
+                       perc = t * (PERCENTAGE_END - PERCENTAGE_START) / total_time + PERCENTAGE_START
+                       try:
+                               open("/proc/progress", "w").write("%d \n" % perc)
+                       except IOError:
+                               pass
 
 def profile_final():
        global profile_file
 
 def profile_final():
        global profile_file