2018-05-16 14:17:27 +03:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
# Tcl ignores the next line -*- tcl -*- \
|
|
|
|
|
exec wish "$0" -- "$@"
|
|
|
|
|
|
|
|
|
|
######################################################
|
|
|
|
|
# Rac GUI
|
2019-08-23 17:31:13 +03:00
|
|
|
|
# 1C RAC (tm) grafical user interface
|
2019-07-24 09:48:07 +03:00
|
|
|
|
# Distributed under GNU Public License
|
2018-05-16 14:17:27 +03:00
|
|
|
|
# Author: Sergey Kalinin svk@nuk-svk.ru
|
2019-08-23 17:31:13 +03:00
|
|
|
|
# Home page: https://nuk-svk.ru
|
|
|
|
|
# Git repos: https://bitbucket.org/svk28/rac-gui
|
2019-07-24 09:48:07 +03:00
|
|
|
|
#
|
2019-08-23 17:31:13 +03:00
|
|
|
|
# version: 1.1.0
|
2019-08-15 09:22:29 +03:00
|
|
|
|
# release: 1
|
2019-07-24 09:48:07 +03:00
|
|
|
|
#
|
2018-05-16 14:17:27 +03:00
|
|
|
|
######################################################
|
2019-08-23 17:31:13 +03:00
|
|
|
|
|
|
|
|
|
package require msgcat
|
|
|
|
|
|
2018-07-02 16:48:23 +03:00
|
|
|
|
# Устанавливаем текущий каталог
|
2018-05-16 14:17:27 +03:00
|
|
|
|
set dir(root) [pwd]
|
2019-07-23 16:25:28 +03:00
|
|
|
|
|
2019-08-30 17:29:01 +03:00
|
|
|
|
# Устанавливаем рабочий каталог, если его нет то создаём.
|
|
|
|
|
# Согласно спецификации XDG проверяем наличие переменных и каталогов
|
|
|
|
|
if [info exists env(XDG_CONFIG_HOME)] {
|
|
|
|
|
set dir(work) [file join $env(XDG_CONFIG_HOME) rac_gui]
|
|
|
|
|
} elseif [file exists [file join $env(HOME) .config]] {
|
|
|
|
|
set dir(work) [file join $env(HOME) .config rac_gui]
|
|
|
|
|
} else {
|
|
|
|
|
set dir(work) [file join $env(HOME) .rac_gui]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if {[file exists $dir(work)] == 0} {
|
2018-05-20 18:03:02 +03:00
|
|
|
|
file mkdir $dir(work)
|
|
|
|
|
}
|
2019-08-30 17:29:01 +03:00
|
|
|
|
# Проверяем старые конфиги и при наличии переносим
|
|
|
|
|
if {[file exists [file join $env(HOME) .rac_gui]] ==1 && $dir(work) ne [file join $env(HOME) .rac_gui]} {
|
|
|
|
|
cd [file join $env(HOME) .rac_gui]
|
|
|
|
|
foreach f [glob -type f *] {
|
|
|
|
|
if {![file exists [file join $dir(work) $f]]} {
|
|
|
|
|
puts "File copy - [file copy $f $dir(work)]"
|
|
|
|
|
file rename $f [list $f old]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cd $env(HOME)
|
|
|
|
|
#file rename -force [file join $env(HOME) .rac_gui] [file join $env(HOME) .rac_gui.old]
|
|
|
|
|
file delete -force [file join $env(HOME) .rac_gui]
|
2019-09-02 20:58:15 +03:00
|
|
|
|
tk_messageBox -message "[::msgcat::mc "All files from old working dir will be moved into new location:"]\n$dir(work)" -icon info -type ok
|
2019-08-30 17:29:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-09-02 20:58:15 +03:00
|
|
|
|
|
2019-08-30 17:29:01 +03:00
|
|
|
|
puts "Work dir is $dir(work)"
|
|
|
|
|
|
2018-07-24 09:56:02 +03:00
|
|
|
|
# каталог с модулями
|
2018-06-15 13:11:09 +03:00
|
|
|
|
set dir(lib) "[file join $dir(root) lib]"
|
2018-05-20 18:03:02 +03:00
|
|
|
|
|
2018-07-02 16:48:23 +03:00
|
|
|
|
# загружаем пользовательский конфиг, если он отсутствует, то копируем дефолтный
|
2018-05-20 18:03:02 +03:00
|
|
|
|
if {[file exists [file join $dir(work) rac_gui.cfg]] ==0} {
|
2019-08-30 17:29:01 +03:00
|
|
|
|
file copy [file join $dir(root) rac_gui.cfg] [file join $dir(work) rac_gui.cfg]
|
2018-05-20 18:03:02 +03:00
|
|
|
|
}
|
|
|
|
|
source [file join $dir(work) rac_gui.cfg]
|
2018-08-06 08:44:13 +03:00
|
|
|
|
|
|
|
|
|
::msgcat::mclocale $default(locale)
|
|
|
|
|
::msgcat::mcload [file join $dir(lib) msg]
|
|
|
|
|
|
2018-06-15 13:11:09 +03:00
|
|
|
|
|
2018-06-22 14:13:19 +03:00
|
|
|
|
set cluster_user ""
|
|
|
|
|
set cluster_pwd ""
|
|
|
|
|
set agent_user ""
|
|
|
|
|
set agent_pwd ""
|
2018-05-16 14:17:27 +03:00
|
|
|
|
## LOAD FILE ##
|
2018-07-02 16:48:23 +03:00
|
|
|
|
# Загружаем модули кроме gui.tcl так как его надо загрузить последним
|
2018-05-16 14:17:27 +03:00
|
|
|
|
foreach modFile [lsort [glob -nocomplain [file join $dir(lib) *.tcl]]] {
|
|
|
|
|
if {[file tail $modFile] ne "gui.tcl"} {
|
|
|
|
|
source $modFile
|
|
|
|
|
puts "Loaded module $modFile"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
source [file join $dir(lib) gui.tcl]
|
2018-05-20 18:03:02 +03:00
|
|
|
|
source [file join $dir(work) rac_gui.cfg]
|
|
|
|
|
|
2019-09-02 20:58:15 +03:00
|
|
|
|
CheckVariablesSet
|
|
|
|
|
|
2018-07-02 16:48:23 +03:00
|
|
|
|
# Читаем файл со списком серверов 1С
|
2019-08-23 17:31:13 +03:00
|
|
|
|
#set serversList [dict create servers]
|
|
|
|
|
|
2018-05-20 18:03:02 +03:00
|
|
|
|
if [file exists [file join $dir(work) 1c_srv.cfg]] {
|
|
|
|
|
set f [open [file join $dir(work) 1c_srv.cfg] "RDONLY"]
|
|
|
|
|
while {[gets $f line] >=0} {
|
2018-09-17 10:01:00 +03:00
|
|
|
|
set l [split $line ","]
|
|
|
|
|
set host [lindex $l 0]
|
2018-09-12 12:46:20 +03:00
|
|
|
|
if {[lindex $l 1] ne ""} {
|
2018-09-17 10:01:00 +03:00
|
|
|
|
set rac_cmd_for_host($host) [lindex $l 1]
|
2018-09-12 12:46:20 +03:00
|
|
|
|
}
|
2018-09-17 10:01:00 +03:00
|
|
|
|
.frm_tree.tree insert {} end -id "server::$host" -text "$host" -values "$host"
|
2019-08-26 17:30:34 +03:00
|
|
|
|
}
|
|
|
|
|
close $f
|
2018-05-20 18:03:02 +03:00
|
|
|
|
}
|
2019-08-26 17:30:34 +03:00
|
|
|
|
|
|
|
|
|
if [file exists [file join $dir(work) 1c_srv_new.cfg]] {
|
|
|
|
|
set f_new [open [file join $dir(work) 1c_srv_new.cfg] "RDONLY"]
|
|
|
|
|
while {[gets $f_new line] >=0} {
|
|
|
|
|
append str " [string trim $line]"
|
|
|
|
|
}
|
|
|
|
|
set str [string map {"\{ " "\{" " \}" "\}"} $str]
|
|
|
|
|
close $f
|
|
|
|
|
dict set servers_list servers $str
|
|
|
|
|
puts $servers_list
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 17:29:01 +03:00
|
|
|
|
|
|
|
|
|
|
2019-09-02 20:58:15 +03:00
|
|
|
|
|