/usr/share/astk/outils.tcl is in code-aster-gui 1.8.4-5.
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 | #########################################################################
# COPYRIGHT (C) 2003 EDF R&D WWW.CODE-ASTER.ORG #
# #
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR #
# MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS #
# PUBLISHED BY THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE #
# LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION. #
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, #
# BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF #
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU #
# GENERAL PUBLIC LICENSE FOR MORE DETAILS. #
# #
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE #
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO : EDF R&D CODE_ASTER, #
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. #
#########################################################################
# $Id: outils.tcl 2309 2006-11-02 15:35:25Z courtois $
#################################################################
proc init_outils {} {
# outils par défaut, connus de l'interface, autoconfigurés...
def_outils
# initialiser la config de l'utilisateur si besoin
set astk::outils(nb) 0
set fich $astk::fic_outils
if { [ file exists $fich ] == 0 } {
set fich [file join $ashare::astkrc_ref outils]
}
set iret [lire_outils $fich]
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (init_outils) retour : $iret"
}
# pour que la suppression de l'outil BSF (maintenant dans
# outils_autocfg) soit transparente pour l'utilisateur
set mod 0
for {set i [expr $astk::outils(nb) - 1]} {$i >= 0} {incr i -1} {
if { $astk::outils($i,nom) == "BSF" } {
set mod 1
suppr_outil_tab $i
}
}
if { $mod == 1 } {
save_outils
}
}
#################################################################
proc init_print {} {
set astk::ihm(print_cmde) {a2ps lpr}
# initialiser la config de l'utilisateur si besoin
set astk::print(nb) 0
set fich $astk::fic_print
set iret [lire_print $fich]
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (init_print) retour : $iret"
}
}
#################################################################
proc lire_outils { fich } {
#set fich $astk::fic_outils
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (lire_outils) Lecture $fich" }
if { [ file exists $fich ] == 0 } {
return 4
}
set iret [ ashare::lire_mc_val $fich mots vale nlu ]
if { $iret != 0 } {
return $iret }
# phase de vérif
# mots-clés reconnus
set mots_cles $ashare::mots(MCF_out)
# mots-clés sous le mot-clé facteur
set mots_smcf $ashare::mots(SSF_out)
append mots_cles $mots_smcf
# les mots-clés sont obligatoires
set pmcs [llength $mots_smcf]
set pmcf [expr [llength $mots_cles] - $pmcs - 1]
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set pres($mcs) 0
}
set nbmcf -1
set nberr 0
for {set j 1} {$j <= $nlu} {incr j} {
#astkrc_version
if { $mots($j) == "astkrc_version" } {
if { $vale($j) != "$ashare::astkrc_version" } {
ashare::mess "erreur" 2 $fich
return PB_astkrc_version
}
} else {
set iv [lsearch -exact $mots_cles $mots($j)]
if { $iv < 0 } {
ashare::mess "erreur" 5 $mots($j)
incr nberr
} else {
incr pres($mots($j))
if { $mots($j) == "nom" } {
incr nbmcf
set astk::outils($nbmcf,$mots($j)) $vale($j)
} else {
set astk::outils($nbmcf,$mots($j)) $vale($j)
}
}
}
}
if { $nbmcf < 0 } {
ashare::mess "erreur" 7 "outil" "tool" ""
}
incr nbmcf
set astk::outils(nb) $nbmcf
# est-ce qu'il manque un mot-clé ?
set sum 0
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set sum [expr $sum + $pres($mcs)]
}
if { $sum != [expr $pmcf+($nbmcf*($pmcs+1))] } {
ashare::mess "erreur" 6 "?" "?" $fich ""
incr nberr
}
if { $nberr > 0 } {
ashare::mess "erreur" 8 $fich
ashare::my_exit 4
}
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (lire_outils) $nbmcf outils" }
return 0
}
# Sauvegarde de la config des outils
#################################################################
proc save_outils { } {
set id [open $astk::fic_outils w]
puts $id "# AUTOMATICALLY GENERATED - DO NOT EDIT !"
puts $id "astkrc_version : $ashare::astkrc_version"
puts $id "#"
set mots_cles $ashare::mots(MCF_out)
append mots_cles $ashare::mots(SSF_out)
for { set i 0 } { $i < $astk::outils(nb) } { incr i } {
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set val $astk::outils($i,$mcs)
if { $val == "" } {
set val "_VIDE"
}
puts $id "$mcs : $val"
}
puts $id "#"
}
close $id
return 0
}
#################################################################
proc lire_print { fich } {
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (lire_print) Lecture $fich" }
if { [ file exists $fich ] == 0 } {
return 4
}
set iret [ ashare::lire_mc_val $fich mots vale nlu ]
if { $iret != 0 } {
return $iret }
# phase de vérif
# mots-clés reconnus
set mots_cles $ashare::mots(MCF_pr)
# mots-clés sous le mot-clé facteur
set mots_smcf $ashare::mots(SSF_pr)
append mots_cles $mots_smcf
# les mots-clés sont obligatoires
set pmcs [llength $mots_smcf]
set pmcf [expr [llength $mots_cles] - $pmcs - 1]
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set pres($mcs) 0
}
set nbmcf -1
set nberr 0
for {set j 1} {$j <= $nlu} {incr j} {
#astkrc_version
if { $mots($j) == "astkrc_version" } {
if { $vale($j) != "$ashare::astkrc_version" } {
ashare::mess "erreur" 2 $fich
return PB_astkrc_version
}
} else {
set iv [lsearch -exact $mots_cles $mots($j)]
if { $iv < 0 } {
ashare::mess "erreur" 5 $mots($j)
incr nberr
} else {
incr pres($mots($j))
if { $mots($j) == "label" } {
incr nbmcf
set astk::print($nbmcf,$mots($j)) $vale($j)
} else {
set astk::print($nbmcf,$mots($j)) $vale($j)
}
}
}
}
if { $nbmcf < 0 } {
ashare::mess "erreur" 7 "imprimante" "printer" "e"
}
incr nbmcf
set astk::print(nb) $nbmcf
# est-ce qu'il manque un mot-clé ?
set sum 0
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set sum [expr $sum + $pres($mcs)]
}
if { $sum != [expr $pmcf+($nbmcf*($pmcs+1))] } {
ashare::mess "erreur" 6 "?" "?" $fich ""
incr nberr
}
if { $nberr > 0 } {
ashare::mess "erreur" 8 $fich
ashare::my_exit 4
}
if { $ashare::dbg >= 4 } {
ashare::log "<DEBUG> (lire_print) $nbmcf imprimantes" }
return 0
}
# Sauvegarde de la config des imprimantes
#################################################################
proc save_print { } {
set id [open $astk::fic_print w]
puts $id "# AUTOMATICALLY GENERATED - DO NOT EDIT !"
puts $id "astkrc_version : $ashare::astkrc_version"
puts $id "#"
set mots_cles $ashare::mots(MCF_pr)
append mots_cles $ashare::mots(SSF_pr)
for { set i 0 } { $i < $astk::print(nb) } { incr i } {
for { set k 0 } { $k < [ llength $mots_cles ] } { incr k } {
set mcs [lindex $mots_cles $k]
set val $astk::print($i,$mcs)
if { $val == "" } {
set val "_VIDE"
}
puts $id "$mcs : $val"
}
puts $id "#"
}
close $id
return 0
}
|