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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
|
<html>
<head>
<title>AOLserver</title>
</head>
<body>
<h1>General Tcl Information</h1>
<p>
<small>
$Header: /cvsroot/aolserver/aolserver.com/docs/devel/tcl/tcl-general.html,v 1.1 2002/03/07 19:15:35 kriston Exp $
</small>
<p>
<a href=#1>Tcl Interpreters</a>
<p>
<a href=#2>Global Variables</a>
<p>
<a href=#3>Sharing Files Between Interpreters</a>
<p>
<a href=#4>Working with Ns_Set and Form Data</a>
<p>
This chapter contains general information about using Tcl whether you
are using the ADP approach or the Tcl Libraries approach, both of
which use the same features of Tcl.
<p>
<h2><a name=1>Tcl Interpreters</a></h2>
<p>
During AOLserver initialization, only one interpreter exists. While
modules are loaded and initialized, they may add procedures to the
interpreter. When initialization is complete (all modules are loaded
and all Tcl libraries have been executed), the interpreter may no
longer be changed.
<p>
Each connection thread that requires Tcl will create a copy of the
original interpreter.
<p>
The AutoClose parameter, which is on by default, will close all
non-shared files opened by an interpreter when Ns_TclDeAllocateInterp
is invoked. Ns_TclDeAllocateInterp is called after each Tcl request
procedure. It is recommended that you leave the AutoClose parameter
set to on.
<p>
<h2><a name=2>Global Variables</a></h2>
<p>
In earlier releases of the AOLserver, global variables were shared
between all Tcl interpreters in a virtual server. Beginning in Version
2.2, each Tcl interpreter has its own global variable table, so global
variables are shared only within each Tcl interpreter by default. The
ns_share command allows you to make a variable available to all
interpreters in a virtual server.
<p>
Global variables are flushed when the Tcl interpreter is deallocated.
A Tcl interpreter is deallocated explicitly when
Ns_TclDeallocateInterp is called or implicitly at the end of a
connection. This allows Tcl filter functions to access global
variables set in ADPs.
<p>
<h2><a name=3>Sharing Files Between Interpreters</a></h2>
<p>
To share a file between the interpreters in a group, use the Tcl
detach command. A shared file is left open after an interpreter is
deallocated when the AutoClose parameter is on (it is on by default).
<br>
For example:
<br>
#init time:
<br>
set sharedFile [open myfile.dat]
<br>
detach $sharedFile
<br>
<p>
You must manually close the shared file (by performing a close) when
it is no longer needed or when the server is shut down.
<p>
Note that there is no implicit locking between interpreters. This
means that one interpreter can be performing a gets command on the
shared file at the same time another interpreter performs a close on
the same file. The results are unpredictable, and could potentially
cause a core dump. To avoid this situation, use a mutex to protect
access to the file whenever it is accessed.
<p>
For example:, at initialization time (for example, in your init.tcl
script), open a shared file and create a mutex:
<br>
set sharedLock [ns_mutex create]
<br>
set sharedFile [open myfile.dat]
<br>
detach $sharedFile
<br>
<p>
At run time, use the mutex to protect any actions you perform on the
shared file:
<br>
ns_share sharedLock
<br>
ns_share sharedFile
<br>
ns_mutex lock $sharedLock
<br>
puts $sharedFile ...
<br>
gets $sharedFile ...
<br>
ns_mutex unlock $sharedLock
<br>
<p>
At shutdown (for example, in your shutdown procedure registered with
ns_atshutdown), close the file and destroy the lock:
<br>
ns_share sharedLock
<br>
ns_share sharedFile
<br>
close $SharedFile
<br>
ns_mutex destroy $SharedLock
<br>
<p>
<h2><a name=4>Working with Ns_Set and Form Data</a></h2>
<p>
An AOLserver operation procedure often manipulates sets of key-value
pairs of string data, for example:
<p>
<br>
rows of data from the database
<br>
HTTP header information
<br>
HTML form data
<br>
<p>
Ns_Set Data Structure
<p>
In the AOLserver C API these data are manipulated using the Ns_Set
data structure. In the Tcl API the ns_set command can be used to
manipulate underlying Ns_Set data structures that are generated by the
AOLserver communications layer or the database services module.
<p>
The example below shows a typical use of the ns_set Tcl command to
manipulate Ns_Set structures.
<pre>
# Example 2: Show header data
#
# Things to notice:
# * The same function is registered for two different URLs
# with different context.
#
# * The headers are pulled out of the conn using the
# ns_conn function.
#
# * The value for a particular header line is extracted
# with "ns_set get".
ns_register_proc GET /example/showbrowser \
showheader USER-AGENT
ns_register_proc GET /example/showrefer \
showheader REFER
proc showheader {conn key} {
set value [ns_set get [ns_conn headers $conn] $key]
ns_return $conn 200 text/plain "$key: $value"
}
</pre>
<p>
Form Data
<p>
Some Database Services Tcl functions take formdata arguments. You can
get the form data for a form by calling ns_conn form. An ns_set
structure containing key/value pairs is returned, which you can
manipulate using the ns_set function. The key/value pairs for search,
entry, and update forms are provided below.
<p>
Search Form Data
<p>
Key
<p>
Value
<p>
ColSelected.columnname
<p>
"on" or "off"
<p>
ColOperator.columnname
<p>
search operator
<p>
(=, <, >, <=, >=, is null, is not null)
<p>
ColValue.columnname
<p>
search value for text, integer, real, or boolean fields
<p>
ColValue.columnname.NULL
<p>
"t" or "f" (true or false), indicates whether to search for the
specified date, time, or timestamp field
<p>
ColValue.columnname.month
<p>
month portion of search value for date and timestamp fields
<p>
ColValue.columnname.day
<p>
day portion of search value for date and timestamp fields
<p>
ColValue.columnname.year
<p>
year portion of search value for date and timestamp fields
<p>
ColValue.columnname.time
<p>
time portion of search value for time and timestamp fields
<p>
ColValue.columnname.ampm
<p>
"AM" or "PM" designation of search value for time and timestamp fields
<p>
OrderBy.n
<p>
name of column to order the results by (where n is 0 for the first
order by column, 1 for the second order by column, and so on)
<p>
Queryinfo.Distinct
<p>
"on" or "off", indicates whether query should eliminate duplicate
records
<p>
Pref.MaxToReturn
<p>
integer, maximum number of records to return
<p>
Entry Form Data
<p>
Key
<p>
Value
<p>
ColValue.columnname
<p>
value for text, integer, real, or boolean fields
<p>
ColValue.columnname.NULL
<p>
"t" or "f" (true or false), indicates whether a date, time, or
timestamp field is null or the value specified in the date/time
portions
<p>
ColValue.columnname.month
<p>
month portion of value for date and timestamp fields
<p>
ColValue.columnname.day
<p>
day portion of value for date and timestamp fields
<p>
ColValue.columnname.year
<p>
year portion of value for date and timestamp fields
<p>
ColValue.columnname.time
<p>
time portion of value for time and timestamp fields
<p>
ColValue.columnname.ampm
<p>
"AM" or "PM" designation of value for time and timestamp fields
<p>
Update/Delete Form Data
<p>
Key
<p>
Value
<p>
ColValue.columnname
<p>
value for text, integer, real, or boolean fields
<p>
ColValue.columnname.NULL
<p>
"t" or "f" (true or false), indicates whether a date, time, or
timestamp field is null or the value specified in the date/time
portions
<p>
ColValue.columnname.month
<p>
month portion of value for date and timestamp fields
<p>
ColValue.columnname.day
<p>
day portion of value for date and timestamp fields
<p>
ColValue.columnname.year
<p>
year portion of value for date and timestamp fields
<p>
ColValue.columnname.time
<p>
time portion of value for time and timestamp fields
<p>
ColValue.columnname.ampm
<p>
"AM" or "PM" designation of value for time and timestamp fields
<p>
RowID.columnname
<p>
all the RowID values that specify the row to update or delete
<p>
<p>
</body>
</html>
|