This file is indexed.

/usr/share/cgnstools/tools.tcl is in cgns-convert 3.3.0-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
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
# tools.tcl - CGNS tool routines

proc check_cgns {} {
  global ProgData Tools

  if {$ProgData(cgnscheck) == "" || $ProgData(file,name) == ""} return

  set w .cgnscheck
  toplevel $w
  wm title $w "Check CGNS File"
  wm transient $w .
  wm protocol $w WM_DELETE_WINDOW {set Tools(done) 0}

  FrameCreate $w.top
  pack $w.top -side top -padx 5 -pady 5 -fill x
  set top [FrameGet $w.top]

  set f [frame $top.opts]
  pack $f -side top -fill x -expand 1
  checkbutton $f.verbose -text "Verbose Output" -variable Tools(verbose) \
    -onvalue "-v" -offvalue ""
  checkbutton $f.errors -text "Show Errors" -variable Tools(errors) \
    -onvalue "" -offvalue "-e"
  pack $f.verbose $f.errors -side left -fill x -expand 1

  set f [frame $top.warn]
  pack $f -side top -fill x -expand 1
  label $f.lab -text "Warning Level"
  pack $f.lab -side left
  foreach i {0 1 2 3} {
    radiobutton $f.f$i -text $i -variable Tools(warnings) -value $i
    pack $f.f$i -side left -fill x -expand 1
  }

  if {[tools_interact $w ""]} {
    set cmd [tools_unix_path $ProgData(cgnscheck)]
    foreach i {verbose errors} {
      if {$Tools($i) != ""} {lappend cmd $Tools($i)}
    }
    lappend cmd -w$Tools(warnings) $ProgData(file,name)
    run_command "Check CGNS" $cmd 25
  }
}

proc diff_cgns {} {
  global ProgData Tools

  if {$ProgData(cgnscheck) == "" || $ProgData(file,name) == ""} return

  set w .cgnsdiff
  toplevel $w
  wm title $w "Diff CGNS File"
  wm transient $w .
  wm protocol $w WM_DELETE_WINDOW {set Tools(done) 0}

  FrameCreate $w.top -text "Diff With ..."
  pack $w.top -side top -padx 5 -pady 5 -fill x
  set top [FrameGet $w.top]

  set f [frame $top.input]
  pack $f -side top -fill x
  label $f.lab -text "CGNS File"
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(cgnsinput) -width 30
  pack $f.ent -side left -fill x -expand 1
  button $f.but -text Browse -pady 0 -command "tools_browse $f.but cgnsinput"
  pack $f.but -side right -fill y

  FrameCreate $w.opts -text "Options"
  pack $w.opts -side top -padx 5 -pady 5 -fill x
  set opts [FrameGet $w.opts]

  set f [frame $opts.f1]
  pack $f -side top -fill x -expand 1
  checkbutton $f.case -text "Case-insensitive" -variable Tools(nocase) \
    -onvalue "-c" -offvalue ""
  checkbutton $f.space -text "Ignore White Space" -variable Tools(whitespace) \
    -onvalue "-i" -offvalue ""
  checkbutton $f.links -text "Follow Links" -variable Tools(followlinks) \
    -onvalue "-f" -offvalue ""
  pack $f.case $f.space $f.links -side left -fill x -expand 1

  set f [frame $opts.f2]
  pack $f -side top -fill x -expand 1
  checkbutton $f.data -text "Compare Node Data" -variable Tools(cmpdata) \
    -onvalue "-d" -offvalue ""
  pack $f.data -side left
  frame $f.tol
  label $f.tol.lab -text "Compare Tolerance"
  entry $f.tol.ent -width 10 -textvariable Tools(cmptol)
  pack $f.tol.lab $f.tol.ent -side left
  pack $f.tol -side right


  if {[tools_interact $w ""]} {
    set cmd [tools_unix_path $ProgData(cgnsdiff)]
    foreach i {nocase whitespace followlinks cmpdata} {
      if {$Tools($i) != ""} {lappend cmd $Tools($i)}
    }
    lappend cmd $ProgData(file,name) $Tools(cgnsinput)
    run_command "Diff CGNS" $cmd 25
  }
}

proc plot_cgns {} {
  global ProgData tcl_platform
  if {$ProgData(cgnsplot) == "" || $ProgData(file,name) == ""} return
  set cmd [tools_unix_path $ProgData(cgnsplot)]
  lappend cmd $ProgData(file,name)
  if {[catch {eval exec $cmd &} msg]} {
    errormsg $msg
    return
  }
}

