/usr/include/paraview/pqServer.h is in paraview-dev 5.0.1+dfsg1-4.
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 | /*=========================================================================
Program: ParaView
Module: pqServer.h
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#ifndef _pqServer_h
#define _pqServer_h
class vtkObject;
class pqTimeKeeper;
class vtkProcessModule;
class vtkPVOptions;
class vtkPVServerInformation;
class vtkPVXMLElement;
class vtkSMApplication;
class vtkSMProxy;
class vtkSMProxySelectionModel;
class vtkSMRenderViewProxy;
class vtkSMSession;
class vtkSMSessionProxyManager;
#include "pqCoreModule.h"
#include "pqServerManagerModelItem.h"
#include "pqServerResource.h"
#include "pqTimer.h"
#include "vtkSmartPointer.h"
#include "vtkSMMessageMinimal.h"
#include "vtkWeakPointer.h"
#include <QPointer>
/// pqServer (should be renamed to pqSession) is a pqServerManagerModelItem
/// subclass that represents a vtkSMSession. Besides providing API to access
/// vtkSMSession, it also performs some initialization of session-related
/// proxies such as time-keeper and global-mapper-properties proxies.
class PQCORE_EXPORT pqServer : public pqServerManagerModelItem
{
Q_OBJECT
public:
pqServer(vtkIdType connectionId, vtkPVOptions*, QObject* parent = NULL);
virtual ~pqServer();
const pqServerResource& getResource();
void setResource(const pqServerResource &server_resource);
/// Returns the session instance which the pqServer represents.
vtkSMSession* session() const;
/// Returns the connection id for the server connection.
vtkIdType GetConnectionID() const;
vtkIdType sessionId() const { return this->GetConnectionID(); }
/// Returns the proxy manager for this session.
vtkSMSessionProxyManager* proxyManager() const;
/// Sources selection model is used to keep track of sources currently
/// selected on this session/server-connection.
vtkSMProxySelectionModel* activeSourcesSelectionModel() const;
/// View selection model is used to keep track of active view.
vtkSMProxySelectionModel* activeViewSelectionModel() const;
/// Return the number of data server partitions on this
/// server connection. A convenience method.
int getNumberOfPartitions();
/// Returns is this connection is a connection to a remote
/// server or a built-in server.
bool isRemote() const;
/// Returns true if the client is currently master. For non-collaborative
/// session, it always return true.
bool isMaster() const;
/// Returns true if the client is currently processing remote messages
/// and still have more to process.
/// This method is used to deffered the tryRender.
bool isProcessingPending() const;
/// Returns true is this connection has a separate render-server and
/// data-server.
bool isRenderServerSeparate();
/// Returns the time keeper for this connection.
pqTimeKeeper* getTimeKeeper() const;
/// Returns the PVOptions for this connection. These are client side options.
vtkPVOptions* getOptions() const;
/// Returns the vtkPVServerInformation object which contains information about
/// the command line options specified on the remote server, if any.
vtkPVServerInformation* getServerInformation() const;
/// Returns true if the client is waiting on some actions from the server that
/// typically result in progress events.
bool isProgressPending() const;
/// Get/Set the application wide heart beat timeout setting.
/// Heartbeats are used in case of remote server connections to avoid the
/// connection timing out due to inactivity. When set, the client send a
/// heartbeat message to all servers every \c msec milliseconds.
static void setHeartBeatTimeoutSetting(int msec);
static int getHeartBeatTimeoutSetting();
/// enable/disable monitoring of server notifications.
void setMonitorServerNotifications(bool);
signals:
/// Fired when the name of the proxy is changed.
void nameChanged(pqServerManagerModelItem*);
/// Fired about 5 minutes before the server timesout. This signal will not be
/// fired at all if server timeout < 5 minutes. The server timeout is
/// specified by --timeout option on the server process.
/// This is not fired if timeout is not specified on the server process.
void fiveMinuteTimeoutWarning();
/// Fired about 1 minute before the server timesout.
/// The server timeout is specified by --timeout option on the server process.
/// This is not fired if timeout is not specified on the server process.
void finalTimeoutWarning();
/// Fired if any server side crash or disconnection occured.
void serverSideDisconnected();
protected:
/// Returns the string key used for the heart beat time interval.
static const char* HEARBEAT_TIME_SETTING_KEY();
/// Set the heartbeat timeout for this instance of pqServer.
void setHeartBeatTimeout(int msec);
// ---- Collaboration client-to-clients communication mechanisme ----
signals:
/// Allow user to listen messages from other clients.
/// But if you plan to push some state by for example calling
/// the sendToOtherClients(vtkSMMessage*) slot, you MUST queued your slot.
/// Otherwise your communication will not be sent to the server.
/// Here is a code sample on how to connect to that signal:
///
/// QObject::connect( server, SIGNAL(sentFromOtherClient(vtkSMMessage*)),
/// this, SLOT(onClientMessage(vtkSMMessage*)),
/// Qt::QueuedConnection);
void sentFromOtherClient(pqServer*,vtkSMMessage* msg);
/// Signal triggered when user information get updated
void triggeredMasterUser(int);
void triggeredUserName(int, QString&);
void triggeredUserListChanged();
void triggerFollowCamera(int);
public slots:
/// Allow user to broadcast to other client a given message
void sendToOtherClients(vtkSMMessage* msg);
// ---- Collaboration client-to-clients communication mechanisme ----
protected slots:
/// Called to send a heartbeat to the server.
void heartBeat();
/// Called when idle to look for server notification for collaboration purpose
void processServerNotification();
/// Called by vtkSMCollaborationManager when associated message happen.
/// This will convert the given parameter into vtkSMMessage and
/// emit sentFromOtherClient(pqServer*,vtkSMMessage*) signal.
void onCollaborationCommunication(vtkObject*, unsigned long, void*, void*);
/// Called by vtkSMSessionClient is any communication error occured with the
/// server. This usually mean that the server side is dead.
void onConnectionLost(vtkObject*, unsigned long, void*, void*);
private:
pqServer(const pqServer&); // Not implemented.
pqServer& operator=(const pqServer&); // Not implemented.
pqServerResource Resource;
vtkIdType ConnectionID;
vtkWeakPointer<vtkSMSession> Session;
// TODO:
// Each connection will eventually have a PVOptions object.
// For now, this is same as the vtkProcessModule::Options.
vtkSmartPointer<vtkPVOptions> Options;
pqTimer IdleCollaborationTimer;
class pqInternals;
pqInternals* Internals;
};
#endif // !_pqServer_h
|