diff -r 7685cec9fd3c -r f2ddfa555b0f doc/api/python/build.io.RombuildLogBinarySizeReader-class.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/api/python/build.io.RombuildLogBinarySizeReader-class.html Fri Sep 11 11:54:49 2009 +0100
@@ -0,0 +1,327 @@
+
+
+
+
+ build.io.RombuildLogBinarySizeReader
+
+
+
+
+
+
+
+
+
+Class RombuildLogBinarySizeReader
source code
+
+object --+
+ |
+ RombuildLogBinarySizeReader
+
+
+
+Reader that parses a Symbian ROM build log and extracts binary sizes.
+This reader will return, using the iterator protocol, tuples containing:
+* Binary name.
+* Size of binary. (d+)
+
+
+
+
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+ |
+
+
+ __iter__(self)
+ Implement the iterator protocol. |
+
+ source code
+
+ |
+
+
+
+ |
+
+
+
+ Inherited from object :
+ __delattr__ ,
+ __getattribute__ ,
+ __hash__ ,
+ __new__ ,
+ __reduce__ ,
+ __reduce_ex__ ,
+ __repr__ ,
+ __setattr__ ,
+ __str__
+
+ |
+
+
+
+
+
+
+
+
+
+ |
+ rom_binary_size_regex = re.compile(r'(\\epoc32[\w\\\.]+)\t(\d+)')
+ |
+
+
+
+
+ |
+ rofs_binary_size_regex = re.compile(r"ile '([\w\\\.]+)' size: ...
+ |
+
+
+
+
+ |
+ image_type_regex = re.compile(r'[._]([^._]+)\.log')
+ |
+
+
+
+
+
+
+
+
+ Inherited from object :
+ __class__
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+ __init__(self,
+ logpath)
+ (Constructor)
+
+ | source code
+ |
+
+
+ Initialisation.
+
+ - Parameters:
+
+ logpath - The path to the Symbian log file.
+
+ - Overrides:
+ object.__init__
+
+
+ |
+
+
+
+
+
+
+
+
+
+ rofs_binary_size_regex
+
+
+
+
+ - Value:
+
+re.compile(r"ile '([\w\\\.]+)' size: (\w+)")
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+