proc calc_cgns {} {
  global ProgData
  if {$ProgData(cgnscalc) == "" || $ProgData(file,name) == ""} return
  set cmd [tools_unix_path $ProgData(cgnscalc)]
  lappend cmd $ProgData(file,name)
  if {[catch {eval exec $cmd &} msg]} {
    errormsg $msg
    return
  }
}

proc tools_default {w name exe} {
  global ProgData Tools

  tools_window $w $name $exe run

  if {[tools_interact $w tools_check_exe]} {
    set cmd [tools_unix_path $Tools(exefile)]
    foreach opt $Tools(options) {
      lappend cmd $opt
    }
    if {$Tools(background)} {
      if {[catch {eval exec $cmd &} msg]} {
        errormsg $msg
      }
    } else {
      run_command $name $cmd
    }
  }
}

proc tools_utility {w name exe} {
  global ProgData Tools

  set Tools(cgnsinput) $ProgData(file,name)

  tools_window $w $name $exe utility

  if {[tools_interact $w tools_check]} {
    set cmd [tools_unix_path $Tools(exefile)]
    foreach opt $Tools(options) {
      lappend cmd $opt
    }
    lappend cmd $Tools(cgnsinput)
    if {$Tools(background)} {
      if {[catch {eval exec $cmd &} msg]} {
        errormsg $msg
      }
    } else {
        $name $cmd
    }
  }
}

proc tools_convert {w name exe} {
  global ProgData Tools

  set Tools(cgnsinput) $ProgData(file,name)
  if {$Tools(cgnsoutput) == ""} {
    set Tools(cgnsoutput) $ProgData(file,name)
  }

  tools_window $w $name $exe convert

  if {[tools_interact $w tools_check]} {
    set cmd [tools_unix_path $Tools(exefile)]
    foreach opt $Tools(options) {
      lappend cmd $opt
    }
    lappend cmd $Tools(cgnsinput)
    if {$Tools(cgnsoutput) != ""} {
      lappend cmd $Tools(cgnsoutput)
    }
    tools_run $name $cmd $Tools(cgnsoutput)
  }
}

proc tools_window {w name exe type} {
  global ProgData Tools Font tcl_platform

  if {$exe != ""} {
    set exename [lindex $exe 0]
    set exepath [get_executable $exename]
    if {$exepath != ""} {set exename $exepath}
    if {$tcl_platform(platform) == "windows"} {
      set Tools(exefile) [join [split $exename /] \\]
    } else {
      set Tools(exefile) $exename
    }
    set Tools(options) [lrange $exe 1 end]
  }

  toplevel $w
  wm title $w $name
  wm transient $w .
  wm protocol $w WM_DELETE_WINDOW {set Tools(done) 0}

  set labw 12

  set lab "[string toupper [string index $type 0]][string range $type 1 end]"
  FrameCreate $w.top -text "$lab Command" -font $Font(bold)
  pack $w.top -side top -padx 5 -pady 5 -fill x
  set top [FrameGet $w.top]

  set f [frame $top.exe]
  pack $f -side top -fill x -expand 1
  label $f.lab -text Executable -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(exefile) -width 30
  pack $f.ent -side left -fill x -expand 1
  button $f.but -text Browse -pady 0 -command "tools_browse $w exefile"
  pack $f.but -side right -fill y
  $f.ent xview [$f.ent index end]

  set f [frame $top.opts]
  pack $f -side top -fill x -expand 1
  if {$type == "run"} {
    set lab Arguments
  } else {
    set lab Options
  }
  label $f.lab -text $lab -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(options) -width 30
  pack $f.ent -side left -fill x -expand 1

  if {$type != "run"} {
    set f [frame $top.input]
    pack $f -side top -fill x
    label $f.lab -text "CGNS Input" -width $labw -anchor w
    pack $f.lab -side left
    entry $f.ent -textvariable Tools(cgnsinput) -width 30
    pack $f.ent -side left -fill x -expand 1
    button $f.but -text Browse -pady 0 -command "tools_browse $f.but cgnsinput"
    pack $f.but -side right -fill y
    if {$type == "convert"} {
      set f [frame $top.output]
      pack $f -side top -fill x
      label $f.lab -text "CGNS Output" -width $labw -anchor w
      pack $f.lab -side left
      entry $f.ent -textvariable Tools(cgnsoutput) -width 30
      pack $f.ent -side left -fill x -expand 1
      button $f.but -text Browse -pady 0 \
        -command "tools_browse $f.but cgnsoutput"
      pack $f.but -side right -fill y
    }
  }

  if {$type != "convert"} {
    checkbutton $top.bg -text "Run Command in Background" \
      -variable Tools(background) -onvalue 1 -offvalue 0
    pack $top.bg -side top -anchor w
  }
}

