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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Author: Mauro Soria
import os
import os.path
class File(object):
def __init__(self, *path_components):
self._path = FileUtils.build_path(*path_components)
self.content = None
@property
def path(self):
return self._path
@path.setter
def path(self, value):
raise NotImplementedError
def is_valid(self):
return FileUtils.is_file(self.path)
def exists(self):
return FileUtils.exists(self.path)
def can_read(self):
return FileUtils.can_read(self.path)
def can_write(self):
return FileUtils.can_write(self.path)
def read(self):
return FileUtils.read(self.path)
def update(self):
self.content = self.read()
def content(self):
if not self.content:
self.content = FileUtils.read()
return self.content()
def get_lines(self):
for line in FileUtils.get_lines(self.path):
yield line
def __cmp__(self, other):
if not isinstance(other, File):
raise NotImplementedError
if self.content() < other.content():
return -1
elif self.content() > other.content():
return 1
else:
return 0
def __enter__(self):
return self
def __exit__(self, type, value, tb):
pass
class FileUtils(object):
@staticmethod
def build_path(*path_components):
if path_components:
path = os.path.join(*path_components)
else:
path = ""
return path
@staticmethod
def get_abs_path(file_name):
return os.path.abspath(file_name)
@staticmethod
def exists(file_name):
return os.access(file_name, os.F_OK)
@staticmethod
def can_read(file_name):
try:
with open(file_name):
pass
except IOError:
return False
return True
@staticmethod
def can_read_dir(directory):
for root, _, files in os.walk(directory):
for file in files:
if not FileUtils.can_read(os.path.join(root, file)):
return False
return True
@staticmethod
def can_write(file_name):
return os.access(file_name, os.W_OK)
@staticmethod
def read(file_name):
return open(file_name, "r").read()
@staticmethod
def read_dir(directory):
data = {}
for root, _, files in os.walk(directory):
for file in files:
data[file] = FileUtils.read(os.path.join(root, file))
return data
@staticmethod
def get_lines(file_name):
with open(file_name, "r", errors="replace") as fd:
return fd.read().splitlines()
@staticmethod
def is_dir(file_name):
return os.path.isdir(file_name)
@staticmethod
def is_file(file_name):
return os.path.isfile(file_name)
@staticmethod
def create_directory(directory):
if not FileUtils.exists(directory):
os.makedirs(directory)
@staticmethod
def write_lines(file_name, lines):
if type(lines) is list:
content = "\n".join(lines)
else:
content = lines
with open(file_name, "w") as f:
f.writelines(content)
|