/usr/lib/puredata/tcl/pd_deken.tcl is in puredata-gui 0.48.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # META NAME PdExternalsSearch
# META DESCRIPTION Search for externals zipfiles on puredata.info
# META AUTHOR <Chris McCormick> chris@mccormick.cx
# META AUTHOR <IOhannes m zmölnig> zmoelnig@iem.at
# ex: set setl sw=2 sts=2 et
# Search URL:
# http://deken.puredata.info/search?name=foobar
# The minimum version of TCL that allows the plugin to run
package require Tcl 8.4
# If Tk or Ttk is needed
#package require Ttk
# Any elements of the Pd GUI that are required
# + require everything and all your script needs.
# If a requirement is missing,
# Pd will load, but the script will not.
package require http 2
# try enabling https if possible
if { [catch {package require tls} ] } {} {
::tls::init -ssl2 false -ssl3 false -tls1 true
::http::register https 443 ::tls::socket
}
package require pdwindow 0.1
package require pd_menucommands 0.1
package require pd_guiprefs
namespace eval ::deken:: {
variable version
variable installpath
}
## only register this plugin if there isn't any newer version already registered
## (if ::deken::version is defined and is higher than our own version)
proc ::deken::versioncheck {version} {
if { [info exists ::deken::version ] } {
set v0 [split $::deken::version "."]
set v1 [split $version "."]
foreach x $v0 y $v1 {
if { $x > $y } {
::pdwindow::debug [format [_ "\[deken\]: installed version \[%1\$s\] > %2\$s...skipping!" ] $::deken::version $version ]
::pdwindow::debug "\n"
return 0
}
if { $x < $y } {
::pdwindow::debug [format [_ "\[deken\]: installed version \[%1\$s] < %2\$s...overwriting!" ] $::deken::version $version ]
::pdwindow::debug "\n"
set ::deken::version $version
return 1
}
}
::pdwindow::debug [format [_ "\[deken\]: installed version \[%1\$s\] == %2\$s...skipping!" ] $::deken::version $version ]
::pdwindow::debug "\n"
return 0
}
set ::deken::version $version
return 1
}
## put the current version of this package here:
if { [::deken::versioncheck 0.2.4] } {
namespace eval ::deken:: {
namespace export open_searchui
variable mytoplevelref
variable platform
variable architecture_substitutes
variable installpath
variable statustext
variable statustimer
variable backends
variable progressvar
namespace export register
}
namespace eval ::deken::search:: { }
set ::deken::installpath ""
set ::deken::statustimer ""
if { [ catch { set ::deken::installpath [::pd_guiprefs::read dekenpath] } stdout ] } {
# this is a Pd without the new GUI-prefs
proc ::deken::set_installpath {installdir} {
set ::deken::installpath $installdir
}
} {
# Pd has a generic preferences system, that we can use
proc ::deken::set_installpath {installdir} {
set ::deken::installpath $installdir
::pd_guiprefs::write dekenpath $installdir
}
}
set ::deken::backends [list]
proc ::deken::register {fun} {
set ::deken::backends [linsert $::deken::backends 0 $fun]
}
proc ::deken::gettmpdir {} {
proc _iswdir {d} { expr [file isdirectory $d] * [file writable $d] }
set tmpdir ""
catch {set tmpdir $::env(TRASH_FOLDER)} ;# very old Macintosh. Mac OS X doesn't have this.
if {[_iswdir $tmpdir]} {return $tmpdir}
catch {set tmpdir $::env(TMP)}
if {[_iswdir $tmpdir]} {return $tmpdir}
catch {set tmpdir $::env(TEMP)}
if {[_iswdir $tmpdir]} {return $tmpdir}
set tmpdir "/tmp"
set tmpdir [pwd]
if {[_iswdir $tmpdir]} {return $tmpdir}
}
proc ::deken::vbs_unzipper {zipfile {path .}} {
## this is w32 only
if { "Windows" eq "$::deken::platform(os)" } { } { return 0 }
if { "" eq $::deken::_vbsunzip } {
set ::deken::_vbsunzip [ file join [::deken::gettmpdir] unzip.vbs ]
}
if {[file exists $::deken::_vbsunzip]} {} {
## no script yet, create one
set script {
Set fso = CreateObject("Scripting.FileSystemObject")
'The location of the zip file.
ZipFile = fso.GetAbsolutePathName(WScript.Arguments.Item(0))
'The folder the contents should be extracted to.
ExtractTo = fso.GetAbsolutePathName(WScript.Arguments.Item(1))
'If the extraction location does not exist create it.
If NOT fso.FolderExists(ExtractTo) Then
fso.CreateFolder(ExtractTo)
End If
'Extract the contants of the zip file.
set objShell = CreateObject("Shell.Application")
set FilesInZip=objShell.NameSpace(ZipFile).items
objShell.NameSpace(ExtractTo).CopyHere(FilesInZip)
Set fso = Nothing
Set objShell = Nothing
}
if {![catch {set fileId [open $::deken::_vbsunzip "w"]}]} {
puts $fileId $script
close $fileId
}
}
if {[file exists $::deken::_vbsunzip]} {} {
## still no script, give up
return 0
}
## try to call the script
if { [ catch { exec cscript $::deken::_vbsunzip $zipfile .} stdout ] } {
::pdwindow::debug "\[deken\] VBS-unzip: $::deken::_vbsunzip\n$stdout\n"
return 0
}
return 1
}
set ::deken::_vbsunzip ""
proc ::deken::get_tmpfilename {{path ""}} {
for {set i 0} {true} {incr i} {
set tmpfile [file join ${path} dekentmp.${i}]
if {![file exists $tmpfile]} {
return $tmpfile
}
}
}
proc ::deken::get_writable_dir {paths} {
set fs [file separator]
set access [list RDWR CREAT EXCL TRUNC]
foreach p $paths {
set tmpfile [::deken::get_tmpfilename $p]
# try creating tmpfile
if {![catch {open $tmpfile $access} channel]} {
close $channel
file delete $tmpfile
return $p
}
}
return
}
# find an install path, either from prefs or on the system
# returns an empty string if nothing was found
proc ::deken::find_installpath {{ignoreprefs false}} {
set installpath ""
if { [ info exists ::deken::installpath ] && !$ignoreprefs } {
## any previous choice?
set installpath [ ::deken::get_writable_dir [list $::deken::installpath ] ]
}
if { "$installpath" == "" } {
## search the default paths
set installpath [ ::deken::get_writable_dir $::sys_staticpath ]
}
if { "$installpath" == "" } {
# let's use the first of $::sys_staticpath, if it does not exist yet
set userdir [lindex $::sys_staticpath 0]
if { [file exists ${userdir} ] } {} {
set installpath $userdir
}
}
return $installpath
}
# list-reverter (compat for tcl<8.5)
if {[info command lreverse] == ""} {
proc lreverse list {
set res {}
set i [llength $list]
while {$i} {
lappend res [lindex $list [incr i -1]]
}
set res
} ;# RS
}
set ::deken::platform(os) $::tcl_platform(os)
set ::deken::platform(machine) $::tcl_platform(machine)
set ::deken::platform(bits) [ expr [ string length [ format %X -1 ] ] * 4 ]
# normalize W32 OSs
if { [ string match "Windows *" "$::deken::platform(os)" ] > 0 } {
# we are not interested in the w32 flavour, so we just use 'Windows' for all of them
set ::deken::platform(os) "Windows"
}
# normalize W32 CPUs
if { "Windows" eq "$::deken::platform(os)" } {
# in redmond, intel only produces 32bit CPUs,...
if { "intel" eq "$::deken::platform(machine)" } { set ::deken::platform(machine) "i686" }
# ... and all 64bit CPUs are manufactured by amd
#if { "amd64" eq "$::deken::platform(machine)" } { set ::deken::platform(machine) "x86_64" }
}
# console message to let them know we're loaded
## but only if we are being called as a plugin (not as built-in)
if { "" != "$::current_plugin_loadpath" } {
::pdwindow::post [format [_ "\[deken\] deken-plugin.tcl (Pd externals search) loaded from %s." ] $::current_plugin_loadpath ]
::pdwindow::post "\n"
}
::pdwindow::verbose 0 [format [_ "\[deken\] Platform detected: %s" ] $::deken::platform(os)-$::deken::platform(machine)-$::deken::platform(bits)bit ]
::pdwindow::verbose 0 "\n"
# architectures that can be substituted for eachother
array set ::deken::architecture_substitutes {}
set ::deken::architecture_substitutes(x86_64) [list "amd64" ]
set ::deken::architecture_substitutes(amd64) [list "x86_64" ]
set ::deken::architecture_substitutes(i686) [list "i586" "i386"]
set ::deken::architecture_substitutes(i586) [list "i386"]
set ::deken::architecture_substitutes(armv6l) [list "armv6" "arm"]
set ::deken::architecture_substitutes(armv7l) [list "armv7" "armv6l" "armv6" "arm"]
set ::deken::architecture_substitutes(PowerPC) [list "ppc"]
set ::deken::architecture_substitutes(ppc) [list "PowerPC"]
# try to set install path when plugin is loaded
set ::deken::installpath [::deken::find_installpath]
proc ::deken::set_platform {os machine bits floatwidth} {
if { $os != $::deken::platform(os) ||
$machine != $::deken::platform(machine) ||
$bits != $::deken::platform(bits)} {
set ::deken::platform(os) ${os}
set ::deken::platform(machine) ${machine}
set ::deken::platform(bits) ${bits}
::pdwindow::verbose 1 [format [_ "\[deken\] Platform re-detected: %s" ] ${os}-${machine}-${bits}bit ]
::pdwindow::verbose 1 "\n"
}
}
proc ::deken::status {{msg ""}} {
#variable mytoplevelref
#$mytoplevelref.results insert end "$msg\n"
#$mytoplevelref.status.label -text "$msg"
after cancel $::deken::statustimer
if {"" ne $msg} {
set ::deken::statustext "STATUS: $msg"
set ::deken::statustimer [after 5000 [list set ::deken::statustext ""]]
} {
set ::deken::statustext ""
}
}
proc ::deken::scrollup {} {
variable mytoplevelref
$mytoplevelref.results see 0.0
}
proc ::deken::post {msg {tag ""}} {
variable mytoplevelref
$mytoplevelref.results insert end "$msg\n" $tag
$mytoplevelref.results see end
}
proc ::deken::clearpost {} {
variable mytoplevelref
$mytoplevelref.results delete 1.0 end
}
proc ::deken::bind_posttag {tag key cmd} {
variable mytoplevelref
$mytoplevelref.results tag bind $tag $key $cmd
}
proc ::deken::highlightable_posttag {tag} {
variable mytoplevelref
::deken::bind_posttag $tag <Enter> \
"$mytoplevelref.results tag add highlight [ $mytoplevelref.results tag ranges $tag ]"
::deken::bind_posttag $tag <Leave> \
"$mytoplevelref.results tag remove highlight [ $mytoplevelref.results tag ranges $tag ]"
# make sure that the 'highlight' tag is topmost
$mytoplevelref.results tag raise highlight
}
proc ::deken::prompt_installdir {} {
set installdir [tk_chooseDirectory -title [_ "Install externals to directory:"] \
-initialdir $::fileopendir -parent .externals_searchui]
if { "$installdir" != "" } {
::deken::set_installpath $installdir
return 1
}
return 0
}
proc ::deken::update_searchbutton {mytoplevel} {
if { [$mytoplevel.searchbit.entry get] == "" } {
$mytoplevel.searchbit.button configure -text [_ "Show all" ]
} {
$mytoplevel.searchbit.button configure -text [_ "Search" ]
}
}
proc ::deken::progress {x} {
::deken::post "= ${x}%"
}
# this function gets called when the menu is clicked
proc ::deken::open_searchui {mytoplevel} {
if {[winfo exists $mytoplevel]} {
wm deiconify $mytoplevel
raise $mytoplevel
} else {
::deken::create_dialog $mytoplevel
$mytoplevel.results tag configure error -foreground red
$mytoplevel.results tag configure warn -foreground orange
$mytoplevel.results tag configure info -foreground grey
$mytoplevel.results tag configure highlight -foreground blue
$mytoplevel.results tag configure archmatch
$mytoplevel.results tag configure noarchmatch -foreground grey
}
::deken::post [_ "To get a list of all available externals, try an empty search."] info
}
# build the externals search dialog window
proc ::deken::create_dialog {mytoplevel} {
toplevel $mytoplevel -class DialogWindow
variable mytoplevelref $mytoplevel
wm title $mytoplevel [_ "Find externals"]
wm geometry $mytoplevel 670x550
wm minsize $mytoplevel 230 360
wm transient $mytoplevel
$mytoplevel configure -padx 10 -pady 5
if {$::windowingsystem eq "aqua"} {
$mytoplevel configure -menu $::dialog_menubar
}
frame $mytoplevel.searchbit
pack $mytoplevel.searchbit -side top -fill x
entry $mytoplevel.searchbit.entry -font 18 -relief sunken -highlightthickness 1 -highlightcolor blue
pack $mytoplevel.searchbit.entry -side left -padx 6 -fill x -expand true
bind $mytoplevel.searchbit.entry <Key-Return> "::deken::initiate_search $mytoplevel"
bind $mytoplevel.searchbit.entry <KeyRelease> "::deken::update_searchbutton $mytoplevel"
focus $mytoplevel.searchbit.entry
button $mytoplevel.searchbit.button -text [_ "Show all"] -default active -command "::deken::initiate_search $mytoplevel"
pack $mytoplevel.searchbit.button -side right -padx 6 -pady 3 -ipadx 10
frame $mytoplevel.warning
pack $mytoplevel.warning -side top -fill x
label $mytoplevel.warning.label -text [_ "Only install externals uploaded by people you trust."]
pack $mytoplevel.warning.label -side left -padx 6
frame $mytoplevel.status
pack $mytoplevel.status -side bottom -fill x
label $mytoplevel.status.label -textvariable ::deken::statustext
pack $mytoplevel.status.label -side left -padx 6
text $mytoplevel.results -takefocus 0 -cursor hand2 -height 100 -yscrollcommand "$mytoplevel.results.ys set"
scrollbar $mytoplevel.results.ys -orient vertical -command "$mytoplevel.results yview"
pack $mytoplevel.results.ys -side right -fill y
pack $mytoplevel.results -side top -padx 6 -pady 3 -fill both -expand true
if { [ catch {
ttk::progressbar $mytoplevel.progress -orient horizontal -length 640 -maximum 100 -mode determinate -variable ::deken::progressvar } stdout ] } {
} {
pack $mytoplevel.progress -side bottom
proc ::deken::progress {x} {
set ::deken::progressvar $x
}
}
}
proc ::deken::initiate_search {mytoplevel} {
# let the user know what we're doing
::deken::clearpost
::deken::post [_ "Searching for externals..."]
set ::deken::progressvar 0
# make the ajax call
if { [ catch {
set results [::deken::search_for [$mytoplevel.searchbit.entry get]]
} stdout ] } {
::pdwindow::debug [format [_ "\[deken\]: online? %s" ] $stdout ]
::pdwindow::debug "\n"
::deken::status [_ "Unable to perform search. Are you online?" ]
} else {
# delete all text in the results
::deken::clearpost
if {[llength $results] != 0} {
set counter 0
# build the list UI of results
foreach r $results {
::deken::show_result $mytoplevel $counter $r 1
incr counter
}
foreach r $results {
::deken::show_result $mytoplevel $counter $r 0
incr counter
}
::deken::scrollup
} else {
::deken::post [_ "No matching externals found. Try using the full name e.g. 'freeverb'." ]
}
}}
# display a single found entry
proc ::deken::show_result {mytoplevel counter result showmatches} {
foreach {title cmd match comment status} $result {break}
set tag ch$counter
#if { [ ($match) ] } { set matchtag archmatch } { set matchtag noarchmatch }
set matchtag [expr $match?"archmatch":"noarchmatch" ]
if {($match == $showmatches)} {
set comment [string map {"\n" "\n\t"} $comment]
::deken::post "$title\n\t$comment\n" [list $tag $matchtag]
::deken::highlightable_posttag $tag
::deken::bind_posttag $tag <Enter> "+::deken::status $status"
::deken::bind_posttag $tag <1> "$cmd"
}
}
# handle a clicked link
proc ::deken::clicked_link {URL filename} {
## make sure that the destination path exists
### if ::deken::installpath is set, use the first writable item
### if not, get a writable item from one of the searchpaths
### if this still doesn't help, ask the user
set installdir [::deken::find_installpath]
set extname [lindex [split $filename "-"] 0]
if { "$installdir" == "" } {
if {[namespace exists ::pd_docsdir] && [::pd_docsdir::externals_path_is_valid]} {
# if the docspath is set, try the externals subdir
set installdir [::pd_docsdir::get_externals_path]
} else {
# ask the user (and remember the decision)
::deken::prompt_installdir
set installdir [ ::deken::get_writable_dir [list $::deken::installpath ] ]
}
}
while {1} {
if { "$installdir" == "" } {
set msg [_ "Please select a (writable) installation directory!"]
set _args "-message $msg -type retrycancel -default retry -icon warning -parent .externals_searchui"
switch -- [eval tk_messageBox ${_args}] {
cancel {return}
retry {
if {[::deken::prompt_installdir]} {
set installdir $::deken::installpath
} else {
continue
}
}
}
} else {
set msg [_ "Install %s to %s?" ]
set _args "-message \"[format $msg $extname $installdir]\" -type yesnocancel -default yes -icon question -parent .externals_searchui"
switch -- [eval tk_messageBox ${_args}] {
cancel {return}
yes { }
no {
set prevpath $::deken::installpath
if {[::deken::prompt_installdir]} {
set keepprevpath 1
set installdir $::deken::installpath
# if docsdir is set & the install path is valid,
# saying "no" is temporary to ensure the docsdir
# hierarchy remains, use the Path dialog to override
if {[namespace exists ::pd_docsdir] && [::pd_docsdir::path_is_valid] &&
[file writable [file normalize $prevpath]] } {
set keepprevpath 0
}
if {$keepprevpath} {
set ::deken::installpath $prevpath
}
} else {
continue
}
}
}
}
if { "$installdir" != "" } {
# try creating the installdir...just in case
if { [ catch { file mkdir $installdir } ] } {}
}
# check whether this is a writable directory
set installdir [ ::deken::get_writable_dir [list $installdir ] ]
if { "$installdir" != "" } {
# stop looping if we've found our dir
break
}
}
set fullpkgfile "$installdir/$filename"
::deken::clearpost
::deken::post [format [_ "Commencing downloading of:\n%1\$s\nInto %2\$s..."] $URL $installdir] ]
set fullpkgfile [::deken::download_file $URL $fullpkgfile]
if { "$fullpkgfile" eq "" } {
::deken::post [_ "aborting."] info
return
}
set PWD [ pwd ]
cd $installdir
set success 1
if { [ string match *.zip $fullpkgfile ] } then {
if { [ ::deken::vbs_unzipper $fullpkgfile $installdir ] } { } {
if { [ catch { exec unzip -uo $fullpkgfile } stdout ] } {
::pdwindow::debug "$stdout\n"
set success 0
}
}
} elseif { [ string match *.tar.* $fullpkgfile ]
|| [ string match *.tgz $fullpkgfile ]
} then {
if { [ catch { exec tar xf $fullpkgfile } stdout ] } {
::pdwindow::debug "$stdout\n"
set success 0
}
}
cd $PWD
if { $success > 0 } {
::deken::post [format [_ "Successfully unzipped %1\$s into %2\$s."] $filename $installdir ]
::deken::post ""
catch { file delete $fullpkgfile }
} else {
# Open both the fullpkgfile folder and the zipfile itself
# NOTE: in tcl 8.6 it should be possible to use the zlib interface to actually do the unzip
::deken::post [_ "Unable to extract package automatically." ] warn
::deken::post [_ "Please perform the following steps manually:" ]
::deken::post [format [_ "1. Unzip %s." ] $fullpkgfile ]
pd_menucommands::menu_openfile $fullpkgfile
::deken::post [format [_ "2. Copy the contents into %s." ] $installdir]
::deken::post ""
pd_menucommands::menu_openfile $installdir
}
# add to the search paths? bail if the version of pd doesn't support it
if {[uplevel 1 info procs add_to_searchpaths] eq ""} {return}
set extpath [file join $installdir $extname]
if {![file exists $extpath]} {
::deken::post [_ "Unable to add %s to search paths"] $extname
return
}
set msg [_ "Add %s to the Pd search paths?" ]
set _args "-message \"[format $msg $extname]\" -type yesno -default yes -icon question -parent .externals_searchui"
switch -- [eval tk_messageBox ${_args}] {
yes {
add_to_searchpaths [file join $installdir $extname]
::deken::post [format [_ "Added %s to search paths"] $extname]
# if this version of pd supports it, try refreshing the helpbrowser
if {[uplevel 1 info procs ::helpbrowser::refresh] ne ""} {
::helpbrowser::refresh
}
}
no {
return
}
}
}
# download a file to a location
# http://wiki.tcl.tk/15303
proc ::deken::download_file {URL outputfilename} {
set downloadfilename [::deken::get_tmpfilename [file dirname $outputfilename] ]
set f [open $downloadfilename w]
fconfigure $f -translation binary
set httpresult [::http::geturl $URL -binary true -progress "::deken::download_progress" -channel $f]
set ncode [::http::ncode $httpresult]
if {[expr $ncode != 200 ]} {
## FIXXME: we probably should handle redirects correctly
# tcl-format
::deken::post [format [_ "Unable to download from %1\$s \[%2\$s\]" ] $URL $ncode ] error
set outputfilename ""
}
flush $f
close $f
::http::cleanup $httpresult
if { "$outputfilename" != "" } {
catch { file delete $outputfilename }
if {[file exists $outputfilename]} {
::deken::post [format [_ "Unable to remove stray file %s" ] $outputfilename ] error
set outputfilename ""
}
}
if { $outputfilename != "" && "$outputfilename" != "$downloadfilename" } {
if {[catch { file rename $downloadfilename $outputfilename}]} {
::deken::post [format [_ "Unable to rename downloaded file to %s" ] $outputfilename ] error
set outputfilename ""
}
}
if { "$outputfilename" eq "" } {
file delete $downloadfilename
}
return $outputfilename
}
# print the download progress to the results window
proc ::deken::download_progress {token total current} {
if { $total > 0 } {
::deken::progress [expr {round(100 * (1.0 * $current / $total))}]
}
}
# parse a deken-packagefilename into it's components: <pkgname>[-v<version>-]?{(<arch>)}-externals.zip
# return: list <pkgname> <version> [list <arch> ...]
proc ::deken::parse_filename {filename} {
set pkgname $filename
set archs [list]
set version ""
if { [ regexp {(.*)-externals\..*} $filename _ basename] } {
set pkgname $basename
# basename <pkgname>[-v<version>-]?{(<arch>)}
## strip off the archs
set baselist [split $basename () ]
# get pkgname + version
set pkgver [lindex $baselist 0]
if { ! [ regexp "(.*)-(.*)-" $pkgver _ pkgname version ] } {
set pkgname $pkgver
set $version ""
}
# get archs
foreach {a _} [lreplace $baselist 0 0] { lappend archs $a }
}
return [list $pkgname $version $archs]
}
# test for platform match with our current platform
proc ::deken::architecture_match {archs} {
# if there are no architecture sections this must be arch-independent
if { ! [llength $archs] } { return 1}
# check each architecture in our list against the current one
foreach arch $archs {
if { [ regexp -- {(.*)-(.*)-(.*)} $arch _ os machine bits ] } {
if { "${os}" eq "$::deken::platform(os)" } {
## so OS matches
## check whether the CPU matches as well
if { "${machine}" eq "$::deken::platform(machine)" } {return 1}
## not exactly; see whether it is in the list of compat CPUs
if {[llength [array names ::deken::architecture_substitutes -exact $::deken::platform(machine)]]} {
foreach cpu $::deken::architecture_substitutes($::deken::platform(machine)) {
if { "${machine}" eq "${cpu}" } {return 1}
}
}
}
}
}
return 0
}
proc ::deken::search_for {term} {
::deken::status [format [_ "searching for '%s'" ] $term ]
set result [list]
foreach searcher $::deken::backends {
set result [concat $result [ $searcher $term ] ]
}
return $result
}
# create an entry for our search in the "help" menu (or re-use an existing one)
set mymenu .menubar.help
if { [catch {
$mymenu entryconfigure [_ "Find externals"] -command {::deken::open_searchui .externals_searchui}
} _ ] } {
$mymenu add separator
$mymenu add command -label [_ "Find externals"] -command {::deken::open_searchui .externals_searchui}
}
# bind all <$::modifier-Key-s> {::deken::open_helpbrowser .helpbrowser2}
# http://rosettacode.org/wiki/URL_decoding#Tcl
proc urldecode {str} {
set specialMap {"[" "%5B" "]" "%5D"}
set seqRE {%([0-9a-fA-F]{2})}
set replacement {[format "%c" [scan "\1" "%2x"]]}
set modStr [regsub -all $seqRE [string map $specialMap $str] $replacement]
return [encoding convertfrom utf-8 [subst -nobackslash -novariable $modStr]]
}
# ####################################################################
# search backends
# ####################################################################
## API draft
# each backend is implemented via a single proc
## that takes a single argument "term", the term to search fo
## an empty term indicates "search for all"
# the backend then returns a list of results
## each result is a list of the following elements:
## <title> <cmd> <match> <comment> <status>
## title: the primary name to display
## (the user will select the element by this name)
## e.g. "frobscottle-1.10 (Linux/amd64)"
## cmd : a command that will install the selected library
## e.g. "[list ::deken::clicked_link http://bfg.org/frobscottle-1.10.zip frobscottle-1.10.zip]"
## match: an integer indicating whether this entry is actually usable
## on this host (1) or not (0)
## comment: secondary line to display
## e.g. "uploaded by the BFG in 1982"
## status: line to display in the status-line
## e.g. "http://bfg.org/frobscottle-1.10.zip"
# note on sorting:
## the results ought to be sorted with most up-to-date first
## (filtering based on architecture-matches should be ignored when sorting!)
# note on helper-functions:
## you can put whatever you like into <cmd>, even your own proc
# registration
## to register a new search function, call `::deken::register $myfun`
# namespace
## you are welcome to use the ::deken::search:: namespace
## ####################################################################
## searching puredata.info
proc ::deken::search::puredata.info {term} {
set searchresults [list]
set dekenserver "http://deken.puredata.info/search"
catch {set dekenserver $::env(DEKENSERVER)} stdout
set term [ join $term "&name=" ]
set httpaccept [::http::config -accept]
::http::config -accept text/tab-separated-values
set token [::http::geturl "${dekenserver}?name=${term}"]
::http::config -accept $httpaccept
set ncode [::http::ncode $token]
if {[expr $ncode != 200 ]} {
set err [::http::code $token]
::pdwindow::debug [format "\[deken\]: %s %s" [_ "Unable to perform search." ] ${err} ]
::pdwindow::debug "\n"
return {}
}
set contents [::http::data $token]
set splitCont [split $contents "\n"]
# loop through the resulting tab-delimited table
foreach ele $splitCont {
set ele [ string trim $ele ]
if { "" ne $ele } {
set sele [ split $ele "\t" ]
set name [ string trim [ lindex $sele 0 ]]
set URL [ string trim [ lindex $sele 1 ]]
set creator [ string trim [ lindex $sele 2 ]]
set date [regsub -all {[TZ]} [ string trim [ lindex $sele 3 ] ] { }]
set decURL [urldecode $URL]
set filename [ file tail $URL ]
set cmd [list ::deken::clicked_link $decURL $filename]
set pkgverarch [ ::deken::parse_filename $filename ]
set archs [lindex $pkgverarch 2]
set match [::deken::architecture_match "$archs" ]
set comment [format [_ "Uploaded by %1\$s @ %2\$s" ] $creator $date ]
set status $URL
set sortname [lindex $pkgverarch 0]--[lindex $pkgverarch 1]--$date
set res [list $name $cmd $match $comment $status $filename]
lappend searchresults $res
}
}
::http::cleanup $token
return [lsort -dictionary -decreasing -index 5 $searchresults ]
}
::deken::register ::deken::search::puredata.info
}
|