Tcl Source Code

Artifact [529cd93840]
Login

Artifact 529cd93840f762797a4c9881081a61d7cfec21ae:

Attachment "global.n" to ticket [959831ffff] added by msofer 2004-05-25 23:58:44.
'\"
'\" Copyright (c) 1993 The Regents of the University of California.
'\" Copyright (c) 1994-1997 Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\" 
'\" RCS: @(#) $Id: global.n,v 1.6 2004/05/17 22:23:42 dkf Exp $
'\" 
.so man.macros
.TH global n "" Tcl "Tcl Built-In Commands"
.BS
'\" Note:  do not modify the .SH NAME line immediately below!
.SH NAME
global \- Access global variables
.SH SYNOPSIS
\fBglobal \fIvarname \fR?\fIvarname ...\fR?
.BE

.SH DESCRIPTION
.PP
This command has no effect unless executed in the context of a proc body.
If the \fBglobal\fR command is executed in the context of a proc body, it
creates local variables linked to the corresponding global variables (and
therefore these variables are listed by info locals).

If \fIvarname\fR contains namespace qualifiers, the local variable's name is
the unqualified name of the global variable, as determined by the
\fBnamespace tail\fR command. In fact, \fBglobal\fR can be defined in terms
of other builtin commands as:
.PP
.CS
proc global args {
    if {[info level] < 2} {
        return
    }
    set cmdName [namespace tail [lindex [info level -1] 0]]
    if {[info procs $cmdName] eq {}} {
        return
    }
    set cmd [list upvar #0]
    foreach var $args {
        lappend cmd $var [namespace tail $var]
    }
    uplevel 1 $cmd
    return
}
.CE
.PP
\fIvarname\fR is always treated as the name of a variable, not an
array element.  An error is returned if the name looks like an array element,
such as \fBa(b)\fR.
.SH EXAMPLE 1
This procedure sets the namespace variable \fI::a::x\fR
.PP
.CS
proc reset {} {
    global a::x
    set x 0
}
.CE
.PP
.SH EXAMPLE 2
This procedure accumulates the strings passed to it in a global
buffer, separated by newlines.  It is useful for situations when you
want to build a message piece-by-piece (as if with \fBputs\fR) but
send that full message in a single piece (e.g. over a connection
opened with \fBsocket\fR or as part of a counted HTTP response).
.PP
.CS
proc accum {string} {
    global accumulator
    append accumulator $string \\n
}
.CE

.SH "SEE ALSO"
namespace(n), upvar(n), variable(n)

.SH KEYWORDS
global, namespace, procedure, variable