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
|
/*=========================================================================
Program: ParaView
Module: vtkProcessModule.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkProcessModule.h"
#include "vtkProcessModuleInternals.h"
#include "vtkAlgorithm.h"
#include "vtkCommand.h"
#include "vtkCompositeDataPipeline.h"
#include "vtkDummyController.h"
#include "vtkFloatingPointExceptions.h"
#include "vtkMultiThreader.h"
#include "vtkNew.h"
#include "vtkObjectFactory.h"
#include "vtkOutputWindow.h"
#include "vtkPSystemTools.h"
#include "vtkPVConfig.h"
#include "vtkPVConfig.h"
#include "vtkPVOptions.h"
#include "vtkSessionIterator.h"
#include "vtkStdString.h"
#include "vtkTCPNetworkAccessManager.h"
#include <vtksys/SystemTools.hxx>
#ifdef PARAVIEW_USE_MPI
# include "vtkMPIController.h"
# include "vtkMPI.h"
#endif
#ifdef PARAVIEW_ENABLE_PYTHON
# include "vtkProcessModuleInitializePython.h"
#endif
#ifdef _WIN32
# include "vtkDynamicLoader.h"
#else
# include <signal.h>
#endif
// this include is needed to ensure that vtkPVPluginLoader singleton doesn't get
// destroyed before the process module singleton is cleaned up.
#include "vtkPVPluginLoader.h"
#include <assert.h>
#include <stdexcept> // for runtime_error
#include <clocale> // needed for setlocale()
namespace
{
#ifdef PARAVIEW_USE_MPI
// Returns true if the arguments has the specified boolean_arg.
bool vtkFindArgument(const char* boolean_arg,
int argc, char** &argv)
{
for (int cc=0; cc < argc; cc++)
{
if (argv[cc] != NULL && strcmp(argv[cc], boolean_arg) == 0)
{
return true;
}
}
return false;
}
#endif
// This is used to avoid creating vtkWin32OutputWindow on ParaView executables.
// vtkWin32OutputWindow is not a useful window for any of the ParaView commandline
// executables.
class vtkPVGenericOutputWindow : public vtkOutputWindow
{
public:
vtkTypeMacro(vtkPVGenericOutputWindow, vtkOutputWindow);
static vtkPVGenericOutputWindow* New();
private:
vtkPVGenericOutputWindow() {}
~vtkPVGenericOutputWindow() {}
};
vtkStandardNewMacro(vtkPVGenericOutputWindow);
}
//----------------------------------------------------------------------------
// * STATICS
vtkProcessModule::ProcessTypes
vtkProcessModule::ProcessType = vtkProcessModule::PROCESS_INVALID;
bool vtkProcessModule::FinalizeMPI = false;
bool vtkProcessModule::FinalizePython = false;
vtkSmartPointer<vtkProcessModule> vtkProcessModule::Singleton;
vtkSmartPointer<vtkMultiProcessController> vtkProcessModule::GlobalController;
//----------------------------------------------------------------------------
bool vtkProcessModule::Initialize(ProcessTypes type, int &argc, char** &argv)
{
// We force LC_NUMERIC to C - it is important as Qt sets locale to the user's
// environment locale value and this might break some basic features like
// the calls to atof() that are locale dependent.
vtksys::SystemTools::PutEnv("LC_NUMERIC=C");
vtkProcessModule::ProcessType = type;
vtkProcessModule::GlobalController = vtkSmartPointer<vtkDummyController>::New();
#ifdef PARAVIEW_USE_MPI
bool use_mpi = (type != PROCESS_CLIENT);
// scan the arguments to determine if we need to initialize MPI on client.
bool default_use_mpi = use_mpi;
if (!use_mpi) // i.e. type == PROCESS_CLIENT.
{
#if defined(PARAVIEW_INITIALIZE_MPI_ON_CLIENT)
default_use_mpi = true;
#endif
}
// Refer to vtkPVOptions.cxx for details.
if (vtkFindArgument("--mpi", argc, argv))
{
default_use_mpi = true;
}
else if (vtkFindArgument("--no-mpi", argc, argv))
{
default_use_mpi = false;
}
use_mpi = default_use_mpi;
// initialize MPI only on all processes if paraview is compiled w/MPI.
int mpi_already_initialized = 0;
MPI_Initialized(&mpi_already_initialized);
if (mpi_already_initialized == 0 && use_mpi)
{
// MPICH changes the current working directory after MPI_Init. We fix that
// by changing the CWD back to the original one after MPI_Init.
std::string cwd = vtksys::SystemTools::GetCurrentWorkingDirectory(true);
// This is here to avoid false leak messages from vtkDebugLeaks when
// using mpich. It appears that the root process which spawns all the
// main processes waits in MPI_Init() and calls exit() when
// the others are done, causing apparent memory leaks for any objects
// created before MPI_Init().
MPI_Init(&argc, &argv);
// restore CWD to what it was before the MPI intialization.
vtksys::SystemTools::ChangeDirectory(cwd.c_str());
vtkProcessModule::FinalizeMPI = true;
} // END if MPI is already initialized
if (use_mpi || mpi_already_initialized)
{
if(vtkMPIController* controller = vtkMPIController::SafeDownCast(
vtkMultiProcessController::GetGlobalController()))
{
vtkProcessModule::GlobalController = controller;
}
else
{
vtkProcessModule::GlobalController = vtkSmartPointer<vtkMPIController>::New();
vtkProcessModule::GlobalController->Initialize(
&argc, &argv, /*initializedExternally*/1);
}
// Get number of ranks in this process group
int numRanks = vtkProcessModule::GlobalController->GetNumberOfProcesses();
// Ensure that the user cannot run a client with more than one rank.
if (type==PROCESS_CLIENT && numRanks > 1)
{
throw std::runtime_error("Client process should be run with one process!");
}
}
#else
static_cast<void>(argc); // unused warning when MPI is off
static_cast<void>(argv); // unused warning when MPI is off
#endif // PARAVIEW_USE_MPI
vtkProcessModule::GlobalController->BroadcastTriggerRMIOn();
vtkMultiProcessController::SetGlobalController(
vtkProcessModule::GlobalController);
// Hack to support -display parameter. vtkPVOptions requires parameters to be
// specified as -option=value, but it is generally expected that X window
// programs allow you to set the display as -display host:port (i.e. without
// the = between the option and value). Unless someone wants to change
// vtkPVOptions to work with or without the = (which may or may not be a good
// idea), then this is the easiest way around the problem.
for (int i = 1; i < argc-1; i++)
{
if (strcmp(argv[i], "-display") == 0)
{
char *displayenv = new char[strlen(argv[i+1]) + 10];
sprintf(displayenv, "DISPLAY=%s", argv[i+1]);
vtksys::SystemTools::PutEnv(displayenv);
delete [] displayenv;
// safe to delete since PutEnv keeps a copy of the string.
argc -= 2;
for (int j = i; j < argc; j++)
{
argv[j] = argv[j+2];
}
argv[argc] = NULL;
break;
}
}
#ifdef _WIN32
// Avoid Ghost windows on windows XP
typedef void (* VOID_FUN)();
vtkLibHandle lib = vtkDynamicLoader::OpenLibrary("user32.dll");
if(lib)
{
VOID_FUN func = (VOID_FUN)
vtkDynamicLoader::GetSymbolAddress(lib, "DisableProcessWindowsGhosting");
if(func)
{
(*func)();
}
}
#endif // _WIN32
#ifdef PARAVIEW_ENABLE_FPE
vtkFloatingPointExceptions::Enable();
#endif //PARAVIEW_ENABLE_FPE
if (vtkProcessModule::ProcessType != PROCESS_CLIENT)
{
// On non-client processes, we don't want VTK default output window esp. on
// Windows since that pops up too many windows. Hence we replace it.
vtkNew<vtkPVGenericOutputWindow> window;
vtkOutputWindow::SetInstance(window.GetPointer());
}
// In general turn off error prompts. This is where the process waits for
// user-input on any error/warning. In past, we turned on prompts on Windows.
// However, for client processes, we capture the error messages in the UI and
// for the server-processes, prompts can cause unnecessary interruptions hence
// we turn off prompts all together.
vtkOutputWindow::GetInstance()->PromptUserOff();
#ifdef PARAVIEW_USE_MPI_SSEND
vtkMPIController::SetUseSsendForRMI(1);
#endif
vtkMultiThreader::SetGlobalMaximumNumberOfThreads(1);
// The running dashboard tests avoid showing the abort/retry popup dialog.
vtksys::SystemTools::EnableMSVCDebugHook();
#ifndef _WIN32
// When trying to send data to a socket/pipe and that socket/pipe is
// closed/broken, the system will trigger a SIGPIPE signal which has by
// default a quit/crash handler that won't give you any chance to handle the
// error in any way.
// Instead, we ignore the default handler to properly capture the error and
// eventually provide some type of recovery.
signal(SIGPIPE, SIG_IGN);
#endif
// Create the process module.
vtkProcessModule::Singleton = vtkSmartPointer<vtkProcessModule>::New();
vtkProcessModule::Singleton->DetermineExecutablePath(argc, argv);
vtkProcessModule::Singleton->InitializePythonEnvironment();
return true;
}
//----------------------------------------------------------------------------
bool vtkProcessModule::Finalize()
{
#ifdef PARAVIEW_ENABLE_PYTHON
// Finalize Python before anything else. This ensures that all proxy
// references are removed before the process module disappears.
if (vtkProcessModule::FinalizePython && vtkPythonInterpreter::IsInitialized())
{
vtkPythonInterpreter::Finalize();
}
#endif
if(vtkProcessModule::Singleton)
{
// Make sure no session are kept inside ProcessModule so SessionProxyManager
// could cleanup their Proxies before the ProcessModule get deleted.
vtkProcessModule::Singleton->Internals->Sessions.clear();
vtkProcessModule::Singleton->InvokeEvent(vtkCommand::ExitEvent);
}
// destroy the process-module.
vtkProcessModule::Singleton = NULL;
// We don't really need to call SetGlobalController(NULL) since
// it's really stored with a weak pointer. We set it to null anyways
// in case it gets changed later to reference counting the pointer
vtkMultiProcessController::SetGlobalController(NULL);
vtkProcessModule::GlobalController->Finalize(/*finalizedExternally*/1);
vtkProcessModule::GlobalController = NULL;
#ifdef PARAVIEW_USE_MPI
if (vtkProcessModule::FinalizeMPI)
{
MPI_Barrier(MPI_COMM_WORLD);
MPI_Finalize();
// prevent caling MPI_Finalize() twice
vtkProcessModule::FinalizeMPI = false;
}
#endif
return true;
}
//----------------------------------------------------------------------------
vtkProcessModule::ProcessTypes vtkProcessModule::GetProcessType()
{
return vtkProcessModule::ProcessType;
}
//----------------------------------------------------------------------------
void vtkProcessModule::UpdateProcessType(ProcessTypes newType, bool dontKnowWhatImDoing/*=true*/)
{
if(dontKnowWhatImDoing)
{
vtkWarningMacro("UpdateProcessType from "
<< vtkProcessModule::ProcessType << " to " << newType);
}
vtkProcessModule::ProcessType = newType;
}
//----------------------------------------------------------------------------
vtkProcessModule* vtkProcessModule::GetProcessModule()
{
return vtkProcessModule::Singleton.GetPointer();
}
//----------------------------------------------------------------------------
// * vtkProcessModule non-static methods
vtkStandardNewMacro(vtkProcessModule);
vtkCxxSetObjectMacro(vtkProcessModule, NetworkAccessManager,
vtkNetworkAccessManager);
//----------------------------------------------------------------------------
vtkProcessModule::vtkProcessModule()
{
this->NetworkAccessManager = vtkTCPNetworkAccessManager::New();
this->Options = 0;
this->Internals = new vtkProcessModuleInternals();
this->MaxSessionId = 0;
this->ReportInterpreterErrors = true;
this->SymmetricMPIMode = false;
this->MultipleSessionsSupport = false; // Set MULTI-SERVER to false as DEFAULT
this->EventCallDataSessionId = 0;
vtkCompositeDataPipeline* cddp = vtkCompositeDataPipeline::New();
vtkAlgorithm::SetDefaultExecutivePrototype(cddp);
cddp->Delete();
}
//----------------------------------------------------------------------------
vtkProcessModule::~vtkProcessModule()
{
vtkAlgorithm::SetDefaultExecutivePrototype(NULL);
this->SetNetworkAccessManager(NULL);
this->SetOptions(NULL);
delete this->Internals;
this->Internals = 0;
}
//----------------------------------------------------------------------------
vtkIdType vtkProcessModule::RegisterSession(vtkSession* session)
{
assert(session != NULL);
this->MaxSessionId++;
this->Internals->Sessions[this->MaxSessionId] = session;
this->EventCallDataSessionId = this->MaxSessionId;
this->InvokeEvent(vtkCommand::ConnectionCreatedEvent, &this->MaxSessionId);
this->EventCallDataSessionId = 0;
return this->MaxSessionId;
}
//----------------------------------------------------------------------------
bool vtkProcessModule::UnRegisterSession(vtkIdType sessionID)
{
vtkProcessModuleInternals::MapOfSessions::iterator iter =
this->Internals->Sessions.find(sessionID);
if (iter != this->Internals->Sessions.end())
{
this->EventCallDataSessionId = sessionID;
this->InvokeEvent(vtkCommand::ConnectionClosedEvent, &sessionID);
this->EventCallDataSessionId = 0;
this->Internals->Sessions.erase(iter);
return true;
}
return false;
}
//----------------------------------------------------------------------------
bool vtkProcessModule::UnRegisterSession(vtkSession* session)
{
vtkProcessModuleInternals::MapOfSessions::iterator iter;
for (iter = this->Internals->Sessions.begin();
iter != this->Internals->Sessions.end(); ++iter)
{
if (iter->second == session)
{
vtkIdType sessionID = iter->first;
this->EventCallDataSessionId = sessionID;
this->InvokeEvent(vtkCommand::ConnectionClosedEvent, &sessionID);
this->EventCallDataSessionId = 0;
this->Internals->Sessions.erase(iter);
return true;
}
}
vtkErrorMacro("Session has not been registered. Cannot unregister : " <<
session);
return false;
}
//----------------------------------------------------------------------------
vtkSession* vtkProcessModule::GetSession(vtkIdType sessionID)
{
vtkProcessModuleInternals::MapOfSessions::iterator iter =
this->Internals->Sessions.find(sessionID);
if (iter != this->Internals->Sessions.end())
{
return iter->second.GetPointer();
}
return NULL;
}
//----------------------------------------------------------------------------
vtkIdType vtkProcessModule::GetSessionID(vtkSession* session)
{
vtkProcessModuleInternals::MapOfSessions::iterator iter;
for (iter = this->Internals->Sessions.begin();
iter != this->Internals->Sessions.end(); ++iter)
{
if (iter->second == session)
{
return iter->first;
}
}
return 0;
}
//----------------------------------------------------------------------------
vtkSessionIterator* vtkProcessModule::NewSessionIterator()
{
vtkSessionIterator* iter = vtkSessionIterator::New();
return iter;
}
//----------------------------------------------------------------------------
vtkMultiProcessController* vtkProcessModule::GetGlobalController()
{
return vtkMultiProcessController::GetGlobalController();
}
//----------------------------------------------------------------------------
int vtkProcessModule::GetNumberOfLocalPartitions()
{
return this->GetGlobalController()?
this->GetGlobalController()->GetNumberOfProcesses() : 1;
}
//----------------------------------------------------------------------------
int vtkProcessModule::GetPartitionId()
{
return this->GetGlobalController()?
this->GetGlobalController()->GetLocalProcessId() : 0;
}
//----------------------------------------------------------------------------
bool vtkProcessModule::IsMPIInitialized()
{
return (this->GetGlobalController() &&
this->GetGlobalController()->IsA("vtkMPIController") != 0);
}
//----------------------------------------------------------------------------
void vtkProcessModule::PushActiveSession(vtkSession* session)
{
assert(session != NULL);
this->Internals->ActiveSessionStack.push_back(session);
}
//----------------------------------------------------------------------------
void vtkProcessModule::PopActiveSession(vtkSession* session)
{
assert(session != NULL);
if (this->Internals->ActiveSessionStack.back() != session)
{
vtkErrorMacro("Mismatch in active-session stack. Aborting for debugging.");
abort();
}
this->Internals->ActiveSessionStack.pop_back();
}
//----------------------------------------------------------------------------
vtkSession* vtkProcessModule::GetActiveSession()
{
if (this->Internals->ActiveSessionStack.size() == 0)
{
return NULL;
}
return this->Internals->ActiveSessionStack.back();
}
//----------------------------------------------------------------------------
vtkSession* vtkProcessModule::GetSession()
{
vtkSession* activeSession = this->GetActiveSession();
if (activeSession)
{
return activeSession;
}
vtkProcessModuleInternals::MapOfSessions::iterator iter;
iter = this->Internals->Sessions.begin();
return (iter != this->Internals->Sessions.end()?
iter->second.GetPointer() : NULL);
}
//----------------------------------------------------------------------------
void vtkProcessModule::SetOptions(vtkPVOptions* options)
{
vtkSetObjectBodyMacro(Options, vtkPVOptions, options);
if (options)
{
this->SetSymmetricMPIMode(
options->GetSymmetricMPIMode() != 0);
}
}
//----------------------------------------------------------------------------
void vtkProcessModule::DetermineExecutablePath(int argc, char* argv[])
{
assert(argc >= 1);
if (argc > 0)
{
std::string errMsg;
if (!vtkPSystemTools::FindProgramPath(argv[0], this->ProgramPath, errMsg))
{
// if FindProgramPath fails. We really don't have much of an alternative
// here. Python module importing is going to fail.
this->ProgramPath = vtkPSystemTools::CollapseFullPath(argv[0]);
}
this->SelfDir = vtksys::SystemTools::GetFilenamePath(this->ProgramPath);
}
else
{
this->SelfDir = vtkPSystemTools::GetCurrentWorkingDirectory(/*collapse=*/true);
this->ProgramPath = this->SelfDir + "/unknown_exe";
}
}
//----------------------------------------------------------------------------
void vtkProcessModule::SetExecutablePath(const std::string& path)
{
this->ProgramPath = vtkPSystemTools::CollapseFullPath(path);
this->SelfDir = vtksys::SystemTools::GetFilenamePath(this->ProgramPath);
}
//----------------------------------------------------------------------------
bool vtkProcessModule::InitializePythonEnvironment()
{
#ifdef PARAVIEW_ENABLE_PYTHON
if (!vtkPythonInterpreter::IsInitialized())
{
// If someone already initialized Python before ProcessModule was started,
// we don't finalize it when ProcessModule finalizes. This is for the cases
// where ParaView modules are directly imported in python (not pvpython).
vtkProcessModule::FinalizePython = true;
}
vtkPythonInterpreter::SetProgramName(this->ProgramPath.c_str());
vtkPythonAppInitPrependPath(this->SelfDir);
#endif
return true;
}
//----------------------------------------------------------------------------
void vtkProcessModule::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "NetworkAccessManager: " << endl;
this->NetworkAccessManager->PrintSelf(os, indent.GetNextIndent());
if (this->Options)
{
os << indent << "Options: " << endl;
this->Options->PrintSelf(os, indent.GetNextIndent());
}
else
{
os << indent << "Options: " << "(null)" << endl;
}
}
|