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 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
|
r"""paraviewweb_protocols is a module that contains a set of ParaViewWeb related
protocols that can be combined together to provide a flexible way to define
very specific web application.
"""
import os, sys, logging, types, inspect, traceback, logging, re, json
from time import time
# import RPC annotation
from autobahn.wamp import exportRpc
# import paraview modules.
from paraview import simple, servermanager
from paraview.web import helper
from vtk.web import protocols as vtk_protocols
from vtkWebCorePython import vtkWebInteractionEvent
# =============================================================================
#
# Base class for any ParaView based protocol
#
# =============================================================================
class ParaViewWebProtocol(vtk_protocols.vtkWebProtocol):
def __init__(self):
self.Application = None
def mapIdToProxy(self, id):
"""
Maps global-id for a proxy to the proxy instance. May return None if the
id is not valid.
"""
id = int(id)
if id <= 0:
return None
return simple.servermanager._getPyProxy(\
simple.servermanager.ActiveConnection.Session.GetRemoteObject(id))
def getView(self, vid):
"""
Returns the view for a given view ID, if vid is None then return the
current active view.
:param vid: The view ID
:type vid: str
"""
view = self.mapIdToProxy(vid)
if not view:
# Use active view is none provided.
view = simple.GetActiveView()
if not view:
raise Exception("no view provided: " + vid)
return view
# =============================================================================
#
# Handle Mouse interaction on any type of view
#
# =============================================================================
class ParaViewWebMouseHandler(ParaViewWebProtocol):
@exportRpc("mouseInteraction")
def mouseInteraction(self, event):
"""
RPC Callback for mouse interactions.
"""
view = self.getView(event['view'])
buttons = 0
if event["buttonLeft"]:
buttons |= vtkWebInteractionEvent.LEFT_BUTTON;
if event["buttonMiddle"]:
buttons |= vtkWebInteractionEvent.MIDDLE_BUTTON;
if event["buttonRight"]:
buttons |= vtkWebInteractionEvent.RIGHT_BUTTON;
modifiers = 0
if event["shiftKey"]:
modifiers |= vtkWebInteractionEvent.SHIFT_KEY
if event["ctrlKey"]:
modifiers |= vtkWebInteractionEvent.CTRL_KEY
if event["altKey"]:
modifiers |= vtkWebInteractionEvent.ALT_KEY
if event["metaKey"]:
modifiers |= vtkWebInteractionEvent.META_KEY
pvevent = vtkWebInteractionEvent()
pvevent.SetButtons(buttons)
pvevent.SetModifiers(modifiers)
pvevent.SetX(event["x"])
pvevent.SetY(event["y"])
#pvevent.SetKeyCode(event["charCode"])
retVal = self.getApplication().HandleInteractionEvent(view.SMProxy, pvevent)
del pvevent
return retVal
# =============================================================================
#
# Basic 3D Viewport API (Camera + Orientation + CenterOfRotation
#
# =============================================================================
class ParaViewWebViewPort(ParaViewWebProtocol):
@exportRpc("resetCamera")
def resetCamera(self, view):
"""
RPC callback to reset camera.
"""
view = self.getView(view)
simple.ResetCamera(view)
try:
view.CenterOfRotation = view.CameraFocalPoint
except:
pass
self.getApplication().InvalidateCache(view.SMProxy)
return view.GetGlobalIDAsString()
@exportRpc("updateOrientationAxesVisibility")
def updateOrientationAxesVisibility(self, view, showAxis):
"""
RPC callback to show/hide OrientationAxis.
"""
view = self.getView(view)
view.OrientationAxesVisibility = (showAxis if 1 else 0);
self.getApplication().InvalidateCache(view.SMProxy)
return view.GetGlobalIDAsString()
@exportRpc("updateCenterAxesVisibility")
def updateCenterAxesVisibility(self, view, showAxis):
"""
RPC callback to show/hide CenterAxesVisibility.
"""
view = self.getView(view)
view.CenterAxesVisibility = (showAxis if 1 else 0);
self.getApplication().InvalidateCache(view.SMProxy)
return view.GetGlobalIDAsString()
@exportRpc("updateCamera")
def updateCamera(self, view_id, focal_point, view_up, position):
view = self.getView(view_id)
view.CameraFocalPoint = focal_point
view.CameraViewUp = view_up
view.CameraPosition = position
self.getApplication().InvalidateCache(view.SMProxy)
# =============================================================================
#
# Provide Image delivery mechanism
#
# =============================================================================
class ParaViewWebViewPortImageDelivery(ParaViewWebProtocol):
@exportRpc("stillRender")
def stillRender(self, options):
"""
RPC Callback to render a view and obtain the rendered image.
"""
beginTime = int(round(time() * 1000))
view = self.getView(options["view"])
size = [view.ViewSize[0], view.ViewSize[1]]
if options and options.has_key("size"):
size = options["size"]
view.ViewSize = size
t = 0
if options and options.has_key("mtime"):
t = options["mtime"]
quality = 100
if options and options.has_key("quality"):
quality = options["quality"]
localTime = 0
if options and options.has_key("localTime"):
localTime = options["localTime"]
reply = {}
app = self.getApplication()
reply["image"] = app.StillRenderToString(view.SMProxy, t, quality)
reply["stale"] = app.GetHasImagesBeingProcessed(view.SMProxy)
reply["mtime"] = app.GetLastStillRenderToStringMTime()
reply["size"] = [view.ViewSize[0], view.ViewSize[1]]
reply["format"] = "jpeg;base64"
reply["global_id"] = view.GetGlobalIDAsString()
reply["localTime"] = localTime
endTime = int(round(time() * 1000))
reply["workTime"] = (endTime - beginTime)
return reply
# =============================================================================
#
# Provide Geometry delivery mechanism (WebGL)
#
# =============================================================================
class ParaViewWebViewPortGeometryDelivery(ParaViewWebProtocol):
@exportRpc("getSceneMetaData")
def getSceneMetaData(self, view_id):
view = self.getView(view_id);
data = self.getApplication().GetWebGLSceneMetaData(view.SMProxy)
return data
@exportRpc("getWebGLData")
def getWebGLData(self, view_id, object_id, part):
view = self.getView(view_id)
data = self.getApplication().GetWebGLBinaryData(view.SMProxy, str(object_id), part-1)
return data
# =============================================================================
#
# Time management
#
# =============================================================================
class ParaViewWebTimeHandler(ParaViewWebProtocol):
def __init__(self):
super(ParaViewWebTimeHandler, self).__init__()
# setup animation scene
self.scene = simple.GetAnimationScene()
simple.GetTimeTrack()
self.scene.PlayMode = "Snap To TimeSteps"
@exportRpc("updateTime")
def updateTime(self,action):
view = simple.GetRenderView()
animationScene = simple.GetAnimationScene()
currentTime = view.ViewTime
if action == "next":
animationScene.GoToNext()
if currentTime == view.ViewTime:
animationScene.GoToFirst()
if action == "prev":
animationScene.GoToPrevious()
if currentTime == view.ViewTime:
animationScene.GoToLast()
if action == "first":
animationScene.GoToFirst()
if action == "last":
animationScene.GoToLast()
return view.ViewTime
# =============================================================================
#
# Pipeline manager
#
# =============================================================================
class ParaViewWebPipelineManager(ParaViewWebProtocol):
def __init__(self, baseDir=None, fileToLoad=None):
super(ParaViewWebPipelineManager, self).__init__()
# Setup global variables
self.pipeline = helper.Pipeline('Kitware')
self.lutManager = helper.LookupTableManager()
self.view = simple.GetRenderView()
self.baseDir = baseDir;
simple.SetActiveView(self.view)
simple.Render()
self.view.ViewSize = [800,800]
self.lutManager.setView(self.view)
if fileToLoad and fileToLoad[-5:] != '.pvsm':
try:
self.openFile(fileToLoad)
except:
print "error loading..."
@exportRpc("reloadPipeline")
def reloadPipeline(self):
self.pipeline.clear()
pxm = simple.servermanager.ProxyManager()
# Fill tree structure (order-less)
for proxyInfo in pxm.GetProxiesInGroup("sources"):
id = str(proxyInfo[1])
proxy = helper.idToProxy(id)
parentId = helper.getParentProxyId(proxy)
self.pipeline.addNode(parentId, id)
return self.pipeline.getRootNode(self.lutManager)
@exportRpc("getPipeline")
def getPipeline(self):
if self.pipeline.isEmpty():
return self.reloadPipeline()
return self.pipeline.getRootNode(self.lutManager)
@exportRpc("addSource")
def addSource(self, algo_name, parent):
pid = str(parent)
parentProxy = helper.idToProxy(parent)
if parentProxy:
simple.SetActiveSource(parentProxy)
else:
pid = '0'
# Create new source/filter
cmdLine = 'simple.' + algo_name + '()'
newProxy = eval(cmdLine)
# Create its representation and render
simple.Show()
simple.Render()
simple.ResetCamera()
# Add node to pipeline
self.pipeline.addNode(pid, newProxy.GetGlobalIDAsString())
# Create LUT if need be
if pid == '0':
self.lutManager.registerFieldData(newProxy.GetPointDataInformation())
self.lutManager.registerFieldData(newProxy.GetCellDataInformation())
# Return the newly created proxy pipeline node
return helper.getProxyAsPipelineNode(newProxy.GetGlobalIDAsString(), self.lutManager)
@exportRpc("deleteSource")
def deleteSource(self, proxy_id):
self.pipeline.removeNode(proxy_id)
proxy = helper.idToProxy(proxy_id)
simple.Delete(proxy)
simple.Render()
@exportRpc("updateDisplayProperty")
def updateDisplayProperty(self, options):
proxy = helper.idToProxy(options['proxy_id']);
rep = simple.GetDisplayProperties(proxy)
helper.updateProxyProperties(rep, options)
# Try to bind the proper lookup table if need be
if options.has_key('ColorArrayName') and len(options['ColorArrayName']) > 0:
name = options['ColorArrayName']
type = options['ColorAttributeType']
nbComp = 1
if type == 'POINT_DATA':
data = rep.GetRepresentedDataInformation().GetPointDataInformation()
for i in range(data.GetNumberOfArrays()):
array = data.GetArrayInformation(i)
if array.GetName() == name:
nbComp = array.GetNumberOfComponents()
elif type == 'CELL_DATA':
data = rep.GetRepresentedDataInformation().GetCellDataInformation()
for i in range(data.GetNumberOfArrays()):
array = data.GetArrayInformation(i)
if array.GetName() == name:
nbComp = array.GetNumberOfComponents()
lut = self.lutManager.getLookupTable(name, nbComp)
rep.LookupTable = lut
simple.Render()
@exportRpc("pushState")
def pushState(self, state):
for proxy_id in state:
if proxy_id == 'proxy':
continue
proxy = helper.idToProxy(proxy_id);
helper.updateProxyProperties(proxy, state[proxy_id])
simple.Render()
return helper.getProxyAsPipelineNode(state['proxy'], self.lutManager)
@exportRpc("openFile")
def openFile(self, path):
reader = simple.OpenDataFile(path)
simple.RenameSource( path.split("/")[-1], reader)
simple.Show()
simple.Render()
simple.ResetCamera()
# Add node to pipeline
self.pipeline.addNode('0', reader.GetGlobalIDAsString())
# Create LUT if need be
self.lutManager.registerFieldData(reader.GetPointDataInformation())
self.lutManager.registerFieldData(reader.GetCellDataInformation())
return helper.getProxyAsPipelineNode(reader.GetGlobalIDAsString(), self.lutManager)
@exportRpc("openRelativeFile")
def openRelativeFile(self, relativePath):
fileToLoad = []
if type(relativePath) == list:
for file in relativePath:
fileToLoad.append(os.path.join(self.baseDir, file))
else:
fileToLoad.append(os.path.join(self.baseDir, files))
reader = simple.OpenDataFile(fileToLoad)
name = fileToLoad[0].split("/")[-1]
if len(name) > 15:
name = name[:15] + '*'
simple.RenameSource(name, reader)
simple.Show()
simple.Render()
simple.ResetCamera()
# Add node to pipeline
self.pipeline.addNode('0', reader.GetGlobalIDAsString())
# Create LUT if need be
self.lutManager.registerFieldData(reader.GetPointDataInformation())
self.lutManager.registerFieldData(reader.GetCellDataInformation())
return helper.getProxyAsPipelineNode(reader.GetGlobalIDAsString(), self.lutManager)
@exportRpc("updateScalarbarVisibility")
def updateScalarbarVisibility(self, options):
# Remove unicode
if options:
for lut in options.values():
if type(lut['name']) == unicode:
lut['name'] = str(lut['name'])
self.lutManager.enableScalarBar(lut['name'], lut['size'], lut['enabled'])
return self.lutManager.getScalarbarVisibility()
@exportRpc("updateScalarRange")
def updateScalarRange(self, proxyId):
proxy = self.mapIdToProxy(proxyId);
self.lutManager.registerFieldData(proxy.GetPointDataInformation())
self.lutManager.registerFieldData(proxy.GetCellDataInformation())
@exportRpc("setLutDataRange")
def setLutDataRange(self, name, number_of_components, customRange):
self.lutManager.setDataRange(name, number_of_components, customRange)
@exportRpc("getLutDataRange")
def getLutDataRange(self, name, number_of_components):
return self.lutManager.getDataRange(name, number_of_components)
# =============================================================================
#
# Filter list
#
# =============================================================================
class ParaViewWebFilterList(ParaViewWebProtocol):
def __init__(self, filtersFile=None):
super(ParaViewWebFilterList, self).__init__()
self.filterFile = filtersFile
@exportRpc("listFilters")
def listFilters(self):
filterSet = []
if self.filterFile is None :
filterSet = [{
'name': 'Cone',
'icon': 'dataset',
'category': 'source'
},{
'name': 'Sphere',
'icon': 'dataset',
'category': 'source'
},{
'name': 'Wavelet',
'icon': 'dataset',
'category': 'source'
},{
'name': 'Clip',
'icon': 'clip',
'category': 'filter'
},{
'name': 'Slice',
'icon': 'slice',
'category': 'filter'
},{
'name': 'Contour',
'icon': 'contour',
'category': 'filter'
},{
'name': 'Threshold',
'icon': 'threshold',
'category': 'filter'
},{
'name': 'StreamTracer',
'icon': 'stream',
'category': 'filter'
},{
'name': 'WarpByScalar',
'icon': 'filter',
'category': 'filter'
}]
else :
with open(self.filterFile, 'r') as fd:
filterSet = json.loads(fd.read())
if servermanager.ActiveConnection.GetNumberOfDataPartitions() > 1:
filterSet.append({ 'name': 'D3', 'icon': 'filter', 'category': 'filter' })
return filterSet
# =============================================================================
#
# Remote file list
#
# =============================================================================
class ParaViewWebFileManager(ParaViewWebProtocol):
def __init__(self, defaultDirectoryToList):
super(ParaViewWebFileManager, self).__init__()
self.directory = defaultDirectoryToList
self.dirCache = None
@exportRpc("listFiles")
def listFiles(self):
if not self.dirCache:
self.dirCache = helper.listFiles(self.directory)
return self.dirCache
# =============================================================================
#
# Handle remote Connection
#
# =============================================================================
class ParaViewWebRemoteConnection(ParaViewWebProtocol):
@exportRpc("connect")
def connect(self, options):
"""
Creates a connection to a remote pvserver.
Expect an option argument which should override any of
those default properties::
{
'host': 'localhost',
'port': 11111,
'rs_host': None,
'rs_port': 11111
}
"""
ds_host = "localhost"
ds_port = 11111
rs_host = None
rs_port = 11111
if options:
if options.has_key("host"):
ds_host = options["host"]
if options.has_key("port"):
ds_port = options["port"]
if options.has_key("rs_host"):
rs_host = options["rs_host"]
if options.has_key("rs_port"):
rs_host = options["rs_port"]
simple.Connect(ds_host, ds_port, rs_host, rs_port)
@exportRpc("reverseConnect")
def reverseConnect(self, port=11111):
"""
Create a reverse connection to a server. Listens on port and waits for
an incoming connection from the server.
"""
simple.ReverseConnect(port)
@exportRpc("pvDisconnect")
def pvDisconnect(self, message):
"""Free the current active session"""
simple.Disconnect()
# =============================================================================
#
# Handle remote Connection at startup
#
# =============================================================================
class ParaViewWebStartupRemoteConnection(ParaViewWebProtocol):
connected = False
def __init__(self, dsHost = None, dsPort = 11111, rsHost=None, rsPort=22222):
super(ParaViewWebStartupRemoteConnection, self).__init__()
if not ParaViewWebStartupRemoteConnection.connected and dsHost:
ParaViewWebStartupRemoteConnection.connected = True
simple.Connect(dsHost, dsPort, rsHost, rsPort)
# =============================================================================
#
# Handle plugin loading at startup
#
# =============================================================================
class ParaViewWebStartupPluginLoader(ParaViewWebProtocol):
loaded = False
def __init__(self, plugins=None, pathSeparator=':'):
super(ParaViewWebStartupPluginLoader, self).__init__()
if not ParaViewWebStartupPluginLoader.loaded and plugins:
ParaViewWebStartupPluginLoader.loaded = True
for path in plugins.split(pathSeparator):
simple.LoadPlugin(path, ns=globals())
# =============================================================================
#
# Handle State Loading
#
# =============================================================================
class ParaViewWebStateLoader(ParaViewWebProtocol):
def __init__(self, state_path = None):
super(ParaViewWebStateLoader, self).__init__()
if state_path and state_path[-5:] == '.pvsm':
self.loadState(state_path)
@exportRpc("loadState")
def loadState(self, state_file):
"""
Load a state file and return the list of view ids
"""
simple.LoadState(state_file)
ids = []
for view in simple.GetRenderViews():
ids.append(view.GetGlobalIDAsString())
return ids
# =============================================================================
#
# Handle Server File Listing
#
# =============================================================================
class ParaViewWebFileListing(ParaViewWebProtocol):
def __init__(self, basePath, name, excludeRegex=r"^\.|~$|^\$", groupRegex=r"[0-9]+\."):
"""
Configure the way the WebFile browser will expose the server content.
- basePath: specify the base directory that we should start with
- name: Name of that base directory that will show up on the web
- excludeRegex: Regular expression of what should be excluded from the list of files/directories
"""
self.baseDirectory = basePath
self.rootName = name
self.pattern = re.compile(excludeRegex)
self.gPattern = re.compile(groupRegex)
pxm = simple.servermanager.ProxyManager()
self.directory_proxy = pxm.NewProxy('misc', 'ListDirectory')
self.fileList = simple.servermanager.VectorProperty(self.directory_proxy,self.directory_proxy.GetProperty('FileList'))
self.directoryList = simple.servermanager.VectorProperty(self.directory_proxy,self.directory_proxy.GetProperty('DirectoryList'))
@exportRpc("listServerDirectory")
def listServerDirectory(self, relativeDir='.'):
"""
RPC Callback to list a server directory relative to the basePath
provided at start-up.
"""
path = [ self.rootName ]
if len(relativeDir) > len(self.rootName):
relativeDir = relativeDir[len(self.rootName)+1:]
path += relativeDir.replace('\\','/').split('/')
currentPath = os.path.join(self.baseDirectory, relativeDir)
self.directory_proxy.List(currentPath)
# build file/dir lists
files = []
if len(self.fileList) > 1:
for f in self.fileList.GetData():
if not re.search(self.pattern, f):
files.append( { 'label': f })
elif len(self.fileList) == 1 and not re.search(self.pattern, self.fileList.GetData()):
files.append( { 'label': self.fileList.GetData() })
dirs = []
if len(self.directoryList) > 1:
for d in self.directoryList.GetData():
if not re.search(self.pattern, d):
dirs.append(d)
elif len(self.directoryList) == 1 and not re.search(self.pattern, self.directoryList.GetData()):
dirs.append(self.directoryList.GetData())
result = { 'label': relativeDir, 'files': files, 'dirs': dirs, 'groups': [], 'path': path }
if relativeDir == '.':
result['label'] = self.rootName
# Filter files to create groups
files.sort()
groups = result['groups']
groupIdx = {}
filesToRemove = []
for file in files:
fileSplit = re.split(self.gPattern, file['label'])
if len(fileSplit) == 2:
filesToRemove.append(file)
gName = '*.'.join(fileSplit)
if groupIdx.has_key(gName):
groupIdx[gName]['files'].append(file['label'])
else:
groupIdx[gName] = { 'files' : [file['label']], 'label': gName }
groups.append(groupIdx[gName])
for file in filesToRemove:
gName = '*.'.join(re.split(self.gPattern, file['label']))
if len(groupIdx[gName]['files']) > 1:
files.remove(file)
else:
groups.remove(groupIdx[gName])
return result
# =============================================================================
#
# Handle Data Selection
#
# =============================================================================
from vtkPVClientServerCoreRenderingPython import *
from vtkCommonCorePython import *
class ParaViewWebSelectionHandler(ParaViewWebProtocol):
def __init__(self):
self.active_view = None
self.previous_interaction = -1
self.selection_type = -1
@exportRpc("startSelection")
def startSelection(self, viewId, selectionType):
"""
Method used to initialize an interactive selection
"""
self.active_view = self.getView(viewId)
if self.active_view.IsSelectionAvailable():
self.previous_interaction = self.active_view.InteractionMode
self.active_view.InteractionMode = vtkPVRenderView.INTERACTION_MODE_SELECTION
else:
self.active_view = None
@exportRpc("endSelection")
def endSelection(self, area, extract):
"""
Method used to finalize an interactive selection by providing
the [ startPointX, startPointY, endPointX, endPointY ] area
where (0,0) match the lower left corner of the pixel screen.
"""
if self.active_view:
self.active_view.InteractionMode = self.previous_interaction
representations = vtkCollection()
sources = vtkCollection()
if self.selection_type == 0:
self.active_view.SelectSurfacePoints(area, representations, sources, False)
elif self.selection_type == 1:
self.active_view.SelectSurfaceCells(area, representations, sources, False)
elif self.selection_type == 2:
self.active_view.SelectFrustumPoints(area, representations, sources, False)
elif self.selection_type == 3:
self.active_view.SelectFrustumCells(area, representations, sources, False)
else:
self.active_view.SelectSurfacePoints(area, representations, sources, False)
# Don't know what to do if more than one representation/source
if representations.GetNumberOfItems() == sources.GetNumberOfItems() and sources.GetNumberOfItems() == 1:
# We are good for selection
rep = servermanager._getPyProxy(representations.GetItemAsObject(0))
selection = servermanager._getPyProxy(sources.GetItemAsObject(0))
if extract:
extract = simple.ExtractSelection(Input=rep.Input, Selection=selection)
simple.Show(extract)
simple.Render()
else:
rep.Input.SMProxy.SetSelectionInput(0, selection.SMProxy, 0)
# =============================================================================
#
# Handle Data Export
#
# =============================================================================
class ParaViewWebExportData(ParaViewWebProtocol):
def __init__(self, basePath):
self.base_export_path = basePath
@exportRpc("exportData")
def exportData(self, proxy_id, path):
proxy = self.mapIdToProxy(proxy_id)
fullpath = str(os.path.join(self.base_export_path, str(path)))
if fullpath.index('.vtk') == -1:
fullpath += '.vtk'
parentDir = os.path.dirname(fullpath)
if not os.path.exists(parentDir):
os.makedirs(parentDir)
if proxy:
writer = simple.DataSetWriter(Input=proxy, FileName=fullpath)
writer.UpdatePipeline()
del writer
|