proc tools_check_input {w} {
  global Tools
  if {$Tools(cgnsinput) == "" || ![file exists $Tools(cgnsinput)]} {
    errormsg "CGNS input file not specified or does not exist" $w
    return 0
  }
  return 1
}

proc tools_check_exe {w} {
  global Tools
  if {$Tools(exefile) == ""} {
    errormsg "must specify an executable" $w
    return 0
  }
  if {![file exists $Tools(exefile)] ||
      ![file executable $Tools(exefile)]} {
    errormsg "the utility executable does not exist or is not executable" $w
    return 0
  }
  return 1
}

proc tools_check {w} {
  if {[tools_check_exe $w] &&
      [tools_check_input $w]} {return 1}
  return 0
}

proc tools_unix_path {exepath} {
  global tcl_platform
  if {$tcl_platform(platform) == "windows"} {
    if {![catch {file attributes $exepath -shortname} name]} {
      return [join [split $name \\] /]
    }
    return [join [split $exepath \\] /]
  }
  return $exepath
}

proc tools_cgnsinput {w {loc 0} {labw 13}} {
  global ProgData Font Tools

  FrameCreate $w.cgnsinput -text "CGNS Input" -font $Font(bold)
  pack $w.cgnsinput -side top -padx 5 -pady 2 -fill x
  set wf [FrameGet $w.cgnsinput]

  set f [frame $wf.file]
  pack $f -side top -fill x
  label $f.lab -text Filename -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(cgnsinput) -width 30
  pack $f.ent -side left -fill x -expand 1
  button $f.but -text Browse -pady 0 -command "tools_browse $f.but cgnsinput"
  pack $f.but -side right -fill y

  if {!$loc} return

  set f [frame $wf.basenum]
  pack $f -side top -fill x
  label $f.lab -text "Base Index" -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(basenum) -width 10
  pack $f.ent -side left
  checkbutton $f.but -text default \
    -variable Tools(basenum,flag) -onvalue 1 -offvalue 0 \
    -command "tools_state basenum $f.ent"
  pack $f.but -side left

  tools_state basenum $f.ent

  set f [frame $wf.zonenum]
  pack $f -side top -fill x
  label $f.lab -text "Zone Index" -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(zonenum) -width 10
  pack $f.ent -side left
  checkbutton $f.but -text "all zones" \
    -variable Tools(zonenum,flag) -onvalue 1 -offvalue 0 \
    -command "tools_state zonenum $f.ent"
  pack $f.but -side left

  tools_state zonenum $f.ent

  if {$loc < 2} return

  set f [frame $wf.solnum]
  pack $f -side top -fill x
  label $f.lab -text "Solution Index" -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(solnum) -width 10
  pack $f.ent -side left
  checkbutton $f.but -text "all solutions" \
    -variable Tools(solnum,flag) -onvalue 1 -offvalue 0 \
    -command "tools_state solnum $f.ent"
  pack $f.but -side left

  tools_state solnum $f.ent
}

proc tools_cgnsoutput {w {newloc ""} {labw 13}} {
  global Font Tools
  FrameCreate $w.cgnsoutput -text "CGNS Output" -font $Font(bold)
  pack $w.cgnsoutput -side top -padx 5 -pady 2 -fill x
  set wf [FrameGet $w.cgnsoutput]

  set f [frame $wf.file]
  pack $f -side top -fill x
  label $f.lab -text Filename -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(cgnsoutput) -width 30
  pack $f.ent -side left -fill x -expand 1
  button $f.but -text Browse -pady 0 -command "tools_browse $f.but cgnsoutput"
  pack $f.but -side right -fill y

  if {$newloc == "solname"} {
    set lab "Solution Name"
  } elseif {$newloc == "basename"} {
    set lab "Base Name"
  } else {
    return
  }
  set f [frame $wf.newloc]
  pack $f -side top -fill x
  label $f.lab -text $lab -width $labw -anchor w
  pack $f.lab -side left
  entry $f.ent -textvariable Tools($newloc) -width 30
  pack $f.ent -side left -fill x -expand 1
  checkbutton $f.but -text default \
    -variable Tools($newloc,flag) -onvalue 1 -offvalue 0 \
    -command "tools_state $newloc $f.ent {}"
  pack $f.but -side left

  tools_state $newloc $f.ent ""
}

proc tools_averaging {w} {
  global Font Tools
  FrameCreate $w.avg -text Averaging -font $Font(bold)
  pack $w.avg -side top -padx 5 -pady 2 -fill x
  set avg [FrameGet $w.avg]

  set f [frame $avg.f]
  pack $f -side top -fill x -expand 1
  radiobutton $f.a -text "Simple Averaging" \
    -variable Tools(weight) -value ""
  radiobutton $f.w -text "Volume Weighting" \
    -variable Tools(weight) -value w
  pack $f.a $f.w -side left -expand 1
  return $avg
}

