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
|
#!/bin/sh
# the next line restarts using wish \
exec tclsh "$0" "$@"
# Part of MCU 8051 IDE ( http://https://sourceforge.net/projects/mcu8051ide/ )
############################################################################
# Copyright (C) 2011 by Martin Ošmera #
# martin.osmera@gmail.com #
# #
# Copyright (C) 2014 by Moravia Microsystems, s.r.o. #
# martin.osmera@gmail.com #
# #
# 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 the #
# Free Software Foundation, Inc., #
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
############################################################################
# >>> File inclusion guard
if { ! [ info exists _RECEIVE_AND_PRINT_TCL ] } {
set _RECEIVE_AND_PRINT_TCL _
# <<< File inclusion guard
# --------------------------------------------------------------------------
# DESCRIPTION
# Send input read the send command to stdout
#
# USAGE:
# set pid [exec -- tclsh receive_and_print.tcl [tk appname] final_cmd | some_command ?args? &]
# * pid - Process identifier of $some_command
# * args - Arguments for $some_command
# * final_cmd - Command in local Tcl program to execute once when the script exits
#
# Once the receive_and_print (RAP) is started you can invoke ``print_line'' command available in it
# to print any string to stdout. The command takes any number of arguments and prints them all into
# the standard output.
# --------------------------------------------------------------------------
# Initialize
encoding system {utf-8}
package require Tk
wm withdraw .
wm command . "$argv0 $argv"
wm client . [info hostname]
# Parse agruments
set source_app [lindex $argv 0]
set final_cmd [lindex $argv 1]
unset argv
## Determinate the host OS
set ::MICROSOFT_WINDOWS 0
if {[string first {Windows} ${tcl_platform(os)}] != -1} {
# Note:
# Microsoft Windows is NOT a POSIX system and because of that we need
# to do some workarounds here in order to make the IDE functional there.
set ::MICROSOFT_WINDOWS 1
}
# Load dde - Dynamic Data Exchange on Microsoft Windows
if {$::MICROSOFT_WINDOWS} {
package require dde
}
## Perform secure send command
# Secure means that it will not crash or something like that in case of any errors.
# But instead it will pop-up an error message to the user (Tk dialog).
# @parm List args - Arguments for the send command
# @return void
proc secure_send args {
if {[catch {
eval "send $args"
} result]} then {
puts stderr "Unknown IO Error :: $result"
return 1
} else {
return 1
}
}
proc print_line {args} {
puts $args
}
if {!${::MICROSOFT_WINDOWS}} {
secure_send $source_app $final_cmd "{[tk appname]}"
} else {
dde eval $source_app $final_cmd "{[tk appname]}"
}
# >>> File inclusion guard
}
# <<< File inclusion guard
|