FixYa.com
Technical Support, Instructions & Repair Service


Tags:

Programming Tools
Generic problem for all Programming Tools

Pyton Programming

posted by Mirandza on May 12, 2008


Please help me describe the following code:
a) The structure
b) The overall feature it might provide
c) The mechanisms used to provide the feature.
class Config(object):
validKeys = [
'CompanyName', 'ExternalName',
'Hostname', 'Domain', 'SambaDomain'
]
def __init__(self):
profileLocator = open(os.path.join(Settings.BaseDir, 'currentProfile'))
profileName = profileLocator.read().replace(' ', '').strip()
self.configFile = os.path.join(Settings.BaseDir, 'profiles',
profileName)
self.cache = {}
self.cacheAge = 0
self.maxAge = 300
def __getattr__(self, name):
if name in self.validKeys:
configAge = os.stat(self.configFile).st_mtime
now = time.time()
#Setup conditions
stillValid = self.cacheAge == configAge
tooOld = (now self.
cacheAge) > self.maxAge
if self.cache and stillValid and not tooOld:
return self.cache[name]
# Read the file (full unbuffered)
cfo = open(self.configFile, 'rt')
self.cacheAge = os.stat(self.configFile).st_mtime
data = cfo.read()
cfo.close()
d = {}
exec data in d
self.cache = d
return self.cache[name]
else:
object.__getattr__(self, name, value)

This Problem has been added to the Share Your Expertise Page under "My Work Queue".
This Problem Also Relates To: Compaq Visual Fortran Professional Edition 6.6 (QB-5UDAB-PA) for PC Intel Math Kernel Library 7.0 for Linux (MKL070LSGB001) for PC IBM Object REXX (E1A7VLL-H) for Unix Intel C++ Compiler 8.0 (cpc080lsgs001) for Linux Intel Fortran Linux Compiler Version 8.0 (ftc080lsgb001) for PC Microsoft MSDN Enterprise Subscription 7.0 (38904119) for PC Microsoft MSDN Library 7.0 for PC

Can you Help with these Programming Tools problems?

Programming Tools
update
how i can use or include new... Answer This...
Programming Tools
about Eclipse IDE
i have downloaded eclipse IDE... Answer This...
Programming Tools
how to upgrade my psp version...
hello gud am, i would like to... Answer This...
Programming Tools
Fatmata Sesay
my 25 product key Answer This...
Programming Tools
wont turn off, or reset
when turned on it will not shut... Answer This...
Repair Service
Find Programming Tool Repairman Near You:

FixYa does not evaluate or guarantee the accuracy of any information provided through its proposed solutions, posts, or Expert Assistance Sessions. By entering this site you declare you read and agreed to its Terms. You may NOT copy or distribute the content that appears on this site without written permission from FixYa Inc.
© 2005-2008, FixYa, Inc. or its affiliates
When the original poster rates a solution that was given to his own problem, that rating is locked!
X

Are you sure the solution content is Inappropriate?
   
Tech buddies can communicate directly to answer questions. Become a Tech Buddy and have direct access to your favorite expert for FREE!