]> git.ipfire.org Git - people/ms/nitsi.git/blob - src/nitsi/disk.py
Makefile: Ship nitsi.in in tarball
[people/ms/nitsi.git] / src / nitsi / disk.py
1 #!/usr/bin/python3
2
3 import guestfs
4 import logging
5 import os
6 import tarfile
7 import tempfile
8
9 logger = logging.getLogger("nitsi.disk")
10
11
12 class disk():
13 def __init__(self, disk):
14 self.log = logger.getChild(os.path.basename(disk))
15 self.log.debug("Initiated a disk class for {}".format(disk))
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):
20 self.log.debug("Trying to mount the partion with uuid: {} under {}".format(uuid, path))
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):
26 self.log.debug("Going to copy some files into the image.")
27 tmp = tempfile.mkstemp()
28 tmp = tmp[1] + ".tar"
29 with tarfile.open(tmp, "w") as tar:
30 for file in fr:
31 self.log.debug("Adding {} to be copied into the image".format(file))
32 tar.add(file, arcname=os.path.basename(file))
33
34 self.log.debug("Going to copy the files into the image")
35 self.con.tar_in_opts(tmp, to)
36
37 def umount(self, path):
38 self.log.debug("Unmounting the image")
39 self.con.umount_opts(path)
40
41 def close(self):
42 self.log.debug("Flush the image and closing the connection")
43 self.con.shutdown()
44 self.con.close()
45
46 # test = disk("/var/lib/libvirt/images/alice.qcow2")
47 # test.mount("45598e92-3487-4a1b-961d-79aa3dd42a7d", "/")
48 # test.copy_in("/home/jonatan/nitsi/libguestfs-test", "/root/")
49 # test.umount("/")
50 # test.close()