proc tools_options {w {bgopt 0} {labw ""}} {
  global Tools Font

  FrameCreate $w.opts -text "Command Line Options" -font $Font(bold)
  pack $w.opts -side top -padx 5 -pady 2 -fill x
  set opts [FrameGet $w.opts]

  set f [frame $opts.f]
  pack $f -side top -fill x -expand 1
  label $f.lab -text Options
  if {$labw != ""} {
    $f.lab configure -width $labw -anchor w
  }
  pack $f.lab -side left
  entry $f.ent -textvariable Tools(options) -width 30
  pack $f.ent -side left -fill x -expand 1

  if {$bgopt} {
    checkbutton $opts.bg -text "Run Command in Background" \
      -variable Tools(background) -onvalue 1 -offvalue 0
    pack $opts.bg -side top -anchor w
  }
  return $opts
}

proc tools_browse {w ftype {name ""}} {
  global Tools tcl_platform
  if {$ftype == "exefile"} {
    if {$tcl_platform(platform) == "windows"} {
      set types {{{Executable Files} {.exe .cmd .bat .com}} {{All Files} {*}}}
    } else {
      set types {{{All Files} {*}}}
    }
    set fname [FileOpen Executable $Tools(exefile) $w $types]
    if {$fname != ""} {
      if {$tcl_platform(platform) == "windows"} {
        set Tools(exefile) [join [split $fname /] \\]
      } else {
        set Tools(exefile) $fname
      }
    }
  } elseif {$ftype == "cgnsoutput"} {
    set fname [FileSave "CGNS Output File" $Tools(cgnsoutput) . \
      {{{CGNS Files} {.cgns .cgn}} {{All Files} {*}}} cgns]
    if {$fname != ""} {
      if {$tcl_platform(platform) == "windows"} {
        set Tools(cgnsoutput) [join [split $fname /] \\]
      } else {
        set Tools(cgnsoutput) $fname
      }
    }
  } else {
    if {$name == ""} {set name Input}
    set fname [FileOpen "CGNS $name File" $Tools($ftype) . \
      {{{CGNS Files} {.cgns .cga .cgh .cgx}} {{All Files} {*}}}]
    if {$fname != ""} {
      if {$tcl_platform(platform) == "windows"} {
        set Tools($ftype) [join [split $fname /] \\]
      } else {
        set Tools($ftype) $fname
      }
    }
  }
}

proc tools_state {what ent {def 1}} {
  global Tools
  if {$Tools($what,flag)} {
    set Tools($what) ""
    $ent configure -state disabled -cursor {}
  } else {
    if {$Tools($what) == ""} {
      set Tools($what) $def
    }
    $ent configure -state normal -cursor xterm
  }
}

proc tools_interact {w {check_proc tools_check_input}} {
  global Tools

  set f [frame $w.but]
  pack $f -side bottom -pady 5
  button $f.accept -text Accept -width 6 -default active
  button $f.cancel -text Cancel -width 6 -command {set Tools(done) 0}
  pack $f.accept $f.cancel -side left -padx 5

  if {$check_proc == ""} {
    $f.accept configure -command {set Tools(done) 1}
    bind $w <Return> {set Tools(done) 1}
  } else {
    $f.accept configure -command "
      if {!\[catch {$check_proc $w} result\] && \$result} {
        set Tools(done) 1
      }
    "
    bind $w <Return> "
      if {!\[catch {$check_proc $w} result\] && \$result} {
        set Tools(done) 1
      }
    "
  }

  center_window $w .
  set oldFocus [focus]
  set oldGrab [grab current $w]
  if {$oldGrab != ""} {
    set grabStatus [grab status $oldGrab]
  }
  catch {grab $w}
  tkwait visibility $w
  focus $w
  tkwait variable Tools(done)
  catch {focus $oldFocus}
  destroy $w
  if {$oldGrab != ""} {
    if {$grabStatus == "global"} {
      grab -global $oldGrab
    } else {
      grab $oldGrab
    }
  }
  return $Tools(done)
}

proc tools_run {title cmd {outfile ""}} {
  global ProgData
  if {$outfile == ""} {
    set same 1
  } elseif {[file dirname $outfile] == "."} {
    set same [same_file $outfile $ProgData(file,name)]
  } else {
    set same [same_file $outfile $ProgData(file)]
  }
  if {$same} {
    catch CGIOclose
    do_backup
  }
  update
  if {[run_command $title $cmd] && !$same} {
    file_load $outfile
  } else {
    file_reload
  }
}