Class: FileUtils::Entry_
- Inherits:
-
Object
- Object
- FileUtils::Entry_
- Includes:
- StreamUtils_
- Defined in:
- lib/fileutils.rb
Overview
:nodoc: internal use only
Constant Summary collapse
- S_IF_DOOR =
0xD000
Instance Method Summary collapse
- #blockdev? ⇒ Boolean
- #chardev? ⇒ Boolean
- #chmod(mode) ⇒ Object
- #chown(uid, gid) ⇒ Object
- #copy(dest) ⇒ Object
- #copy_file(dest) ⇒ Object
- #copy_metadata(path) ⇒ Object
- #dereference? ⇒ Boolean
- #directory? ⇒ Boolean
- #door? ⇒ Boolean
- #entries ⇒ Object
- #exist? ⇒ Boolean
- #file? ⇒ Boolean
-
#initialize(a, b = nil, deref = false) ⇒ Entry_
constructor
A new instance of Entry_.
- #inspect ⇒ Object
- #lstat ⇒ Object
- #lstat! ⇒ Object
- #path ⇒ Object
- #pipe? ⇒ Boolean
- #platform_support ⇒ Object
- #postorder_traverse {|_self| ... } ⇒ Object
- #prefix ⇒ Object
- #preorder_traverse ⇒ Object (also: #traverse)
- #rel ⇒ Object
- #remove ⇒ Object
- #remove_dir1 ⇒ Object
- #remove_file ⇒ Object
- #socket? ⇒ Boolean
- #stat ⇒ Object
- #stat! ⇒ Object
- #symlink? ⇒ Boolean
Constructor Details
#initialize(a, b = nil, deref = false) ⇒ Entry_
Returns a new instance of Entry_.
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 |
# File 'lib/fileutils.rb', line 1087 def initialize(a, b = nil, deref = false) @prefix = @rel = @path = nil if b @prefix = a @rel = b else @path = a end @deref = deref @stat = nil @lstat = nil end |
Instance Method Details
#blockdev? ⇒ Boolean
1148 1149 1150 1151 |
# File 'lib/fileutils.rb', line 1148 def blockdev? s = lstat! s and s.blockdev? end |
#chardev? ⇒ Boolean
1143 1144 1145 1146 |
# File 'lib/fileutils.rb', line 1143 def chardev? s = lstat! s and s.chardev? end |
#chmod(mode) ⇒ Object
1212 1213 1214 1215 1216 1217 1218 |
# File 'lib/fileutils.rb', line 1212 def chmod(mode) if symlink? File.lchmod mode, path() if have_lchmod? else File.chmod mode, path() end end |
#chown(uid, gid) ⇒ Object
1220 1221 1222 1223 1224 1225 1226 |
# File 'lib/fileutils.rb', line 1220 def chown(uid, gid) if symlink? File.lchown uid, gid, path() if have_lchown? else File.chown uid, gid, path() end end |
#copy(dest) ⇒ Object
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/fileutils.rb', line 1228 def copy(dest) case when file? copy_file dest when directory? begin Dir.mkdir dest rescue raise unless File.directory?(dest) end when symlink? File.symlink File.readlink(path()), dest when chardev? raise "cannot handle device file" unless File.respond_to?(:mknod) mknod dest, ?c, 0666, lstat().rdev when blockdev? raise "cannot handle device file" unless File.respond_to?(:mknod) mknod dest, ?b, 0666, lstat().rdev when socket? raise "cannot handle socket" unless File.respond_to?(:mknod) mknod dest, nil, lstat().mode, 0 when pipe? raise "cannot handle FIFO" unless File.respond_to?(:mkfifo) mkfifo dest, 0666 when door? raise "cannot handle door: #{path()}" else raise "unknown file type: #{path()}" end end |
#copy_file(dest) ⇒ Object
1259 1260 1261 1262 1263 1264 1265 1266 |
# File 'lib/fileutils.rb', line 1259 def copy_file(dest) st = stat() File.open(path(), 'rb') {|r| File.open(dest, 'wb', st.mode) {|w| fu_copy_stream0 r, w, (fu_blksize(st) || fu_default_blksize()) } } end |
#copy_metadata(path) ⇒ Object
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 |
# File 'lib/fileutils.rb', line 1268 def (path) st = lstat() File.utime st.atime, st.mtime, path begin File.chown st.uid, st.gid, path rescue Errno::EPERM # clear setuid/setgid File.chmod st.mode & 01777, path else File.chmod st.mode, path end end |
#dereference? ⇒ Boolean
1120 1121 1122 |
# File 'lib/fileutils.rb', line 1120 def dereference? @deref end |
#directory? ⇒ Boolean
1133 1134 1135 1136 |
# File 'lib/fileutils.rb', line 1133 def directory? s = lstat! s and s.directory? end |
#door? ⇒ Boolean
1165 1166 1167 1168 |
# File 'lib/fileutils.rb', line 1165 def door? s = lstat! s and (s.mode & 0xF000 == S_IF_DOOR) end |
#entries ⇒ Object
1170 1171 1172 1173 1174 |
# File 'lib/fileutils.rb', line 1170 def entries Dir.entries(path())\ .reject {|n| n == '.' or n == '..' }\ .map {|n| Entry_.new(prefix(), join(rel(), n.untaint)) } end |
#exist? ⇒ Boolean
1124 1125 1126 |
# File 'lib/fileutils.rb', line 1124 def exist? lstat! ? true : false end |
#file? ⇒ Boolean
1128 1129 1130 1131 |
# File 'lib/fileutils.rb', line 1128 def file? s = lstat! s and s.file? end |
#inspect ⇒ Object
1100 1101 1102 |
# File 'lib/fileutils.rb', line 1100 def inspect "\#<#{self.class} #{path()}>" end |
#lstat ⇒ Object
1198 1199 1200 1201 1202 1203 1204 |
# File 'lib/fileutils.rb', line 1198 def lstat if dereference? @lstat ||= File.stat(path()) else @lstat ||= File.lstat(path()) end end |
#lstat! ⇒ Object
1206 1207 1208 1209 1210 |
# File 'lib/fileutils.rb', line 1206 def lstat! lstat() rescue SystemCallError nil end |
#path ⇒ Object
1104 1105 1106 1107 1108 1109 1110 |
# File 'lib/fileutils.rb', line 1104 def path if @path @path.to_str else join(@prefix, @rel) end end |
#pipe? ⇒ Boolean
1158 1159 1160 1161 |
# File 'lib/fileutils.rb', line 1158 def pipe? s = lstat! s and s.pipe? end |
#platform_support ⇒ Object
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 |
# File 'lib/fileutils.rb', line 1301 def platform_support return yield unless fu_windows? first_time_p = true begin yield rescue Errno::ENOENT raise rescue => err if first_time_p first_time_p = false begin File.chmod 0700, path() # Windows does not have symlink retry rescue SystemCallError end end raise err end end |
#postorder_traverse {|_self| ... } ⇒ Object
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 |
# File 'lib/fileutils.rb', line 1331 def postorder_traverse if directory? entries().each do |ent| ent.postorder_traverse do |e| yield e end end end yield self end |
#prefix ⇒ Object
1112 1113 1114 |
# File 'lib/fileutils.rb', line 1112 def prefix @prefix || @path end |
#preorder_traverse ⇒ Object Also known as: traverse
1321 1322 1323 1324 1325 1326 1327 |
# File 'lib/fileutils.rb', line 1321 def preorder_traverse stack = [self] while ent = stack.pop yield ent stack.concat ent.entries.reverse if ent.directory? end end |
#rel ⇒ Object
1116 1117 1118 |
# File 'lib/fileutils.rb', line 1116 def rel @rel end |
#remove ⇒ Object
1281 1282 1283 1284 1285 1286 1287 |
# File 'lib/fileutils.rb', line 1281 def remove if directory? remove_dir1 else remove_file end end |
#remove_dir1 ⇒ Object
1289 1290 1291 1292 1293 |
# File 'lib/fileutils.rb', line 1289 def remove_dir1 platform_support { Dir.rmdir path().sub(%r</\z>, '') } end |
#remove_file ⇒ Object
1295 1296 1297 1298 1299 |
# File 'lib/fileutils.rb', line 1295 def remove_file platform_support { File.unlink path } end |
#socket? ⇒ Boolean
1153 1154 1155 1156 |
# File 'lib/fileutils.rb', line 1153 def socket? s = lstat! s and s.socket? end |
#stat ⇒ Object
1176 1177 1178 1179 1180 1181 1182 1183 1184 |
# File 'lib/fileutils.rb', line 1176 def stat return @stat if @stat if lstat() and lstat().symlink? @stat = File.stat(path()) else @stat = lstat() end @stat end |
#stat! ⇒ Object
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 |
# File 'lib/fileutils.rb', line 1186 def stat! return @stat if @stat if lstat! and lstat!.symlink? @stat = File.stat(path()) else @stat = lstat! end @stat rescue SystemCallError nil end |
#symlink? ⇒ Boolean
1138 1139 1140 1141 |
# File 'lib/fileutils.rb', line 1138 def symlink? s = lstat! s and s.symlink? end |