summaryrefslogtreecommitdiff
path: root/src/backend/purgeenv.py
blob: 522241477f711142ee07cb5f3bb9b6ebd1358f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python3

import animation
import os
import shutil
import sisyphus.getfs


@animation.wait('purging branch configuration')
def branch():
    if os.path.isdir(sisyphus.getfs.g_src_dir):
        for files in os.listdir(sisyphus.getfs.g_src_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.g_src_dir, files)):
                os.remove(os.path.join(sisyphus.getfs.g_src_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.g_src_dir, files))
    else:
        os.makedirs(sisyphus.getfs.g_src_dir)

    if os.path.isdir(sisyphus.getfs.r_src_dir):
        for files in os.listdir(sisyphus.getfs.r_src_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.r_src_dir, files)):
                os.remove(os.path.join(sisyphus.getfs.r_src_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.r_src_dir, files))
    else:
        os.makedirs(sisyphus.getfs.r_src_dir)

    if os.path.isdir(sisyphus.getfs.p_cfg_dir):
        for files in os.listdir(sisyphus.getfs.p_cfg_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.p_cfg_dir, files)):
                os.remove(os.path.join(sisyphus.getfs.p_cfg_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.p_cfg_dir, files))
    else:
        os.makedirs(sisyphus.getfs.p_cfg_dir)


@animation.wait('purging cached files')
def cache():
    if os.path.isdir(sisyphus.getfs.p_cch_dir):
        for files in os.listdir(sisyphus.getfs.p_cch_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.p_cch_dir, files)):
                os.remove(os.path.join(sisyphus.getfs.p_cch_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.p_cch_dir, files))

    if os.path.isdir(sisyphus.getfs.p_dst_dir):
        for files in os.listdir(sisyphus.getfs.p_dst_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.p_dst_dir, files)):
                os.remove(os.path.join(sisyphus.getfs.p_dst_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.p_dst_dir, files))


@animation.wait('purging metadata files')
def metadata():
    if os.path.isdir(sisyphus.getfs.p_mtd_dir):
        for files in os.listdir(sisyphus.getfs.p_mtd_dir):
            if os.path.isfile(os.path.join(sisyphus.getfs.p_mtd_dir, files)):
                os.remove(os.path.join(
                    sisyphus.getfs.p_mtd_dir, files))
            else:
                shutil.rmtree(os.path.join(
                    sisyphus.getfs.p_mtd_dir, files))