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
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2010, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-400124
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* 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 LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY 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.
*
*****************************************************************************/
// ************************************************************************* //
// DatabasePluginManager.C //
// ************************************************************************* //
#include <DatabasePluginManager.h>
#include <DatabasePluginInfo.h>
#include <PluginBroadcaster.h>
#include <DebugStream.h>
#include <InvalidPluginException.h>
#include <Utility.h>
#include <visitstream.h>
#include <visit-config.h>
#include <string>
#include <vector>
#include <cstring>
using std::string;
using std::vector;
// ****************************************************************************
// Method: DatabasePluginManager constructor
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Brad Whitlock, Wed Nov 22 16:31:59 PST 2006
// I made it call SetPluginDir since it's no longer done in the base
// class's constructor.
//
// Sean Ahern, Thu Jan 17 16:06:20 EST 2008
// Moved the call to SetPluginDir to Initialize to make it conform
// with the rest of the plugin managers.
//
// ****************************************************************************
DatabasePluginManager::DatabasePluginManager() : PluginManager("database")
{
}
// ****************************************************************************
// Method: DatabasePluginManager destructor
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Brad Whitlock, Wed Jun 25 10:27:17 PDT 2008
// Call UnloadPlugins here since it calls virtual methods for this class.
//
// ****************************************************************************
DatabasePluginManager::~DatabasePluginManager()
{
UnloadPlugins();
}
// ****************************************************************************
// Method: DatabasePluginManager::Initialize
//
// Purpose:
// Initialize the manager and read the plugins.
//
// Arguments:
// pluginCategory: either GUI, Viewer, or Engine
// parallel : true if need parallel libraries
// pluginDir : Allows us to pass in the plugin dir that we want to use.
// readInfo : Whether the plugin info should be read directly.
// broadcaster : An object that can be used to broadcast plugin info.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Sean Ahern, Thu Jan 17 16:10:00 EST 2008
// Added SetPluginDir so that we can find plugins correctly. Arguably,
// this is better here than the constructor.
//
// Brad Whitlock, Tue Jun 24 11:13:19 PDT 2008
// Removed plugin characteristics.
//
// Brad Whitlock, Wed Jun 17 13:05:54 PDT 2009
// I added readInfo, broadcaster arguments to allow parallel optimizations.
//
// ****************************************************************************
void
DatabasePluginManager::Initialize(const PluginCategory pluginCategory,
bool par, const char *pluginDir, bool readInfo, PluginBroadcaster *broadcaster)
{
category = pluginCategory;
parallel = par;
SetPluginDir(pluginDir);
ObtainPluginInfo(readInfo, broadcaster);
}
// ****************************************************************************
// Method: DatabasePluginManager::BroadcastGeneralInfo
//
// Purpose:
// Broadcasts the general libI plugin information to other processors.
//
// Arguments:
// broadcaster : The broadcaster object to use.
//
// Programmer: Brad Whitlock
// Creation: Thu Jun 18 11:30:15 PDT 2009
//
// Modifications:
// Jeremy Meredith, Tue Dec 29 11:40:42 EST 2009
// Replaced "Extensions" and "Filenames" with "FilePatterns". Added
// filePatternsStrict and opensWholeDirectory.
//
// ****************************************************************************
void
DatabasePluginManager::BroadcastGeneralInfo(PluginBroadcaster *broadcaster)
{
PluginManager::BroadcastGeneralInfo(broadcaster);
broadcaster->BroadcastBoolVector(haswriter);
broadcaster->BroadcastStringVectorVector(filePatterns);
broadcaster->BroadcastBoolVector(filePatternsAreStrict);
broadcaster->BroadcastBoolVector(opensWholeDirectory);
}
// ****************************************************************************
// Method: DatabasePluginManager::GetEnginePluginInfo
//
// Purpose:
// Return a pointer to the engine database plugin information for the
// specified database type.
//
// Arguments:
// id The id of the database type.
//
// Returns: The engine database plugin information for the database type.
//
// Programmer: Jeremy Meredith
// Creation: February 22, 2005
//
// Modifications:
// Mark C. Miller, Mon Aug 6 13:36:16 PDT 2007
// Fixed problem where calling this method in a situation where the given
// plugin had not already been loaded would result in defining it in
// loadedindexmap with an index of 0.
//
// Brad Whitlock, Tue Jun 24 16:24:25 PDT 2008
// Added a pointer to this in the info.
//
// ****************************************************************************
EngineDatabasePluginInfo *
DatabasePluginManager::GetEnginePluginInfo(const string &id)
{
if (!PluginLoaded(id))
return 0;
EngineDatabasePluginInfo *info = enginePluginInfo[loadedindexmap[id]];
info->SetPluginManager(this);
return info;
}
// ****************************************************************************
// Method: DatabasePluginManager::GetCommonPluginInfo
//
// Purpose:
// Return a pointer to the common database plugin information for the
// specified database type.
//
// Arguments:
// id The id of the database type.
//
// Returns: The common database plugin information for the database type.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Mark C. Miller, Mon Aug 6 13:36:16 PDT 2007
// Fixed problem where calling this method in a situation where the given
// plugin had not already been loaded would result in defining it in
// loadedindexmap with an index of 0.
//
// Brad Whitlock, Tue Jun 24 16:24:25 PDT 2008
// Added a pointer to this in the info.
//
// ****************************************************************************
CommonDatabasePluginInfo *
DatabasePluginManager::GetCommonPluginInfo(const string &id)
{
if (!PluginLoaded(id))
return 0;
CommonDatabasePluginInfo *info = commonPluginInfo[loadedindexmap[id]];
info->SetPluginManager(this);
return info;
}
// ****************************************************************************
// Method: DatabasePluginManager::LoadGeneralPluginInfo
//
// Purpose:
// Loads general plugin info from the open plugin.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Jeremy Meredith, Wed Nov 5 13:28:03 PST 2003
// Use the default value for enabled status instead of always true.
//
// Jeremy Meredith, Tue Feb 22 15:22:29 PST 2005
// Added a way to determine directly if a plugin has a writer.
//
// Hank Childs, Tue Mar 22 16:06:15 PST 2005
// Fix memory leak.
//
// Mark C. Miller, Mon Aug 6 13:36:16 PDT 2007
// Added code to update extensions and filenames.
//
// Jeremy Meredith, Tue Dec 29 11:40:42 EST 2009
// Replaced "Extensions" and "Filenames" with "FilePatterns". Added
// filePatternsStrict and opensWholeDirectory.
//
// ****************************************************************************
bool
DatabasePluginManager::LoadGeneralPluginInfo()
{
// Get the GeneralPluginInfo creator
GeneralDatabasePluginInfo *(*getInfo)(void) =
(GeneralDatabasePluginInfo*(*)(void))PluginSymbol("GetGeneralInfo");
if (!getInfo)
{
EXCEPTION3(InvalidPluginException, "Error retrieving info creator",
openPlugin.c_str(), PluginError());
}
// Get the general plugin info
GeneralDatabasePluginInfo *info = (*getInfo)();
if (!info)
{
EXCEPTION2(InvalidPluginException, "Error creating general info",
openPlugin.c_str());
}
// We can't have two plugins with the same id.
if (PluginExists(info->GetID()))
{
delete info;
return false;
}
// Success! Add it to the list.
allindexmap[info->GetID()] = ids.size();
ids .push_back(info->GetID());
names .push_back(info->GetName());
versions .push_back(info->GetVersion());
enabled .push_back(info->EnabledByDefault());
haswriter .push_back(info->HasWriter());
filePatterns.push_back(info->GetDefaultFilePatterns());
filePatternsAreStrict.push_back(info->AreDefaultFilePatternsStrict());
opensWholeDirectory.push_back(info->OpensWholeDirectory());
delete info;
return true;
}
// ****************************************************************************
// Method: DatabasePluginManager::LoadEnginePluginInfo
//
// Purpose:
// Loads engine plugin info from the open plugin.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
//
// ****************************************************************************
void
DatabasePluginManager::LoadEnginePluginInfo()
{
EngineDatabasePluginInfo *(*getEngineInfo)(void) =
(EngineDatabasePluginInfo* (*)(void))PluginSymbol("GetEngineInfo");
if (!getEngineInfo)
{
EXCEPTION2(InvalidPluginException,
"Error retrieving Engine info",
openPlugin.c_str());
}
enginePluginInfo.push_back((*getEngineInfo)());
commonPluginInfo.push_back((*getEngineInfo)());
}
// ****************************************************************************
// Method: DatabasePluginManager::LoadMDServerPluginInfo
//
// Purpose:
// Loads mdserver plugin info from the open plugin.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
//
// ****************************************************************************
void
DatabasePluginManager::LoadMDServerPluginInfo()
{
MDServerDatabasePluginInfo *(*getMDServerInfo)(void) =
(MDServerDatabasePluginInfo* (*)(void))PluginSymbol("GetMDServerInfo");
if (!getMDServerInfo)
{
EXCEPTION2(InvalidPluginException,
"Error retrieving MDServer info",
openPlugin.c_str());
}
mdserverPluginInfo.push_back((*getMDServerInfo)());
commonPluginInfo.push_back((*getMDServerInfo)());
}
// ****************************************************************************
// Method: DatabasePluginManager::FreeCommonPluginInfo
//
// Purpose:
// Frees common plugin info.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
//
// ****************************************************************************
void
DatabasePluginManager::FreeCommonPluginInfo()
{
for (size_t i=0; i<commonPluginInfo.size(); i++)
delete commonPluginInfo[i];
commonPluginInfo.clear();
}
// ****************************************************************************
// Method: DatabasePluginManager::ReloadPlugins
//
// Purpose:
// Free the loaded database plugins.
//
// Programmer: Jeremy Meredith
// Creation: August 22, 2002
//
// Modifications:
// Jeremy Meredith, Fri Feb 28 12:25:37 PST 2003
// Made it use LoadPluginsNow or LoadPluginsOnDemand as appropriate.
//
// ****************************************************************************
void
DatabasePluginManager::ReloadPlugins()
{
vector<void*> new_handles;
vector<CommonDatabasePluginInfo*> new_commonPluginInfo;
loadedindexmap.clear();
for (size_t i=0; i<loadedhandles.size(); i++)
{
if (enabled[allindexmap[commonPluginInfo[i]->GetID()]])
{
loadedindexmap[commonPluginInfo[i]->GetID()] = new_handles.size();
new_commonPluginInfo.push_back(commonPluginInfo[i]);
new_handles.push_back(loadedhandles[i]);
}
else
{
delete commonPluginInfo[i];
handle = loadedhandles[i];
PluginClose();
}
}
commonPluginInfo = new_commonPluginInfo;
loadedhandles = new_handles;
if (loadOnDemand)
LoadPluginsOnDemand();
else
LoadPluginsNow();
}
// ****************************************************************************
// Method: DatabasePluginManager::PluginHasWriter
//
// Purpose:
// Returns true if a database plugin has a writer method.
//
// Arguments:
// id the plugin id
//
// Programmer: Jeremy Meredith
// Creation: February 22, 2005
//
// ****************************************************************************
bool
DatabasePluginManager::PluginHasWriter(const string &id)
{
bool retval = false;
if(allindexmap.find(id) != allindexmap.end())
{
int index = allindexmap[id];
if(index < names.size())
retval = haswriter[index];
}
return retval;
}
// ****************************************************************************
// Method: DatabasePluginManager::PluginFilePatterns
//
// Purpose:
// Returns file name patterns for a plugin
//
// Arguments:
// id the plugin id
//
// Programmer: Jeremy Meredith
// Creation: December 29, 2009
//
// ****************************************************************************
vector<string>
DatabasePluginManager::PluginFilePatterns(const string &id)
{
vector<string> retval;
if(allindexmap.find(id) != allindexmap.end())
{
int index = allindexmap[id];
if(index < names.size())
retval = filePatterns[index];
}
return retval;
}
// ****************************************************************************
// Method: DatabasePluginManager::PluginFilePatternsAreStrict
//
// Purpose:
// Returns true for a plugin filename patterns are intended
// to be interpreted strictly.
//
// Arguments:
// id the plugin id
//
// Programmer: Jeremy Meredith
// Creation: December 29, 2009
//
// ****************************************************************************
bool
DatabasePluginManager::PluginFilePatternsAreStrict(const string &id)
{
bool retval = false;
if(allindexmap.find(id) != allindexmap.end())
{
int index = allindexmap[id];
if(index < names.size())
retval = filePatternsAreStrict[index];
}
return retval;
}
// ****************************************************************************
// Method: DatabasePluginManager::PluginOpensWholeDirectory
//
// Purpose:
// Returns true if a plugin is intended to be handed a whole
// directory to open, not just a single file.
//
// Arguments:
// id the plugin id
//
// Programmer: Jeremy Meredith
// Creation: December 29, 2009
//
// ****************************************************************************
bool
DatabasePluginManager::PluginOpensWholeDirectory(const string &id)
{
bool retval = false;
if(allindexmap.find(id) != allindexmap.end())
{
int index = allindexmap[id];
if(index < names.size())
retval = opensWholeDirectory[index];
}
return retval;
}
// ****************************************************************************
// Method: DatabasePluginManager::GetMatchingPluginId
//
// Purpose: Returns database plugin id matching extensions with given filename
//
// Arguments:
// id the filename to match with
//
// Programmer: Mark C. Miller
// Creation: July 31, 2007
//
// Modifications:
// Mark C. Miller, Thu Aug 9 09:16:01 PDT 2007
// Made it return a vector of strings
//
// Kathleen Bonnell, Tue Sep 11 08:56:42 PDT 2007
// Replace 'and' with '&&' for compilation on windows.
//
// Jeremy Meredith, Tue Dec 29 11:42:47 EST 2009
// Replaced simple extension and full-filename matching with single
// comprehensive file pattern match. Broke compile compatibility with old
// plugins as part of this change, so removed code to check for deprecated
// *info generated code.
//
// ****************************************************************************
vector<string>
DatabasePluginManager::GetMatchingPluginIds(const char *filename, bool searchAll)
{
int i;
vector<string> rv;
//
// Parse out the path and get just the filename.
//
string file_and_path = filename;
const char *fap = file_and_path.c_str();
int len = strlen(fap);
int lastSlash = -1;
for (i = len-1 ; i >= 0 ; i--)
{
if (fap[i] == VISIT_SLASH_CHAR)
{
lastSlash = i;
break;
}
}
int start = lastSlash+1;
string file(fap + start);
//
// Try each database type looking for a match to the given extensions
//
int iMax = searchAll ? GetNAllPlugins() : GetNEnabledPlugins();
for (i=0; i<iMax; i++)
{
string id = searchAll ? GetAllID(i) : GetEnabledID(i);
vector<string> patterns = PluginFilePatterns(id);
int nPatterns = patterns.size();
bool foundMatch = false;
for (int j=0; j<nPatterns && !foundMatch; j++)
{
foundMatch |= WildcardStringMatch(patterns[j], file);
}
if (foundMatch)
rv.push_back(id);
}
return rv;
}
// ****************************************************************************
// Method: DatabasePluginManager::ReportWarning
//
// Purpose:
// Mechanism by which we can report warnings about non-fatal incidents
// that occurred while opening a file.
//
// Arguments:
// s the warning to report
//
// Programmer: Jeremy Meredith
// Creation: December 29, 2009
//
// ****************************************************************************
void
DatabasePluginManager::ReportWarning(const std::string &w)
{
pluginInitErrors += w;
}
|