fs.py 5.1 KB
Newer Older
T
tangwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

X
xiexionghang 已提交
15 16 17
import os
from paddle.fluid.incubate.fleet.utils.hdfs import HDFSClient

T
tangwei 已提交
18

X
xiexionghang 已提交
19
def is_afs_path(path):
X
xiexionghang 已提交
20 21
    """R 
    """
X
xiexionghang 已提交
22 23 24 25
    if path.startswith("afs") or path.startswith("hdfs"):
        return True
    return False

X
xiexionghang 已提交
26 27

class LocalFSClient(object):
X
xiexionghang 已提交
28 29 30 31
    """
    Util for local disk file_system io 
    """
    
X
xiexionghang 已提交
32
    def __init__(self):
X
xiexionghang 已提交
33 34
        """R
        """
X
xiexionghang 已提交
35
        pass
X
xiexionghang 已提交
36
    
X
xiexionghang 已提交
37
    def write(self, content, path, mode):
X
xiexionghang 已提交
38 39 40 41 42 43 44
        """
        write to file
        Args:
            content(string)
            path(string)
            mode(string): w/a  w:clear_write a:append_write
        """
X
xiexionghang 已提交
45 46 47 48 49 50 51 52 53
        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 已提交
54 55
        """R
        """
X
xiexionghang 已提交
56 57 58 59 60 61
        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 已提交
62 63
        """R
        """
X
xiexionghang 已提交
64 65 66 67 68 69
        f = open(file_path)
        content = f.read()
        f.close()
        return content

    def mkdir(self, dir_name):
X
xiexionghang 已提交
70 71 72
        """R
        """
        os.makedirs(dir_name)
X
xiexionghang 已提交
73 74

    def remove(self, path):
X
xiexionghang 已提交
75 76
        """R
        """
X
xiexionghang 已提交
77 78 79
        os.system("rm -rf " + path)
    
    def is_exist(self, path):
X
xiexionghang 已提交
80 81
        """R
        """
X
xiexionghang 已提交
82 83 84 85 86
        if os.system("ls " + path) == 0:
            return True
        return False

    def ls(self, path):
X
xiexionghang 已提交
87 88
        """R
        """
X
xiexionghang 已提交
89 90 91
        files = os.listdir(path)
        return files

X
xiexionghang 已提交
92 93

class FileHandler(object):
X
xiexionghang 已提交
94 95 96
    """
    A Smart file handler. auto judge local/afs by path 
    """
X
xiexionghang 已提交
97
    def __init__(self, config):
X
xiexionghang 已提交
98 99
        """R
        """
X
xiexionghang 已提交
100 101 102 103 104 105 106 107 108 109
        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 已提交
110 111
        """R
        """
X
xiexionghang 已提交
112 113 114 115 116 117
        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 已提交
118 119
        """R
        """
X
xiexionghang 已提交
120 121 122 123
        sub_paths = path.split('/')
        return sub_paths[-1]

    def write(self, content, dest_path, mode='w'):
X
xiexionghang 已提交
124 125
        """R
        """
X
xiexionghang 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
        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 已提交
144 145
        """R
        """
X
xiexionghang 已提交
146 147 148 149 150 151 152
        if is_afs_path(path):
            hdfs_cat = self._hdfs_client.cat(path)
            return hdfs_cat
        else:
            return self._local_fs_client.cat(path)
    
    def ls(self, path):
X
xiexionghang 已提交
153 154
        """R
        """
155
        files = []
X
xiexionghang 已提交
156
        if is_afs_path(path):
157
            files = self._hdfs_client.ls(path)
158
            files = [path + '/' + self.get_file_name(fi) for fi in files]  # absulte path
X
xiexionghang 已提交
159
        else:
160
            files = self._local_fs_client.ls(path)
161
            files = [path + '/' + fi for fi in files]  # absulte path
162
        return files
X
xiexionghang 已提交
163 164
    
    def cp(self, org_path, dest_path):
X
xiexionghang 已提交
165 166
        """R
        """
X
xiexionghang 已提交
167 168 169 170 171 172 173 174 175
        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")