2010-11-23 10:14:25 +00:00
|
|
|
#
|
|
|
|
# treeinfo.py
|
|
|
|
#
|
2015-05-06 17:38:57 +00:00
|
|
|
# Copyright (C) 2010-2015 Red Hat, Inc.
|
2010-11-23 10:14:25 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Red Hat Author(s): Martin Gracik <mgracik@redhat.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger("pylorax.treeinfo")
|
|
|
|
|
2015-05-06 17:38:57 +00:00
|
|
|
import configparser
|
2010-11-23 10:14:25 +00:00
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
class TreeInfo(object):
|
|
|
|
|
2011-04-28 18:10:31 +00:00
|
|
|
def __init__(self, product, version, variant, basearch,
|
2010-11-23 11:37:28 +00:00
|
|
|
packagedir=""):
|
2010-11-23 10:14:25 +00:00
|
|
|
|
2015-05-06 17:38:57 +00:00
|
|
|
self.c = configparser.ConfigParser()
|
2010-11-23 10:14:25 +00:00
|
|
|
|
|
|
|
section = "general"
|
2015-05-07 19:31:16 +00:00
|
|
|
data = {"timestamp": str(time.time()),
|
2010-11-23 10:14:25 +00:00
|
|
|
"family": product,
|
|
|
|
"version": version,
|
2012-04-23 15:07:58 +00:00
|
|
|
"name": "%s-%s" % (product, version),
|
2010-11-23 10:14:25 +00:00
|
|
|
"variant": variant or "",
|
|
|
|
"arch": basearch,
|
|
|
|
"packagedir": packagedir}
|
|
|
|
|
|
|
|
self.c.add_section(section)
|
2015-05-06 17:38:57 +00:00
|
|
|
list(self.c.set(section, key, value) for key, value in data.items())
|
2010-11-23 10:14:25 +00:00
|
|
|
|
|
|
|
def add_section(self, section, data):
|
|
|
|
if not self.c.has_section(section):
|
|
|
|
self.c.add_section(section)
|
|
|
|
|
2015-05-06 17:38:57 +00:00
|
|
|
list(self.c.set(section, key, value) for key, value in data.items())
|
2010-11-23 10:14:25 +00:00
|
|
|
|
2011-04-28 18:10:31 +00:00
|
|
|
def write(self, outfile):
|
2010-11-23 10:14:25 +00:00
|
|
|
logger.info("writing .treeinfo file")
|
2011-04-28 18:10:31 +00:00
|
|
|
with open(outfile, "w") as fobj:
|
2010-11-23 10:14:25 +00:00
|
|
|
self.c.write(fobj)
|