FixYa.com
Technical Support, Instructions & Repair Service


Tags:

Programming Tools
Generic problem for all Programming Tools

Python COde

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('\n', '').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: IBM Domino Designer (E1CSFLL-EDU) for PC Intel Integrated Performance Primitives 4.1 for Windows (ipp041wsgb001) for PC Intel MPI Library 1.0 for Development Kit for Linux (MPI010LSGE001) for Linux Intel Cluster Toolkit 1.0 (ICT010LSGE001C) 3Com CodeWarrior 6 (3C50112U) for PC, Mac Intel Fortran Linux Compiler Version 8.0 (ftc080lsgb001) for PC Microsoft Ae Visual Sudio Tools for Office 2003 (u74-00114) for PC

Can you Help with these Programming Tools problems?

Programming Tools
update
how i can use or include new... Answer This...
Programming Tools
help
hello, i tried this key but it... 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!