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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
|
module Archive
class Entry
S_IFMT = 0170000
S_IFSOCK = 0140000 # socket
S_IFLNK = 0120000 # symbolic link
S_IFREG = 0100000 # regular file
S_IFBLK = 0060000 # block device
S_IFDIR = 0040000 # directory
S_IFCHR = 0020000 # character device
S_IFIFO = 0010000 # FIFO
SOCKET = 0140000 # socket
SYMBOLIC_LINK = 0120000 # symbolic link
FILE = 0100000 # regular file
BLOCK_SPECIAL = 0060000 # block device
DIRECTORY = 0040000 # directory
CHARACTER_SPECIAL = 0020000 # character device
FIFO = 0010000 # FIFO
def self.from_pointer(entry, clone: false)
new entry, clone: clone
end
def initialize(entry = nil, clone: false)
@entry_free = [true]
if entry
@entry = clone ? C.archive_entry_clone(entry) : entry
yield self if block_given?
else
@entry = C.archive_entry_new
raise Error, @entry unless @entry
if block_given?
result = yield self
C.archive_entry_free(@entry)
@entry = nil
result
else
@entry_free[0] = false
ObjectSpace.define_finalizer(self, Entry.finalizer(@entry, @entry_free))
end
end
end
def self.finalizer(entry, entry_free)
proc do |*_args|
C.archive_entry_free(entry) unless entry_free[0]
end
end
def close
# TODO: do we need synchronization here?
if @entry && !@entry_free[0]
@entry_free[0] = true
C.archive_entry_free(@entry)
end
ensure
@entry = nil
end
def entry
raise "No entry object" unless @entry
@entry
end
def atime
Time.at C.archive_entry_atime(entry)
end
def atime=(time)
set_atime time, 0
end
def set_atime(time, nsec)
C.archive_entry_set_atime(entry, time.to_i, nsec)
end
def atime_is_set?
C.archive_entry_atime_is_set(entry) != 0
end
def atime_nsec
C.archive_entry_atime_nsec(entry)
end
def birthtime
Time.at C.archive_entry_birthtime(entry)
end
def birthtime=(time)
set_birthtime time, 0
end
def set_birthtime(time, nsec)
C.archive_entry_set_birthtime(entry, time.to_i, nsec)
end
def birthtime_is_set?
C.archive_entry_birthtime_is_set(entry) != 0
end
def birthtime_nsec
C.archive_entry_birthtime_nsec(entry)
end
def ctime
Time.at C.archive_entry_ctime(entry)
end
def ctime=(time)
set_ctime time, 0
end
def set_ctime(time, nsec)
C.archive_entry_set_ctime(entry, time.to_i, nsec)
end
def ctime_is_set?
C.archive_entry_ctime_is_set(entry) != 0
end
def ctime_nsec
C.archive_entry_ctime_nsec(entry)
end
def block_special?
C.archive_entry_filetype(entry) & S_IFMT == S_IFBLK
end
def character_special?
C.archive_entry_filetype(entry) & S_IFMT == S_IFCHR
end
def directory?
C.archive_entry_filetype(entry) & S_IFMT == S_IFDIR
end
def fifo?
C.archive_entry_filetype(entry) & S_IFMT == S_IFIFO
end
def regular?
C.archive_entry_filetype(entry) & S_IFMT == S_IFREG
end
alias file? regular?
def socket?
C.archive_entry_filetype(entry) & S_IFMT == S_IFSOCK
end
def symbolic_link?
C.archive_entry_filetype(entry) & S_IFMT == S_IFLNK
end
def copy_fflags_text(fflags_text)
C.archive_entry_copy_fflags_text(entry, fflags_text)
nil
end
def copy_gname(gname)
C.archive_entry_copy_gname(entry, gname)
nil
end
def copy_hardlink(lnk)
C.archive_entry_copy_hardlink(entry, lnk)
nil
end
def copy_link(lnk)
C.archive_entry_copy_link(entry, lnk)
nil
end
def copy_lstat(filename)
# TODO: get this work without ffi-inliner
begin
require File.join(Archive::LIBPATH, "ffi-libarchive", "stat")
rescue => e
raise "ffi-inliner build for copy_stat failed:\n#{e}"
end
stat = Archive::Stat.ffi_libarchive_create_lstat(filename)
raise Error, "Copy stat failed: #{Archive::Stat.ffi_error}" if stat.null?
C.archive_entry_copy_stat(entry, stat)
ensure
Archive::Stat.ffi_libarchive_free_stat(stat)
end
def copy_pathname(file_name)
C.archive_entry_copy_pathname(entry, file_name)
nil
end
def copy_sourcepath(path)
C.archive_copy_sourcepath(entry, path)
nil
end
def copy_stat(filename)
# TODO: get this work without ffi-inliner
begin
require File.join(Archive::LIBPATH, "ffi-libarchive", "stat")
rescue => e
raise "ffi-inliner build for copy_stat failed:\n#{e}"
end
stat = Archive::Stat.ffi_libarchive_create_stat(filename)
raise Error, "Copy stat failed: #{Archive::Stat.ffi_error}" if stat.null?
C.archive_entry_copy_stat(entry, stat)
ensure
Archive::Stat.ffi_libarchive_free_stat(stat)
end
def copy_symlink(slnk)
C.archive_copy_symlink(entry, slnk)
nil
end
def copy_uname(uname)
C.archive_copy_uname(entry, uname)
nil
end
def dev
C.archive_entry_dev(entry)
end
def dev=(dev)
C.archive_entry_set_dev(entry, dev)
end
def devmajor
C.archive_entry_devmajor(entry)
end
def devmajor=(dev)
C.archive_entry_set_devmajor(entry, dev)
end
def devminor
C.archive_entry_devminor(entry)
end
def devminor=(dev)
C.archive_entry_set_devminor(entry, dev)
end
def fflags
set = FFI::MemoryPointer.new :long
clear = FFI::MemoryPointer.new :long
C.archive_entry_fflags(entry, set, clear)
[set.get_long(0), clear.get_long(0)]
end
def fflags_text
C.archive_entry_fflags_text(entry)
end
def filetype
C.archive_entry_filetype(entry)
end
def filetype=(type)
type = Entry.const_get type.to_s.upcase.to_sym if type.is_a? Symbol
C.archive_entry_set_filetype(entry, type)
end
def gid
C.archive_entry_gid(entry)
end
def gid=(gid)
C.archive_entry_set_gid(entry, gid)
end
def gname
C.archive_entry_gname(entry)
end
def gname=(gname)
C.archive_entry_set_gname(entry, gname)
end
def hardlink
C.archive_entry_hardlink(entry)
end
def hardlink=(lnk)
C.archive_entry_set_hardlink(entry, lnk)
end
def ino
C.archive_entry_ino(entry)
end
def ino=(ino)
C.archive_entry_set_ino(entry, ino)
end
def link=(lnk)
C.archive_entry_set_link(entry, lnk)
end
def mode
C.archive_entry_mode(entry)
end
def mode=(mode)
C.archive_entry_set_mode(entry, mode)
end
def mtime
Time.at C.archive_entry_mtime(entry)
end
def mtime=(time)
set_mtime time, 0
end
def set_mtime(time, nsec)
C.archive_entry_set_mtime(entry, time.to_i, nsec)
end
def mtime_is_set?
C.archive_entry_mtime_is_set(entry) != 0
end
def mtime_nsec
C.archive_entry_mtime_nsec(entry)
end
def nlink
C.archive_entry_nlink(entry)
end
def nlink=(nlink)
C.archive_entry_set_nlink(entry, nlink)
end
def pathname
C.archive_entry_pathname(entry)
end
def pathname=(path)
C.archive_entry_set_pathname(entry, path)
end
def perm=(perm)
C.archive_entry_set_perm(entry, perm)
end
def rdev
C.archive_entry_rdev(entry)
end
def rdev=(dev)
C.archive_entry_set_rdev(entry, dev)
end
def rdevmajor
C.archive_entry_rdevmajor(entry)
end
def rdevmajor=(dev)
C.archive_entry_set_rdevmajor(entry, dev)
end
def rdevminor
C.archive_entry_rdevminor(entry)
end
def rdevminor=(dev)
C.archive_entry_set_rdevminor(entry, dev)
end
def set_fflags(set, clear)
C.archive_entry_set_fflags(entry, set, clear)
end
def size
C.archive_entry_size(entry)
end
def size=(size)
C.archive_entry_set_size(entry, size)
end
def size_is_set?
C.archive_entry_size_is_set(entry) != 0
end
def sourcepath
C.archive_entry_sourcepath(entry)
end
def strmode
C.archive_entry_strmode(entry)
end
def symlink
C.archive_entry_symlink(entry)
end
def symlink=(slnk)
C.archive_entry_set_symlink(entry, slnk)
end
def uid
C.archive_entry_uid(entry)
end
def uid=(uid)
C.archive_entry_set_uid(entry, uid)
end
def uname
C.archive_entry_uname(entry)
end
def uname=(uname)
C.archive_entry_set_uname(entry, uname)
end
def unset_atime
C.archive_entry_unset_atime(entry)
end
def unset_birthtime
C.archive_entry_unset_birthtime(entry)
end
def unset_ctime
C.archive_entry_unset_ctime(entry)
end
def unset_mtime
C.archive_entry_unset_mtime(entry)
end
def unset_size
C.archive_entry_unset_size(entry)
end
def xattr_add_entry(name, value)
C.archive_entry_xattr_add_entry(entry, name, value, value.size)
end
def xattr_clear
C.archive_entry_xattr_clear(entry)
end
def xattr_count
C.archive_entry_xattr_count(entry)
end
def xattr_next
name = FFI::MemoryPointer.new :pointer
value = FFI::MemoryPointer.new :pointer
size = FFI::MemoryPointer.new :size_t
if C.archive_entry_xattr_next(entry, name, value, size) != C::OK
nil
else
# TODO: someday size.read_size_t could work
[name.null? ? nil : name.read_string,
value.null? ? nil : value.get_string(0, size.read_ulong)]
end
end
def xattr_reset
C.archive_entry_xattr_reset(entry)
end
end
end
|