]> git.ipfire.org Git - nitsi.git/blame - src/nitsi/disk.py
Add include_path as setting
[nitsi.git] / src / nitsi / disk.py
CommitLineData
14cd493f
JS
1#!/usr/bin/python3
2
3import guestfs
1ed8ca9f 4import logging
6632e137
JS
5import os
6import tarfile
7import tempfile
1ed8ca9f
JS
8
9logger = logging.getLogger("nitsi.disk")
10
14cd493f 11
ee227ea1 12class Disk():
14cd493f 13 def __init__(self, disk):
1ed8ca9f
JS
14 self.log = logger.getChild(os.path.basename(disk))
15 self.log.debug("Initiated a disk class for {}".format(disk))
14cd493f
JS
16 self.con = guestfs.GuestFS(python_return_dict=True)
17 self.con.add_drive_opts(disk, format="qcow2")
18
19 def mount(self, uuid, path):
cfd70f97 20 self.log.info("Trying to mount the partion with uuid: {} under {}".format(uuid, path))
14cd493f
JS
21 self.con.launch()
22 part = self.con.findfs_uuid(uuid)
23 self.con.mount(part, path)
24
25 def copy_in(self, fr, to):
cfd70f97 26 self.log.info("Going to copy some files into the image.")
14cd493f
JS
27 tmp = tempfile.mkstemp()
28 tmp = tmp[1] + ".tar"
b7e02750 29 self.log.debug("Path of tarfile is: {}".format(tmp))
14cd493f
JS
30 with tarfile.open(tmp, "w") as tar:
31 for file in fr:
1ed8ca9f 32 self.log.debug("Adding {} to be copied into the image".format(file))
14cd493f 33 tar.add(file, arcname=os.path.basename(file))
1ed8ca9f 34
cfd70f97 35 self.log.info("Going to copy the files into the image")
14cd493f 36 self.con.tar_in_opts(tmp, to)
b7e02750 37 self.log.debug(self.con.ls(to))
14cd493f
JS
38
39 def umount(self, path):
cfd70f97 40 self.log.info("Unmounting the image")
14cd493f
JS
41 self.con.umount_opts(path)
42
43 def close(self):
cfd70f97 44 self.log.info("Flush the image and closing the connection")
14cd493f
JS
45 self.con.shutdown()
46 self.con.close()
47
b7e02750
JS
48# test = Disk("/var/lib/libvirt/images/ipfire-bob.qcow2")
49# test.mount("1efb5389-0949-46bb-b688-5246acba9f6d", "/")
14cd493f
JS
50# test.copy_in("/home/jonatan/nitsi/libguestfs-test", "/root/")
51# test.umount("/")
6632e137 52# test.close()