kagle_fs.py 4.5 KB
Newer Older
X
xiexionghang 已提交
1 2 3
"""
util for file_system io
"""
X
xiexionghang 已提交
4 5 6 7 8
import os
import time
from paddle.fluid.incubate.fleet.utils.hdfs import HDFSClient

def is_afs_path(path):
X
xiexionghang 已提交
9 10
    """R 
    """
X
xiexionghang 已提交
11 12 13 14
    if path.startswith("afs") or path.startswith("hdfs"):
        return True
    return False

X
xiexionghang 已提交
15 16

class LocalFSClient(object):
X
xiexionghang 已提交
17 18 19 20
    """
    Util for local disk file_system io 
    """
    
X
xiexionghang 已提交
21
    def __init__(self):
X
xiexionghang 已提交
22 23
        """R
        """
X
xiexionghang 已提交
24
        pass
X
xiexionghang 已提交
25
    
X
xiexionghang 已提交
26
    def write(self, content, path, mode):
X
xiexionghang 已提交
27 28 29 30 31 32 33
        """
        write to file
        Args:
            content(string)
            path(string)
            mode(string): w/a  w:clear_write a:append_write
        """
X
xiexionghang 已提交
34 35 36 37 38 39 40 41 42
        temp_dir = os.path.dirname(path)
        if not os.path.exists(temp_dir): 
            os.makedirs(temp_dir)
        f = open(path, mode)
        f.write(content)
        f.flush()
        f.close()

    def cp(self, org_path, dest_path):
X
xiexionghang 已提交
43 44
        """R
        """
X
xiexionghang 已提交
45 46 47 48 49 50
        temp_dir = os.path.dirname(dest_path)
        if not os.path.exists(temp_dir):
            os.makedirs(temp_dir)
        return os.system("cp -r " + org_path + " " + dest_path)

    def cat(self, file_path):
X
xiexionghang 已提交
51 52
        """R
        """
X
xiexionghang 已提交
53 54 55 56 57 58
        f = open(file_path)
        content = f.read()
        f.close()
        return content

    def mkdir(self, dir_name):
X
xiexionghang 已提交
59 60 61
        """R
        """
        os.makedirs(dir_name)
X
xiexionghang 已提交
62 63

    def remove(self, path):
X
xiexionghang 已提交
64 65
        """R
        """
X
xiexionghang 已提交
66 67 68
        os.system("rm -rf " + path)
    
    def is_exist(self, path):
X
xiexionghang 已提交
69 70
        """R
        """
X
xiexionghang 已提交
71 72 73 74 75
        if os.system("ls " + path) == 0:
            return True
        return False

    def ls(self, path):
X
xiexionghang 已提交
76 77
        """R
        """
X
xiexionghang 已提交
78 79 80
        files = os.listdir(path)
        return files

X
xiexionghang 已提交
81 82

class FileHandler(object):
X
xiexionghang 已提交
83 84 85
    """
    A Smart file handler. auto judge local/afs by path 
    """
X
xiexionghang 已提交
86
    def __init__(self, config):
X
xiexionghang 已提交
87 88
        """R
        """
X
xiexionghang 已提交
89 90 91 92 93 94 95 96 97 98
        if 'fs_name' in config:
            hadoop_home="$HADOOP_HOME"
            hdfs_configs = {
                "hadoop.job.ugi": config['fs_ugi'], 
                "fs.default.name": config['fs_name']
            }
            self._hdfs_client = HDFSClient(hadoop_home, hdfs_configs)
        self._local_fs_client = LocalFSClient()

    def is_exist(self, path):
X
xiexionghang 已提交
99 100
        """R
        """
X
xiexionghang 已提交
101 102 103 104 105 106
        if is_afs_path(path):
            return self._hdfs_client.is_exist(path)
        else:
            return self._local_fs_client.is_exist(path)

    def get_file_name(self, path):
X
xiexionghang 已提交
107 108
        """R
        """
X
xiexionghang 已提交
109 110 111 112
        sub_paths = path.split('/')
        return sub_paths[-1]

    def write(self, content, dest_path, mode='w'):
X
xiexionghang 已提交
113 114
        """R
        """
X
xiexionghang 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
        if is_afs_path(dest_path):
            file_name = self.get_file_name(dest_path)
            temp_local_file = "./tmp/" + file_name
            self._local_fs_client.remove(temp_local_file)
            org_content = ""
            if mode.find('a') >= 0:
                org_content = self._hdfs_client.cat(dest_path)
            content = content + org_content
            self._local_fs_client.write(content, temp_local_file, mode) #fleet hdfs_client only support upload, so write tmp file
            self._hdfs_client.delete(dest_path + ".tmp")
            self._hdfs_client.upload(dest_path + ".tmp", temp_local_file)
            self._hdfs_client.delete(dest_path + ".bak")
            self._hdfs_client.rename(dest_path, dest_path + '.bak')
            self._hdfs_client.rename(dest_path + ".tmp", dest_path)
        else:
            self._local_fs_client.write(content, dest_path, mode)
    
    def cat(self, path):
X
xiexionghang 已提交
133 134
        """R
        """
X
xiexionghang 已提交
135 136 137 138 139 140 141 142 143
        if is_afs_path(path):
            print("xxh go cat " + path)
            hdfs_cat = self._hdfs_client.cat(path)
            print(hdfs_cat)
            return hdfs_cat
        else:
            return self._local_fs_client.cat(path)
    
    def ls(self, path):
X
xiexionghang 已提交
144 145
        """R
        """
146
        files = []
X
xiexionghang 已提交
147
        if is_afs_path(path):
148
            files = self._hdfs_client.ls(path)
X
xiexionghang 已提交
149
        else:
150 151 152
            files = self._local_fs_client.ls(path)
        files = [path + '/' + fi for fi in files]
        return files
X
xiexionghang 已提交
153 154
    
    def cp(self, org_path, dest_path):
X
xiexionghang 已提交
155 156
        """R
        """
X
xiexionghang 已提交
157 158 159 160 161 162 163 164 165 166
        org_is_afs = is_afs_path(org_path)
        dest_is_afs = is_afs_path(dest_path)
        if not org_is_afs and not dest_is_afs:
            return self._local_fs_client.cp(org_path, dest_path)
        if not org_is_afs and dest_is_afs:
            return self._hdfs_client.upload(dest_path, org_path)
        if org_is_afs and not dest_is_afs: 
            return self._hdfs_client.download(org_path, dest_path)
        print("Not Suppor hdfs cp currently")