source: trunk/gui/scripts/cloud.tcl @ 5520

Last change on this file since 5520 was 5520, checked in by ldelgass, 9 years ago

Add check for > 3 coodinates per line in cloud parser

File size: 9.4 KB
RevLine 
[5091]1# -*- mode: tcl; indent-tabs-mode: nil -*-
[11]2# ----------------------------------------------------------------------
3#  COMPONENT: cloud - represents the mesh for a cloud of points
4#
5#  This object represents the mesh for a cloud of points in an XML
6#  description of a device.  It simplifies the process of extracting
7#  data that represent the mesh.
8# ======================================================================
9#  AUTHOR:  Michael McLennan, Purdue University
[3177]10#  Copyright (c) 2004-2012  HUBzero Foundation, LLC
[115]11#
12#  See the file "license.terms" for information on usage and
13#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
[11]14# ======================================================================
15package require Itcl
16
17namespace eval Rappture { # forward declaration }
18
19itcl::class Rappture::Cloud {
[3571]20    private variable _xmlobj "";        # ref to XML obj with device data
21    private variable _cloud "";         # lib obj representing this cloud
[3923]22    private variable _units "" ;        # system of units for x, y, z
[5091]23    private variable _axis2label;       #
24    private variable _axis2units;       #
[3571]25    private variable _limits;           # limits x, y, z
26    private common _xp2obj ;            # Used for fetch/release ref counting
27    private common _obj2ref ;           # Used for fetch/release ref counting
28    private variable _numPoints 0
29    private variable _vtkdata ""
30    private variable _points ""
31    private variable _dim 0
32    private variable _isValid 0;        # Indicates if the data is valid.
[11]33
[5091]34    constructor {xmlobj path} {
35        # defined below
[3571]36    }
[5091]37    destructor {
38        # defined below
[3571]39    }
[11]40    public method points {}
[17]41    public method mesh {}
[3921]42    public method units { axis }
43    public method label { axis }
[3330]44    public method vtkdata {}
[11]45    public method size {}
46    public method dimensions {}
47    public method limits {which}
48    public method hints {{key ""}}
[3330]49    public method numpoints {} {
[5090]50        return $_numPoints
[3330]51    }
[3571]52    public method isvalid {} {
53        return $_isValid
54    }
[11]55    public proc fetch {xmlobj path}
56    public proc release {obj}
57}
58
59# ----------------------------------------------------------------------
60# USAGE: Rappture::Cloud::fetch <xmlobj> <path>
61#
62# Clients use this instead of a constructor to fetch the Cloud for
63# a particular <path> in the <xmlobj>.  When the client is done with
64# the cloud, he calls "release" to decrement the reference count.
65# When the cloud is no longer needed, it is cleaned up automatically.
66# ----------------------------------------------------------------------
67itcl::body Rappture::Cloud::fetch {xmlobj path} {
68    set handle "$xmlobj|$path"
69    if {[info exists _xp2obj($handle)]} {
[1929]70        set obj $_xp2obj($handle)
71        incr _obj2ref($obj)
72        return $obj
[11]73    }
74
75    set obj [Rappture::Cloud ::#auto $xmlobj $path]
76    set _xp2obj($handle) $obj
77    set _obj2ref($obj) 1
78    return $obj
79}
80
81# ----------------------------------------------------------------------
82# USAGE: Rappture::Cloud::release <obj>
83#
84# Clients call this when they're no longer using a Cloud fetched
85# previously by the "fetch" proc.  This decrements the reference
86# count for the cloud and destroys the object when it is no longer
87# in use.
88# ----------------------------------------------------------------------
89itcl::body Rappture::Cloud::release {obj} {
90    if {[info exists _obj2ref($obj)]} {
[1929]91        incr _obj2ref($obj) -1
92        if {$_obj2ref($obj) <= 0} {
93            unset _obj2ref($obj)
94            foreach handle [array names _xp2obj] {
95                if {$_xp2obj($handle) == $obj} {
96                    unset _xp2obj($handle)
97                }
98            }
99            itcl::delete object $obj
100        }
[11]101    } else {
[1929]102        error "can't find reference count for $obj"
[11]103    }
104}
105
106# ----------------------------------------------------------------------
107# CONSTRUCTOR
108# ----------------------------------------------------------------------
109itcl::body Rappture::Cloud::constructor {xmlobj path} {
110    if {![Rappture::library isvalid $xmlobj]} {
[1929]111        error "bad value \"$xmlobj\": should be Rappture::library"
[11]112    }
113    set _xmlobj $xmlobj
114    set _cloud [$xmlobj element -as object $path]
115
[3922]116    set _units [$_cloud get units]
117    set first [lindex $_units 0]
[3923]118    set list {}
[3922]119    foreach u $_units axis { x y z } {
120        if { $u != "" } {
[5091]121            set _axis2units($axis) $u
[3922]122        } else {
[5091]123            set _axis2units($axis) $first
[1929]124        }
[3923]125        lappend list $_axis2units($axis)
[11]126    }
[3923]127    set _units $list
[3922]128    foreach label [$_cloud get labels] axis { x y z } {
129        if { $label != "" } {
[4442]130            set _axis2label($axis) $label
[3922]131        } else {
[4442]132            set _axis2label($axis) [string toupper $axis]
[3922]133        }
134    }
[11]135
[3330]136    set _numPoints 0
137    set _points {}
[11]138    foreach line [split [$xmlobj get $path.points] \n] {
[1929]139        if {"" == [string trim $line]} {
140            continue
141        }
[11]142
[5520]143        if {[llength $line] > 3} {
144            puts stderr "ERROR: Too many coordinates in cloud points list"
145            return
146        }
147
[1929]148        # make sure we have x,y,z
149        while {[llength $line] < 3} {
150            lappend line "0"
151        }
[11]152
[3571]153        # Extract each point and add it to the points list
[1929]154        foreach {x y z} $line break
[4924]155        foreach axis {x y z} {
156            # Units on point coordinates are NOT supported
157            set value [set $axis]
158            # Update limits
[3571]159            if { ![info exists _limits($axis)] } {
160                set _limits($axis) [list $value $value]
[1929]161            } else {
[3571]162                foreach { min max } $_limits($axis) break
[5091]163                if {$value < $min} {
[3571]164                    set min $value
165                }
[5091]166                if {$value > $max} {
[3571]167                    set max $value
168                }
169                set _limits($axis) [list $min $max]
[1929]170            }
171        }
[3330]172        append _points "$x $y $z\n"
[5090]173        incr _numPoints
[11]174    }
[3330]175    append out "DATASET POLYDATA\n"
[3571]176    append out "POINTS $_numPoints double\n"
[3330]177    append out $_points
178    set _vtkdata $out
[3571]179    if { $_numPoints == 0 } {
180        return
181    }
[4133]182    set _dim 0
[3571]183    foreach { xmin xmax } $_limits(x) break
[4133]184    if { $xmax > $xmin } {
185        incr _dim
[3571]186    }
[4133]187    foreach { ymin ymax } $_limits(y) break
188    if { $ymax > $ymin } {
189        incr _dim
[3571]190    }
[4133]191    foreach { zmin zmax } $_limits(z) break
192    if { $zmax > $zmin } {
193        incr _dim
[3571]194    }
195    set _isValid 1
[5150]196    puts stderr "WARNING: The <cloud> element is deprecated.  Please use an unstructured <mesh> instead."
[11]197}
198
199# ----------------------------------------------------------------------
200# DESTRUCTOR
201# ----------------------------------------------------------------------
202itcl::body Rappture::Cloud::destructor {} {
203    # don't destroy the _xmlobj! we don't own it!
204    itcl::delete object $_cloud
205}
206
207# ----------------------------------------------------------------------
208# USAGE: points
209#
210# Returns the vtk object containing the points for this mesh.
211# ----------------------------------------------------------------------
212itcl::body Rappture::Cloud::points {} {
[3330]213    return $_points
[11]214}
215
216# ----------------------------------------------------------------------
[17]217# USAGE: mesh
218#
219# Returns the vtk object representing the mesh.
220# ----------------------------------------------------------------------
221itcl::body Rappture::Cloud::mesh {} {
[3330]222    return $_points
[17]223}
224
225# ----------------------------------------------------------------------
[11]226# USAGE: size
227#
228# Returns the number of points in this cloud.
229# ----------------------------------------------------------------------
230itcl::body Rappture::Cloud::size {} {
[3489]231    return $_numPoints
[11]232}
233
234# ----------------------------------------------------------------------
235# USAGE: dimensions
236#
237# Returns the number of dimensions for this object: 1, 2, or 3.
238# ----------------------------------------------------------------------
239itcl::body Rappture::Cloud::dimensions {} {
[3330]240    return $_dim
[11]241}
242
243# ----------------------------------------------------------------------
244# USAGE: limits x|y|z
245#
246# Returns the {min max} values for the limits of the specified axis.
247# ----------------------------------------------------------------------
[3571]248itcl::body Rappture::Cloud::limits { axis } {
249    if { ![info exists _limits($axis)] } {
250        error "bad axis \"$axis\": should be x, y, z"
[11]251    }
[3571]252    return $_limits($axis)
[11]253}
254
[3921]255#
256# units --
257#
258#       Returns the units of the given axis.
259#
260itcl::body Rappture::Cloud::units { axis } {
[3922]261    if { ![info exists _axis2units($axis)] } {
262        return ""
[3921]263    }
[3922]264    return $_axis2units($axis)
[3921]265}
266
267#
268# label --
269#
270#       Returns the label of the given axis.
271#
272itcl::body Rappture::Cloud::label { axis } {
[4442]273    if { ![info exists _axis2label($axis)] } {
[3922]274        return ""
[3921]275    }
[4442]276    return $_axis2label($axis)
[3921]277}
278
[11]279# ----------------------------------------------------------------------
280# USAGE: hints ?<keyword>?
281#
282# Returns a list of key/value pairs for various hints about plotting
283# this field.  If a particular <keyword> is specified, then it returns
284# the hint for that <keyword>, if it exists.
285# ----------------------------------------------------------------------
286itcl::body Rappture::Cloud::hints {{keyword ""}} {
287    foreach key {label color units} {
[1929]288        set str [$_cloud get $key]
289        if {"" != $str} {
290            set hints($key) $str
291        }
[11]292    }
293
294    if {$keyword != ""} {
[1929]295        if {[info exists hints($keyword)]} {
296            return $hints($keyword)
297        }
298        return ""
[11]299    }
300    return [array get hints]
301}
[3330]302
303itcl::body Rappture::Cloud::vtkdata {} {
304    return $_vtkdata
305}
Note: See TracBrowser for help on using the repository browser.