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 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
|
# fileutil.tcl --
#
# Tcl implementations of standard UNIX utilities.
#
# Copyright (c) 1998-2000 by Ajuba Solutions.
# Copyright (c) 2002 by Phil Ehrens <phil@slug.org> (fileType)
# Copyright (c) 2005 by Andreas Kupries <andreas_kupries@users.sourceforge.net>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: fileutil.tcl,v 1.53 2005/09/30 05:36:39 andreas_kupries Exp $
package require Tcl 8.2
package require cmdline
package provide fileutil 1.8
namespace eval ::fileutil {
namespace export \
grep find findByPattern cat touch foreachLine \
jail stripPwd stripN stripPath tempdir tempfile \
install fileType
}
# ::fileutil::grep --
#
# Implementation of grep. Adapted from the Tcler's Wiki.
#
# Arguments:
# pattern pattern to search for.
# files list of files to search; if NULL, uses stdin.
#
# Results:
# results list of matches
proc ::fileutil::grep {pattern {files {}}} {
set result [list]
if {[llength $files] == 0} {
# read from stdin
set lnum 0
while {[gets stdin line] >= 0} {
incr lnum
if {[regexp -- $pattern $line]} {
lappend result "${lnum}:${line}"
}
}
} else {
foreach filename $files {
set file [open $filename r]
set lnum 0
while {[gets $file line] >= 0} {
incr lnum
if {[regexp -- $pattern $line]} {
lappend result "${filename}:${lnum}:${line}"
}
}
close $file
}
}
return $result
}
# ::fileutil::find ==
#
# Two different implementations of this command, one for Unix with its
# softlinks, the other for the Win* platform. The trouble with
# softlink is that they can generate circles in the directory and/or
# file structure, leading a simple recursion into infinity. So we
# record device/inode information for each file and directory we touch
# to be able to skip it should we happen to visit it again.
# Note about the general implementation: The tcl interpreter sets a
# tcl stack limit of 1000 levels to prevent infinite recursions from
# running out of bounds. As this command is implemented recursively it
# will fail for very deeply nested directory structures.
if {[string compare unix $tcl_platform(platform)]} {
# Not a unix platform => Original implementation
# Note: This may still fail for directories mounted via SAMBA,
# i.e. coming from a unix server.
# ::fileutil::find --
#
# Implementation of find. Adapted from the Tcler's Wiki.
#
# Arguments:
# basedir directory to start searching from; default is .
# filtercmd command to use to evaluate interest in each file.
# If NULL, all files are interesting.
#
# Results:
# files a list of interesting files.
proc ::fileutil::find {{basedir .} {filtercmd {}}} {
# Instead of getting a directory, we have received one file
# name. Do not do directory operations.
if { [file isfile $basedir] } {
set cwd "" ; # This variable is needed below.
set fileisbasedir 1
set filenames [list $basedir]
} elseif { [file isdirectory $basedir] } {
set fileisbasedir 0
set oldwd [pwd]
if {[catch {
cd $basedir
}]} {
# The directory is not accessible.
# Ignore it. No files found.
return {}
}
set cwd [pwd]
# Use only *, on Windows dot-files are listed as well.
set filenames [glob -nocomplain *]
} else {
return -code error "$basedir does not exist"
}
set files {}
set filt [string length $filtercmd]
# If we don't remove . and .. from the file list, we'll get stuck in
# an infinite loop in an infinite loop in an infinite loop in an inf...
foreach special [list "." ".."] {
set index [lsearch -exact $filenames $special]
set filenames [lreplace $filenames $index $index]
}
foreach filename $filenames {
# Use uplevel to eval the command, not eval, so that variable
# substitutions occur in the right context.
if {!$filt || [uplevel $filtercmd [list $filename]]} {
lappend files [file join $cwd $filename]
}
if {[file isdirectory $filename]} {
set files [concat $files [find $filename $filtercmd]]
}
}
if { ! $fileisbasedir } {
cd $oldwd
}
return $files
}
} else {
# Unix, record dev/inode to detect and break circles
# SF tcllib bug [784157], distinguish between pre and post Tcl
# 8.4. In 8.4 and post 8.4. we have to conditionally exclude
# dev/inode checking. This is not required for pre 8.4.
if {[package vcompare [package present Tcl] 8.4] >= 0} {
# ::fileutil::find --
#
# Implementation of find. Adapted from the Tcler's Wiki.
#
# Arguments:
# basedir directory to start searching from; default is .
# filtercmd command to use to evaluate interest in each file.
# If NULL, all files are interesting.
#
# Results:
# files a list of interesting files.
proc ::fileutil::find {{basedir .} {filtercmd {}} {nodeVar {}}} {
if {$nodeVar == {}} {
# Main call, setup the device/inode structure
array set inodes {}
} else {
# Recursive call, import the device/inode record from the caller.
upvar $nodeVar inodes
}
# Instead of getting a directory, we have received one file
# name. Do not do directory operations.
if { [file isfile $basedir] } {
set cwd "" ; # This variable is needed below.
set fileisbasedir 1
set filenames [list $basedir]
} elseif { [file isdirectory $basedir] } {
set fileisbasedir 0
set oldwd [pwd]
if {[catch {
cd $basedir
}]} {
# The directory is not accessible.
# Ignore it. No files found.
return {}
}
set cwd [pwd]
# Unix: Need the .* pattern as well to retrieve dot-files
set filenames [glob -nocomplain * .*]
} else {
return -code error "$basedir does not exist"
}
set files {}
set filt [string length $filtercmd]
# If we don't remove . and .. from the file list, we'll get stuck in
# an infinite loop in an infinite loop in an infinite loop in an inf...
foreach special [list "." ".."] {
set index [lsearch -exact $filenames $special]
set filenames [lreplace $filenames $index $index]
}
foreach filename $filenames {
# Stat each file/directory get exact information about its identity
# (device, inode). Non-'stat'able files are either junk (link to
# non-existing target) or not readable, i.e. inaccessible. In both
# cases it makes sense to ignore them.
if {[catch {file lstat [set full [file join $cwd $filename]] stat}]} {
continue
}
# SF [ 647974 ] find has problems recursing a metakit fs ...
#
# The following code is a HACK / workaround. We assume that virtual
# FS's do not support links, and therefore there is no need for
# keeping track of device/inode information. A good thing as the
# the virtual FS's usually give us bad data for these anyway, as
# illustrated by the bug referenced above.
if {[string equal native [lindex [file system $full] 0]]} {
# No skip over previously recorded files/directories and
# record the new files/directories.
set key "$stat(dev),$stat(ino)"
if {[info exists inodes($key)]} {
continue
}
set inodes($key) 1
}
# Use uplevel to eval the command, not eval, so that variable
# substitutions occur in the right context.
if {!$filt || [uplevel $filtercmd [list $filename]]} {
lappend files $full
}
if {[file isdirectory $filename]} {
set files [concat $files [find $filename $filtercmd inodes]]
}
}
if { ! $fileisbasedir } {
cd $oldwd
}
return $files
}
} else {
# Unix, pre 8.4. No virtual file system is present, therefore there is no
# need to conditionally exclude dev/inode checking.
# ::fileutil::find --
#
# Implementation of find. Adapted from the Tcler's Wiki.
#
# Arguments:
# basedir directory to start searching from; default is .
# filtercmd command to use to evaluate interest in each file.
# If NULL, all files are interesting.
#
# Results:
# files a list of interesting files.
proc ::fileutil::find {{basedir .} {filtercmd {}} {nodeVar {}}} {
if {$nodeVar == {}} {
# Main call, setup the device/inode structure
array set inodes {}
} else {
# Recursive call, import the device/inode record from the caller.
upvar $nodeVar inodes
}
# Instead of getting a directory, we have received one file
# name. Do not do directory operations.
if { [file isfile $basedir] } {
set cwd "" ; # This variable is needed below.
set fileisbasedir 1
set filenames [list $basedir]
} elseif { [file isdirectory $basedir] } {
set fileisbasedir 0
set oldwd [pwd]
if {[catch {
cd $basedir
}]} {
# The directory is not accessible.
# Ignore it. No files found.
return {}
}
set cwd [pwd]
# Unix: Need the .* pattern as well to retrieve dot-files
set filenames [glob -nocomplain * .*]
} else {
return -code error "$basedir does not exist"
}
set files {}
set filt [string length $filtercmd]
# If we don't remove . and .. from the file list, we'll get stuck in
# an infinite loop in an infinite loop in an infinite loop in an inf...
foreach special [list "." ".."] {
set index [lsearch -exact $filenames $special]
set filenames [lreplace $filenames $index $index]
}
foreach filename $filenames {
# Stat each file/directory get exact information about its identity
# (device, inode). Non-'stat'able files are either junk (link to
# non-existing target) or not readable, i.e. inaccessible. In both
# cases it makes sense to ignore them.
if {[catch {file lstat [set full [file join $cwd $filename]] stat}]} {
continue
}
# No skip over previously recorded files/directories and
# record the new files/directories.
set key "$stat(dev),$stat(ino)"
if {[info exists inodes($key)]} {
continue
}
set inodes($key) 1
# Use uplevel to eval the command, not eval, so that variable
# substitutions occur in the right context.
if {!$filt || [uplevel $filtercmd [list $filename]]} {
lappend files $full
}
if {[file isdirectory $filename]} {
set files [concat $files [find $filename $filtercmd inodes]]
}
}
if { ! $fileisbasedir } {
cd $oldwd
}
return $files
}
}
# end if
}
# ::fileutil::findByPattern --
#
# Specialization of find. Finds files based on their names,
# which have to match the specified patterns. Options are used
# to specify which type of patterns (regexp-, glob-style) is
# used.
#
# Arguments:
# basedir Directory to start searching from.
# args Options (-glob, -regexp, --) followed by a
# list of patterns to search for.
#
# Results:
# files a list of interesting files.
proc ::fileutil::findByPattern {basedir args} {
set pos 0
set cmd ::fileutil::FindGlob
foreach a $args {
incr pos
switch -glob -- $a {
-- {break}
-regexp {set cmd ::fileutil::FindRegexp}
-glob {set cmd ::fileutil::FindGlob}
-* {return -code error "Unknown option $a"}
default {incr pos -1 ; break}
}
}
set args [lrange $args $pos end]
if {[llength $args] != 1} {
set pname [lindex [info level 0] 0]
return -code error \
"wrong#args for \"$pname\", should be\
\"$pname basedir ?-regexp|-glob? ?--? patterns\""
}
set patterns [lindex $args 0]
return [find $basedir [list $cmd $patterns]]
}
# ::fileutil::FindRegexp --
#
# Internal helper. Filter command used by 'findByPattern'
# to match files based on regular expressions.
#
# Arguments:
# patterns List of regular expressions to match against.
# filename Name of the file to match against the patterns.
# Results:
# interesting A boolean flag. Set to true if the file
# matches at least one of the patterns.
proc ::fileutil::FindRegexp {patterns filename} {
foreach p $patterns {
if {[regexp -- $p $filename]} {
return 1
}
}
return 0
}
# ::fileutil::FindGlob --
#
# Internal helper. Filter command used by 'findByPattern'
# to match files based on glob expressions.
#
# Arguments:
# patterns List of glob expressions to match against.
# filename Name of the file to match against the patterns.
# Results:
# interesting A boolean flag. Set to true if the file
# matches at least one of the patterns.
proc ::fileutil::FindGlob {patterns filename} {
foreach p $patterns {
if {[string match $p $filename]} {
return 1
}
}
return 0
}
# ::fileutil::stripPwd --
#
# If the specified path references is a path in [pwd] (or [pwd] itself) it
# is made relative to [pwd]. Otherwise it is left unchanged.
# In the case of [pwd] itself the result is the string '.'.
#
# Arguments:
# path path to modify
#
# Results:
# path The (possibly) modified path.
proc ::fileutil::stripPwd {path} {
# [file split] is used to generate a canonical form for both
# paths, for easy comparison, and also one which is easy to modify
# using list commands.
set pwd [pwd]
if {[string equal $pwd $path]} {
return "."
}
set pwd [file split $pwd]
set npath [file split $path]
if {[string match ${pwd}* $npath]} {
set path [eval [linsert [lrange $npath [llength $pwd] end] 0 file join ]]
}
return $path
}
# ::fileutil::stripN --
#
# Removes N elements from the beginning of the path.
#
# Arguments:
# path path to modify
# n number of elements to strip
#
# Results:
# path The modified path
proc ::fileutil::stripN {path n} {
set path [file split $path]
if {$n >= [llength $path]} {
return {}
} else {
return [eval [linsert [lrange $path $n end] 0 file join]]
}
}
# ::fileutil::stripPath --
#
# If the specified path references/is a path in prefix (or prefix itself) it
# is made relative to prefix. Otherwise it is left unchanged.
# In the case of it being prefix itself the result is the string '.'.
#
# Arguments:
# prefix prefix to strip from the path.
# path path to modify
#
# Results:
# path The (possibly) modified path.
proc ::fileutil::stripPath {prefix path} {
# [file split] is used to generate a canonical form for both
# paths, for easy comparison, and also one which is easy to modify
# using list commands.
if {[string equal $prefix $path]} {
return "."
}
set prefix [file split $prefix]
set npath [file split $path]
if {[string match ${prefix}* $npath]} {
set path [eval [linsert [lrange $npath [llength $prefix] end] 0 file join ]]
}
return $path
}
# ::fileutil::jail --
#
# Ensures that the input path 'filename' stays within the the
# directory 'jail'. In this way it preventsuser-supplied paths
# from escaping the jail.
#
# Arguments:
# jail The path to the directory the other must
# not escape from.
# filename The path to prevent from escaping.
#
# Results:
# path The (possibly) modified path surely within
# the confines of the jail.
proc fileutil::jail {jail filename} {
if {![string equal [file pathtype $filename] "relative"]} {
# Although the path to check is absolute (or volumerelative on
# windows) we cannot perform a simple prefix check to see if
# the path is inside the jail or not. We have to normalize
# both path and jail and then we can check. If the path is
# outside we make the original path relative and prefix it
# with the original jail. We do make the jail pseudo-absolute
# by prefixing it with the current working directory for that.
# Normalized jail. Fully resolved sym links, if any. Our main
# complication is that normalize does not resolve symlinks in the
# last component of the path given to it, so we add a bogus
# component, resolve, and then strip it off again. That is why the
# code is so large and long.
set njail [eval [list file join] [lrange [file split \
[Normalize [file join $jail __dummy__]]] 0 end-1]]
# Normalize filename. Fully resolved sym links, if
# any. S.a. for an explanation of the complication.
set nfile [eval [list file join] [lrange [file split \
[Normalize [file join $filename __dummy__]]] 0 end-1]]
if {[string match ${njail}* $nfile]} {
return $filename
}
# Outside the jail, put it inside. ... We normalize the input
# path lexically for this, to prevent escapes still lurking in
# the original path. (We cannot use the normalized path,
# symlinks may have bent it out of shape in unrecognizable ways.
return [eval [linsert [lrange [file split \
[LexNormalize $filename]] 1 end] 0 file join [pwd] $jail]]
} else {
# The path is relative, consider it as outside
# implicitly. Normalize it lexically! to prevent escapes, then
# put the jail in front, use PWD to ensure absoluteness.
return [eval [linsert [LexNormalize $filename] 0 \
file join [pwd] $jail]]
}
}
# ::fileutil::cat --
#
# Tcl implementation of the UNIX "cat" command. Returns the contents
# of the specified file.
#
# Arguments:
# args name of the files to read.
#
# Results:
# data data read from the file.
proc ::fileutil::cat {args} {
foreach filename $args {
# Don't bother catching errors, just let them propagate up
set fd [open $filename r]
# Use the [file size] command to get the size, which preallocates memory,
# rather than trying to grow it as the read progresses.
set size [file size $filename]
if {$size} {
append data [read $fd $size]
} else {
# if the file has zero bytes it is either empty, or something
# where [file size] reports 0 but the file actually has data (like
# the files in the /proc filesystem on Linux)
append data [read $fd]
}
close $fd
}
return $data
}
# ::fileutil::foreachLine --
#
# Executes a script for every line in a file.
#
# Arguments:
# var name of the variable to contain the lines
# filename name of the file to read.
# cmd The script to execute.
#
# Results:
# None.
proc ::fileutil::foreachLine {var filename cmd} {
upvar 1 $var line
set fp [open $filename r]
# -future- Use try/eval from tcllib/control
catch {
set code 0
set result {}
while {[gets $fp line] >= 0} {
set code [catch {uplevel 1 $cmd} result]
if {($code != 0) && ($code != 4)} {break}
}
}
close $fp
if {($code == 0) || ($code == 3) || ($code == 4)} {
return $result
}
if {$code == 1} {
global errorCode errorInfo
return \
-code $code \
-errorcode $errorCode \
-errorinfo $errorInfo \
$result
}
return -code $code $result
}
# ::fileutil::touch --
#
# Tcl implementation of the UNIX "touch" command.
#
# touch [-a] [-m] [-c] [-r ref_file] [-t time] filename ...
#
# Arguments:
# -a change the access time only, unless -m also specified
# -m change the modification time only, unless -a also specified
# -c silently prevent creating a file if it did not previously exist
# -r ref_file use the ref_file's time instead of the current time
# -t time use the specified time instead of the current time
# ("time" is an integer clock value, like [clock seconds])
# filename ... the files to modify
#
# Results
# None.
#
# Errors:
# Both of "-r" and "-t" cannot be specified.
if {[package vsatisfies [package provide Tcl] 8.3]} {
namespace eval ::fileutil { namespace export touch }
proc ::fileutil::touch {args} {
# Don't bother catching errors, just let them propagate up
set options {
{a "set the atime only"}
{m "set the mtime only"}
{c "do not create non-existant files"}
{r.arg "" "use time from ref_file"}
{t.arg -1 "use specified time"}
}
set usage ": [lindex [info level 0] 0]\
\[options] filename ...\noptions:"
array set params [::cmdline::getoptions args $options $usage]
# process -a and -m options
set set_atime [set set_mtime "true"]
if { $params(a) && ! $params(m)} {set set_mtime "false"}
if {! $params(a) && $params(m)} {set set_atime "false"}
# process -r and -t
set has_t [expr {$params(t) != -1}]
set has_r [expr {[string length $params(r)] > 0}]
if {$has_t && $has_r} {
return -code error "Cannot specify both -r and -t"
} elseif {$has_t} {
set atime [set mtime $params(t)]
} elseif {$has_r} {
file stat $params(r) stat
set atime $stat(atime)
set mtime $stat(mtime)
} else {
set atime [set mtime [clock seconds]]
}
# do it
foreach filename $args {
if {! [file exists $filename]} {
if {$params(c)} {continue}
close [open $filename w]
}
if {$set_atime} {file atime $filename $atime}
if {$set_mtime} {file mtime $filename $mtime}
}
return
}
}
# ::fileutil::fileType --
#
# Do some simple heuristics to determine file type.
#
#
# Arguments:
# filename Name of the file to test.
#
# Results
# type Type of the file. May be a list if multiple tests
# are positive (eg, a file could be both a directory
# and a link). In general, the list proceeds from most
# general (eg, binary) to most specific (eg, gif), so
# the full type for a GIF file would be
# "binary graphic gif"
#
# At present, the following types can be detected:
#
# directory
# empty
# binary
# text
# script <interpreter>
# executable [elf, dos, ne, pe]
# binary graphic [gif, jpeg, png, tiff, bitmap]
# ps, eps, pdf
# html
# xml <doctype>
# message pgp
# compressed [bzip, gzip, zip, tar]
# audio [mpeg, wave]
# gravity_wave_data_frame
# link
# doctools, doctoc, and docidx documentation files.
#
proc ::fileutil::fileType {filename} {
;## existence test
if { ! [ file exists $filename ] } {
set err "file not found: '$filename'"
return -code error $err
}
;## directory test
if { [ file isdirectory $filename ] } {
set type directory
if { ! [ catch {file readlink $filename} ] } {
lappend type link
}
return $type
}
;## empty file test
if { ! [ file size $filename ] } {
set type empty
if { ! [ catch {file readlink $filename} ] } {
lappend type link
}
return $type
}
set bin_rx {[\x00-\x08\x0b\x0e-\x1f]}
if { [ catch {
set fid [ open $filename r ]
fconfigure $fid -translation binary
fconfigure $fid -buffersize 1024
fconfigure $fid -buffering full
set test [ read $fid 1024 ]
::close $fid
} err ] } {
catch { ::close $fid }
return -code error "::fileutil::fileType: $err"
}
if { [ regexp $bin_rx $test ] } {
set type binary
set binary 1
} else {
set type text
set binary 0
}
# SF Tcllib bug [795585]. Allowing whitespace between #!
# and path of script interpreter
set metakit 0
if { [ regexp {^\#\!\s*(\S+)} $test -> terp ] } {
lappend type script $terp
} elseif {[regexp "\\\[manpage_begin " $test]} {
lappend type doctools
} elseif {[regexp "\\\[toc_begin " $test]} {
lappend type doctoc
} elseif {[regexp "\\\[index_begin " $test]} {
lappend type docidx
} elseif { $binary && [ regexp {^[\x7F]ELF} $test ] } {
lappend type executable elf
} elseif { $binary && [string match "MZ*" $test] } {
if { [scan [string index $test 24] %c] < 64 } {
lappend type executable dos
} else {
binary scan [string range $test 60 61] s next
set sig [string range $test $next [expr {$next + 1}]]
if { $sig == "NE" || $sig == "PE" } {
lappend type executable [string tolower $sig]
} else {
lappend type executable dos
}
}
} elseif { $binary && [string match "BZh91AY\&SY*" $test] } {
lappend type compressed bzip
} elseif { $binary && [string match "\x1f\x8b*" $test] } {
lappend type compressed gzip
} elseif { $binary && [string range $test 257 262] == "ustar\x00" } {
lappend type compressed tar
} elseif { $binary && [string match "\x50\x4b\x03\x04*" $test] } {
lappend type compressed zip
} elseif { $binary && [string match "GIF*" $test] } {
lappend type graphic gif
} elseif { $binary && [string match "\x89PNG*" $test] } {
lappend type graphic png
} elseif { $binary && [string match "\xFF\xD8\xFF*" $test] } {
binary scan $test x3H2x2a5 marker txt
if { $marker == "e0" && $txt == "JFIF\x00" } {
lappend type graphic jpeg jfif
} elseif { $marker == "e1" && $txt == "Exif\x00" } {
lappend type graphic jpeg exif
}
} elseif { $binary && [string match "MM\x00\**" $test] } {
lappend type graphic tiff
} elseif { $binary && [string match "BM*" $test] && [string range $test 6 9] == "\x00\x00\x00\x00" } {
lappend type graphic bitmap
} elseif { $binary && [string match "\%PDF\-*" $test] } {
lappend type pdf
} elseif { ! $binary && [string match -nocase "*\<html\>*" $test] } {
lappend type html
} elseif { [string match "\%\!PS\-*" $test] } {
lappend type ps
if { [string match "* EPSF\-*" $test] } {
lappend type eps
}
} elseif { [string match -nocase "*\<\?xml*" $test] } {
lappend type xml
if { [ regexp -nocase {\<\!DOCTYPE\s+(\S+)} $test -> doctype ] } {
lappend type $doctype
}
} elseif { [string match {*BEGIN PGP MESSAGE*} $test] } {
lappend type message pgp
} elseif { $binary && [string match {IGWD*} $test] } {
lappend type gravity_wave_data_frame
} elseif {[string match "JL\x1a\x00*" $test] && ([file size $filename] >= 27)} {
lappend type metakit smallendian
set metakit 1
} elseif {[string match "LJ\x1a\x00*" $test] && ([file size $filename] >= 27)} {
lappend type metakit bigendian
set metakit 1
} elseif { $binary && [string match "RIFF*" $test] && [string range $test 8 11] == "WAVE" } {
lappend type audio wave
} elseif { $binary && [string match "ID3*" $test] } {
lappend type audio mpeg
} elseif { $binary && [binary scan $test S tmp] && [expr {$tmp & 0xFFE0}] == 65504 } {
lappend type audio mpeg
}
# Additional checks of file contents at the end of the file,
# possibly pointing into the middle too (attached metakit,
# attached zip).
## Metakit File format: http://www.equi4.com/metakit/metakit-ff.html
## Metakit database attached ? ##
if {!$metakit && ([file size $filename] >= 27)} {
# The offsets in the footer are in always bigendian format
if { [ catch {
set fid [ open $filename r ]
fconfigure $fid -translation binary
fconfigure $fid -buffersize 1024
fconfigure $fid -buffering full
seek $fid -16 end
set test [ read $fid 16 ]
::close $fid
} err ] } {
catch { ::close $fid }
return -code error "::fileutil::fileType: $err"
}
binary scan $test IIII __ hdroffset __ __
set hdroffset [expr {[file size $filename] - 16 - $hdroffset}]
# Further checks iff the offset is actually inside the file.
if {($hdroffset >= 0) && ($hdroffset < [file size $filename])} {
# Seek to the specified location and try to match a metakit header
# at this location.
if { [ catch {
set fid [ open $filename r ]
fconfigure $fid -translation binary
fconfigure $fid -buffersize 1024
fconfigure $fid -buffering full
seek $fid $hdroffset start
set test [ read $fid 16 ]
::close $fid
} err ] } {
catch { ::close $fid }
return -code error "::fileutil::fileType: $err"
}
if {[string match "JL\x1a\x00*" $test]} {
lappend type attached metakit smallendian
set metakit 1
} elseif {[string match "LJ\x1a\x00*" $test]} {
lappend type attached metakit bigendian
set metakit 1
}
}
}
## Zip File Format: http://zziplib.sourceforge.net/zzip-parse.html
## http://www.pkware.com/products/enterprise/white_papers/appnote.html
;## lastly, is it a link?
if { ! [ catch {file readlink $filename} ] } {
lappend type link
}
return $type
}
# ::fileutil::tempdir --
#
# Return the correct directory to use for temporary files.
# Python attempts this sequence, which seems logical:
#
# 1. The directory named by the `TMPDIR' environment variable.
#
# 2. The directory named by the `TEMP' environment variable.
#
# 3. The directory named by the `TMP' environment variable.
#
# 4. A platform-specific location:
# * On Macintosh, the `Temporary Items' folder.
#
# * On Windows, the directories `C:\\TEMP', `C:\\TMP',
# `\\TEMP', and `\\TMP', in that order.
#
# * On all other platforms, the directories `/tmp',
# `/var/tmp', and `/usr/tmp', in that order.
#
# 5. As a last resort, the current working directory.
#
# Arguments:
# None.
#
# Side Effects:
# None.
#
# Results:
# The directory for temporary files.
proc ::fileutil::tempdir {} {
return [Normalize [TempDir]]
}
proc ::fileutil::TempDir {} {
global tcl_platform env
set attempdirs [list]
foreach tmp {TMPDIR TEMP TMP} {
if { [info exists env($tmp)] } {
lappend attempdirs $env($tmp)
}
}
switch $tcl_platform(platform) {
windows {
lappend attempdirs "C:\\TEMP" "C:\\TMP" "\\TEMP" "\\TMP"
}
macintosh {
set tmpdir $env(TRASH_FOLDER) ;# a better place?
}
default {
lappend attempdirs [file join / tmp] \
[file join / var tmp] [file join / usr tmp]
}
}
foreach tmp $attempdirs {
if { [file isdirectory $tmp] && [file writable $tmp] } {
return $tmp
}
}
# If nothing else worked...
return [pwd]
}
# ::fileutil::tempfile --
#
# generate a temporary file name suitable for writing to
# the file name will be unique, writable and will be in the
# appropriate system specific temp directory
# Code taken from http://mini.net/tcl/772 attributed to
# Igor Volobouev and anon.
#
# Arguments:
# prefix - a prefix for the filename, p
# Results:
# returns a file name
#
proc ::fileutil::tempfile {{prefix {}}} {
return [Normalize [TempFile $prefix]]
}
proc ::fileutil::TempFile {prefix} {
set tmpdir [tempdir]
set chars "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
set nrand_chars 10
set maxtries 10
set access [list RDWR CREAT EXCL TRUNC]
set permission 0600
set channel ""
set checked_dir_writable 0
set mypid [pid]
for {set i 0} {$i < $maxtries} {incr i} {
set newname $prefix
for {set j 0} {$j < $nrand_chars} {incr j} {
append newname [string index $chars \
[expr {int(rand()*62)}]]
}
set newname [file join $tmpdir $newname]
if {[file exists $newname]} {
after 1
} else {
if {[catch {open $newname $access $permission} channel]} {
if {!$checked_dir_writable} {
set dirname [file dirname $newname]
if {![file writable $dirname]} {
return -code error "Directory $dirname is not writable"
}
set checked_dir_writable 1
}
} else {
# Success
close $channel
return $newname
}
}
}
if {[string compare $channel ""]} {
return -code error "Failed to open a temporary file: $channel"
} else {
return -code error "Failed to find an unused temporary file name"
}
}
# ::fileutil::install --
#
# Tcl version of the 'install' command, which copies files from
# one places to another and also optionally sets some attributes
# such as group, owner, and permissions.
#
# Arguments:
# -m Change the file permissions to the specified
# value. Valid arguments are those accepted by
# file attributes -permissions
#
# Results:
# None.
# TODO - add options for group/owner manipulation.
proc ::fileutil::install {args} {
set options {
{m.arg "" "Set permission mode"}
}
set usage ": [lindex [info level 0] 0]\
\[options] source destination \noptions:"
array set params [::cmdline::getoptions args $options $usage]
# Args should now just be the source and destination.
if { [llength $args] < 2 } {
return -code error $usage
}
set src [lindex $args 0]
set dst [lindex $args 1]
file copy -force $src $dst
if { $params(m) != "" } {
set targets [::fileutil::find $dst]
foreach fl $targets {
file attributes $fl -permissions $params(m)
}
}
}
# ### ### ### ######### ######### #########
proc ::fileutil::LexNormalize {sp} {
set sp [file split $sp]
# Resolution of embedded relative modifiers (., and ..).
set np {}
set noskip 1
while {[llength $sp]} {
set ele [lindex $sp 0]
set sp [lrange $sp 1 end]
set islast [expr {[llength $sp] == 0}]
if {[string equal $ele ".."]} {
if {[llength $np] > 1} {
# .. : Remove the previous element added to the
# new path, if there actually is enough to remove.
set np [lrange $np 0 end-1]
}
} elseif {[string equal $ele "."]} {
# Ignore .'s, they stay at the current location
continue
} else {
# A regular element.
lappend np $ele
}
}
if {[llength $np] > 0} {
return [eval file join $np]
}
return {}
}
# ### ### ### ######### ######### #########
## Forward compatibility. Some routines require path normalization,
## something we have supported by the builtin 'file' only since Tcl
## 8.4. For versions of Tcl before that, to be supported by the
## module, we implement a normalizer in Tcl itself. Slow, but working.
if {[package vcompare [package provide Tcl] 8.4] < 0} {
# Pre 8.4. We do not have 'file normalize'. We create an
# approximation for it based on earlier commands.
# ... Hm. This is lexical normalization. It does not resolve
# symlinks in the path to their origin.
proc ::fileutil::Normalize {sp} {
set sp [file split $sp]
# Conversion of the incoming path to absolute.
if {[string equal [file pathtype [lindex $sp 0]] "relative"]} {
set sp [file split [eval [list file join [pwd]] $sp]]
}
# Resolution of symlink components, and embedded relative
# modifiers (., and ..).
set np {}
set noskip 1
while {[llength $sp]} {
set ele [lindex $sp 0]
set sp [lrange $sp 1 end]
set islast [expr {[llength $sp] == 0}]
if {[string equal $ele ".."]} {
if {[llength $np] > 1} {
# .. : Remove the previous element added to the
# new path, if there actually is enough to remove.
set np [lrange $np 0 end-1]
}
} elseif {[string equal $ele "."]} {
# Ignore .'s, they stay at the current location
continue
} else {
# A regular element. If it is not the last component
# then check if the combination is a symlink, and if
# yes, resolve it.
lappend np $ele
if {!$islast && $noskip} {
# The flag 'noskip' is technically not required,
# just 'file exists'. However if a path P does not
# exist, then all longer paths starting with P can
# not exist either, and using the flag to store
# this knowledge then saves us a number of
# unnecessary stat calls. IOW this a performance
# optimization.
set p [eval file join $np]
set noskip [file exists $p]
if {$noskip} {
if {[string equal link [file type $p]]} {
set dst [file readlink $p]
# We always push the destination in front of
# the source path (in expanded form). So that
# we handle .., .'s, and symlinks inside of
# this path as well. An absolute path clears
# the result, a relative one just removes the
# last, now resolved component.
set sp [eval [linsert [file split $dst] 0 linsert $sp 0]]
if {![string equal relative [file pathtype $dst]]} {
# Absolute|volrelative destination, clear
# result, we have to start over.
set np {}
} else {
# Relative link, just remove the resolved
# component again.
set np [lrange $np 0 end-1]
}
}
}
}
}
}
if {[llength $np] > 0} {
return [eval file join $np]
}
return {}
}
} else {
proc ::fileutil::Normalize {sp} {
file normalize $sp
}
}
|