/usr/lib/puredata/tcl/pd_guiprefs.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 | #
# Copyright (c) 1997-2009 Miller Puckette.
# Copyright (c) 2011 Yvan Volochine.
# Copyright (c) 2017 IOhannes m zmölnig.
# Copyright (c) 2008 WordTech Communications LLC.
# License: standard Tcl license, http://www.tcl.tk/software/tcltk/license.html
package provide pd_guiprefs 0.1
namespace eval ::pd_guiprefs:: {
namespace export init
namespace export write_recentfiles
namespace export update_recentfiles
namespace export write_loglevel
}
# preference keys
set ::pd_guiprefs::recentfiles_key ""
set ::pd_guiprefs::loglevel_key "loglevel"
# platform specific
set ::pd_guiprefs::domain ""
set ::pd_guiprefs::configdir ""
set ::pd_guiprefs::recentfiles_is_array false
#################################################################
# perferences storage locations
#
# legacy
# registry
# HKEY_CURRENT_USER\Software\Pure-Data <key>:<value>
# domain: HKEY_CURRENT_USER\Software\Pure-Data
# plist
# org.puredata <key> <value>
# domain: org.puredata
# linux:
# ~/.config/pure-data/<key>.conf
# domain: ~/.config/pure-data/
#
# new
# plist
# org.puredata.pd.pd-gui <key> <value>
# domain: org.puredata.pd-gui
# registry
# HKEY_CURRENT_USER\Software\Pure-Data\org.puredata <key>:<value>
# domain: org.puredata.pd-gui
# file
# Linux: ~/.config/pd/org.puredata/<key>.conf
# - env(XDG_CONFIG_HOME)=~/.config/
# - env(PD_CONFIG_DIR)=~/.config/pd/
# - domain=org.puredata.pd-gui
# OSX : ~/Library/Preferences/Pd/org.puredata/<key>.conf
# - env(PD_CONFIG_DIR)=~/Library/Preferences/Pd/
# - domain=org.puredata.pd-gui
# W32 : %AppData%\Pd\.config\org.puredata\<key>.conf
# - env(PD_CONFIG_DIR)=%AppData%\Pd\.config
# - domain=org.puredata.pd-gui
#
#################################################################
#################################################################
# global procedures
#################################################################
# ------------------------------------------------------------------------------
# init preferences
#
proc ::pd_guiprefs::init {} {
set ::pd_guiprefs::domain org.puredata.pd.pd-gui
switch -- $::platform {
"Darwin" {
set backend "plist"
}
"W32" {
set backend "registry"
}
default {
set backend "file"
}
}
# let the user force the cross-platform 'file' backend
if {[info exists ::env(PD_CONFIG_DIR)]} {
set backend "file"
}
switch -- $backend {
"plist" {
# macOS has a "Open Recent" menu with 10 recent files (others have 5 inlined)
set ::pd_guiprefs::recentfiles_key "NSRecentDocuments"
set ::total_recentfiles 10
# store recent files as an array, not a string
set ::pd_guiprefs::recentfiles_is_array true
# ------------------------------------------------------------------------------
# macOS: read a plist file using the 'defaults' command
#
proc ::pd_guiprefs::get_config {adomain {akey} {arr false}} {
if {![catch {exec defaults read $adomain $akey} conf]} {
if {$arr} {
set conf [plist_array_to_tcl_list $conf]
}
} else {
# value not found, so set empty value
if {$arr} {
# initialize w/ empty array for NSRecentDocuments, etc
exec defaults write $adomain $akey -array
set conf {}
} else {
# not an array
exec defaults write $adomain $akey ""
set conf ""
}
}
return $conf
}
# ------------------------------------------------------------------------------
# macOS: write configs to plist file using the 'defaults' command
# if $arr is true, we write an array
#
proc ::pd_guiprefs::write_config {data {adomain} {akey} {arr false}} {
if {$arr} {
# FIXME empty and write again so we don't lose the order
if {[catch {exec defaults write $adomain $akey -array} errorMsg]} {
puts "write_config $akey: $errorMsg\n"
}
foreach item $data {
set escaped [escape_for_plist $item]
if {[catch {eval exec defaults write $adomain $akey -array-add $escaped} errorMsg]} {
puts "write_config $akey: $errorMsg\n"
}
}
} else {
set escaped [escape_for_plist $data]
if {[catch {exec defaults write $adomain $akey $escaped} errorMsg]} {
puts "write_config $akey: $errorMsg\n"
}
}
return
}
# Disable window state saving by default for 10.7+ as there is a chance
# pd will hang on start due to conflicting patch resources until the state
# is purged. State saving will still work, it just has to be explicitly
# asked for by holding the Option/Alt button when quitting via the File
# menu or with the Cmd+Q key binding.
exec defaults write $::pd_guiprefs::domain NSQuitAlwaysKeepsWindows -bool false
}
"registry" {
# windows uses registry
set ::pd_guiprefs::registrypath "HKEY_CURRENT_USER\\Software\\Pure-Data"
set ::pd_guiprefs::recentfiles_key "RecentDocs"
# ------------------------------------------------------------------------------
# w32: read in the registry
#
proc ::pd_guiprefs::get_config {adomain {akey} {arr false}} {
package require registry
set adomain [join [list ${::pd_guiprefs::registrypath} ${adomain}] \\]
if {![catch {registry get ${adomain} $akey} conf]} {
return [expr {$conf}]
}
return {}
}
# ------------------------------------------------------------------------------
# w32: write configs to registry
# if $arr is true, we write an array
#
proc ::pd_guiprefs::write_config {data {adomain} {akey} {arr false}} {
package require registry
# FIXME: ugly
set adomain [join [list ${::pd_guiprefs::registrypath} ${adomain}] \\]
if {$arr} {
if {[catch {registry set ${adomain} $akey $data multi_sz} errorMsg]} {
::pdwindow::error "write_config $data $akey: $errorMsg\n"
}
} else {
if {[catch {registry set ${adomain} $akey $data sz} errorMsg]} {
::pdwindow::error "write_config $data $akey: $errorMsg\n"
}
}
return
}
}
"file" {
set ::pd_guiprefs::recentfiles_key "recentfiles"
prepare_configdir ${::pd_guiprefs::domain}
# ------------------------------------------------------------------------------
# linux: read a config file and return its lines splitted.
#
proc ::pd_guiprefs::get_config {adomain {akey} {arr false}} {
return [::pd_guiprefs::get_config_file $adomain $akey $arr]
}
# ------------------------------------------------------------------------------
# linux: write configs to USER_APP_CONFIG_DIR
# $arr is true if the data needs to be written in an array
#
proc ::pd_guiprefs::write_config {data {adomain} {akey} {arr false}} {
return [::pd_guiprefs::write_config_file $data $adomain $akey $arr]
}
}
default {
::pdwindow::error "Unknown gui preferences backend '$backend'.\n"
}
}
# init gui preferences
set ::recentfiles_list [::pd_guiprefs::init_config $::pd_guiprefs::domain \
$::pd_guiprefs::recentfiles_key \
$::recentfiles_list \
$::pd_guiprefs::recentfiles_is_array]
set ::loglevel [::pd_guiprefs::init_config $::pd_guiprefs::domain \
$::pd_guiprefs::loglevel_key \
$::loglevel]
}
# ------------------------------------------------------------------------------
# read a config file and return its lines splitted.
#
proc ::pd_guiprefs::get_config_file {adomain {akey} {arr false}} {
set filename [file join ${::pd_guiprefs::configdir} ${adomain} ${akey}.conf]
set conf {}
if {
[file exists $filename] == 1
&& [file readable $filename]
} {
set fl [open $filename r]
while {[gets $fl line] >= 0} {
lappend conf $line
}
close $fl
}
return $conf
}
# ------------------------------------------------------------------------------
# write configs to USER_APP_CONFIG_DIR
# $arr is true if the data needs to be written in an array
#
proc ::pd_guiprefs::write_config_file {data {adomain} {akey} {arr false}} {
::pd_guiprefs::prepare_domain ${adomain}
# right now I (yvan) assume that data are just \n separated, i.e. no keys
set data [join $data "\n"]
set filename [file join ${::pd_guiprefs::configdir} ${adomain} ${akey}.conf]
if {[catch {set fl [open $filename w]} errorMsg]} {
::pdwindow::error "write_config $data $akey: $errorMsg\n"
} else {
puts -nonewline $fl $data
close $fl
}
}
#################################################################
# main read/write procedures
#################################################################
## these are stubs that will be overwritten in ::pd_guiprefs::init()
proc ::pd_guiprefs::write_config {data {adomain} {akey} {arr false}} {
::pdwindow::error "::pd_guiprefs::write_config not implemented for $::platform\n"
}
proc ::pd_guiprefs::get_config {adomain {akey} {arr false}} {
::pdwindow::error "::pd_guiprefs::get_config not implemented for $::platform\n"
}
# simple API (with a default domain)
proc ::pd_guiprefs::write {key data {arr false} {domain {}}} {
if {"" eq $domain} { set domain ${::pd_guiprefs::domain} }
set result [::pd_guiprefs::write_config $data $domain $key $arr]
return $result
}
proc ::pd_guiprefs::read {key {arr false} {domain {}}} {
if {"" eq $domain} { set domain ${::pd_guiprefs::domain} }
set result [::pd_guiprefs::get_config $domain $key $arr]
return $result
}
#################################################################
# utils
#################################################################
# ------------------------------------------------------------------------------
# file-backend only! : look for pd config directory and create it if needed
#
proc ::pd_guiprefs::prepare_configdir {domain} {
set confdir ""
switch -- $::platform {
"W32" {
# W32 uses %AppData%/Pd/.config dir
# FIXXME: how to create hidden directories on W32??
set confdir [file join $::env(AppData) Pd .config]
}
"OSX" {
set confdir [file join ~ Library Preferences Pd]
}
default {
# linux uses ~/.config/pure-data dir
set confdir [file join ~ .config Pd]
if {[info exists ::env(XDG_CONFIG_HOME)]} {
set confdir [file join $::env(XDG_CONFIG_HOME) pd]
}
}
}
# let the user override the Pd-config-path
if {[info exists ::env(PD_CONFIG_DIR)]} {
if { "$::env(PD_CONFIG_DIR)" != "" } {
set confdir $::env(PD_CONFIG_DIR)
}
}
set ::pd_guiprefs::configdir $confdir
set ::pd_guiprefs::domain $domain
return [::pd_guiprefs::prepare_domain ${::pd_guiprefs::domain}]
}
proc ::pd_guiprefs::prepare_domain {{domain {}}} {
if { "${domain}" == "" } {
set domain ${::pd_guiprefs::domain}
}
if { [catch {
set fullconfigdir [file join ${::pd_guiprefs::configdir} ${domain}]
if {[file isdirectory $fullconfigdir] != 1} {
file mkdir $fullconfigdir
}
}]} {
::pdwindow::error "$::pd_guiprefs::domain was *NOT* created in $confdir.\n"
}
return $domain
}
# ------------------------------------------------------------------------------
# convenience proc to init prefs value, returns default if not found
#
proc ::pd_guiprefs::init_config {adomain akey {default ""} {arr false}} {
set conf ""
catch {set conf [::pd_guiprefs::get_config $adomain $akey $arr]}
if {$conf eq ""} {set conf $default}
return $conf
}
# ------------------------------------------------------------------------------
# convert array returned by macOS 'defaults' command into a tcl list (thanks hc)
#
# ie. defaults output of
# (
# "/path1/hello.pd",
# "/path2/world.pd",
# "/foo/bar/baz.pd"
# )
#
# becomes: "/path1/hello.pd /path2/world.pd /foo/bar/baz.pd"
#
proc ::pd_guiprefs::plist_array_to_tcl_list {arr} {
set result {}
set filelist $arr
regsub -all -- {("?),\s+("?)} $filelist {\1 \2} filelist
regsub -all -- {\n} $filelist {} filelist
regsub -all -- {^\(} $filelist {} filelist
regsub -all -- {\)$} $filelist {} filelist
regsub -line -- {^'(.*)'$} $filelist {\1} filelist
regsub -all -- {\\\\U} $filelist {\\u} filelist
foreach file $filelist {
set filename [regsub -- {,$} $file {}]
# trim any enclosing single quotes that
# might have been saved previously
set filename [string trim $file ']
lappend result $filename
}
return $result
}
# escape tcl characters & quote with single quotes for macOS 'defaults' command
#
# strings that don't need major quoting pass through & don't need to be quoted
# while others strangely do (found via trial and error), this is ensures the
# single quotes do not pass through and are saved with the string
#
# FIXME:
# * " are not escaped
# * \ seem to be swallowed
# * mixing ' & parens doesn't work
#
# at this point, we hope people don't have too many exotic filenames...
#
proc ::pd_guiprefs::escape_for_plist {str} {
set quote 0
set result $str
regsub -all -- { } $result {\\ } result
set quote [expr [regsub -all -- {'} $result {\\'} result] || $quote]
set quote [expr [regsub -all -- {\(} $result {\\(} result] || $quote]
set quote [expr [regsub -all -- {\)} $result {\\)} result] || $quote]
set quote [expr [regsub -all -- {\[} $result {\\[} result] || $quote]
set quote [expr [regsub -all -- {\]} $result {\\]} result] || $quote]
set quote [expr [regsub -all -- {\{} $result {\\\{} result] || $quote]
set quote [expr [regsub -all -- {\}} $result {\\\}} result] || $quote]
if {$quote} {
return '$result'
} else {
return $result
}
}
#################################################################
# recent files
#################################################################
# ------------------------------------------------------------------------------
# write recent files
#
proc ::pd_guiprefs::write_recentfiles {} {
write_config $::recentfiles_list $::pd_guiprefs::domain \
$::pd_guiprefs::recentfiles_key \
$::pd_guiprefs::recentfiles_is_array
}
# ------------------------------------------------------------------------------
# this is called when opening a document (wheredoesthisshouldgo.tcl)
#
proc ::pd_guiprefs::update_recentfiles {afile {remove false}} {
# remove duplicates first
set index [lsearch -exact $::recentfiles_list $afile]
set ::recentfiles_list [lreplace $::recentfiles_list $index $index]
if {! $remove} {
# insert new one in the beginning and crop the list
set ::recentfiles_list [linsert $::recentfiles_list 0 $afile]
set ::recentfiles_list [lrange $::recentfiles_list 0 $::total_recentfiles]
}
::pd_menus::update_recentfiles_menu
}
#################################################################
# log level
#################################################################
# ------------------------------------------------------------------------------
# write log level
#
proc ::pd_guiprefs::write_loglevel {} {
write_config $::loglevel $::pd_guiprefs::domain $::pd_guiprefs::loglevel_key
}
|