fuel-web/shotgun/shotgun/manager.py

42 lines
1.5 KiB
Python

# Copyright 2013 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import os
from shotgun.driver import Driver
from shotgun.logger import logger
from shotgun.utils import execute
class Manager(object):
def __init__(self, conf):
logger.debug("Initializing snapshot manager")
self.conf = conf
def snapshot(self):
logger.debug("Making snapshot")
for obj_data in self.conf.objects:
logger.debug("Dumping: %s", obj_data)
driver = Driver.getDriver(obj_data, self.conf)
driver.snapshot()
logger.debug("Archiving dump directory: %s", self.conf.target)
execute("tar zcf {0}.tgz -C {1} {2}"
"".format(self.conf.target,
os.path.dirname(self.conf.target),
os.path.basename(self.conf.target)))
execute("rm -r {0}".format(self.conf.target))
with open(self.conf.lastdump, "w") as fo:
fo.write("%s.tgz" % self.conf.target)
return "%s.tgz" % self.conf.target