-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServerManager.Gotchyas.txt
79 lines (59 loc) · 3.3 KB
/
ServerManager.Gotchyas.txt
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
--------------------------------------------------------------------------------
Plugin that use SMProxy have to be linked with the Protobuf library
--------------------------------------------------------------------------------
virtual vtkSMObject* vtkSMOutputPort::GetDataObjectProxy(int recheck) is no
longer available. Do we need it?
--------------------------------------------------------------------------------
Fix progress related things in vtkSMSourceProxy and vtkSMOutputPort.
--------------------------------------------------------------------------------
Need a centralized/clean stream processing error capture mechanisms for protobuf
messages.
--------------------------------------------------------------------------------
vtkSMProxyListDomain and state save/restore.
--------------------------------------------------------------------------------
vtkSMWriterProxy needs a ErrorCode information property.
--------------------------------------------------------------------------------
Fix progress related stuff in vtkSMWriterProxy.
* vtkPVMPICommunicator::ReceiveDataInternal
--------------------------------------------------------------------------------
Fix error-reporting-disabling in vtkPMWriterProxy::CreateVTKObjects
--------------------------------------------------------------------------------
Fix extract selection proxies in source proxy and representations. We will now
have a separate manager that deals with showing selections
--------------------------------------------------------------------------------
Fix AutoMPI
--------------------------------------------------------------------------------
vtkPVTimerInformation::CopyFromObject
--------------------------------------------------------------------------------
Interaction undo stacks in pqRenderView -- these are silly. Do we need to
support them?
--------------------------------------------------------------------------------
Fix PluginManager (both SM and Qt).
Need to fix loading of server-side XML when a remote plugin is loaded.
Add support to load xml plugins in vtkPVPluginLoader::LoadPlugin.
--------------------------------------------------------------------------------
pqServerManagerSelectionModel::getProxy
--------------------------------------------------------------------------------
pqProgressManager
************** FIXED ***********************************************************
--------------------------------------------------------------------------------
vtkSMSourceProxy::CreatePorts() had following code. That needs to handled correctly.
if (this->DoInsertExtractPieces)
{
for(; it != this->PInternals->OutputPorts.end(); it++)
{
it->Port.GetPointer()->CreateTranslatorIfNecessary();
if (strcmp(this->GetVTKClassName(), "vtkPVEnSightMasterServerReader") != 0 &&
this->GetNumberOfAlgorithmRequiredInputPorts() == 0)
{
it->Port.GetPointer()->InsertExtractPiecesIfNecessary();
}
}
}
*** RESOLUTION: Handled in vtkPMSourceProxy.
--------------------------------------------------------------------------------
vtkSMOutputPort::GatherClassNameInformation() needs to be fixed.
** FIXED.
--------------------------------------------------------------------------------
Need to catch interpreter error and abort as was done earlier.
** FIXED in vtkSMSessionCore.