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
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2017, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* 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.
*
*****************************************************************************/
#ifndef INSTALLATION_FUNCTIONS_H
#define INSTALLATION_FUNCTIONS_H
#include <string>
#include <misc_exports.h>
typedef enum {CONFIGSTATE_IOERROR,
CONFIGSTATE_FIRSTTIME,
CONFIGSTATE_SUCCESS} ConfigStateEnum;
// Installation directory functions
std::string MISC_API GetVisItInstallationDirectory();
std::string MISC_API GetVisItInstallationDirectory(const char *version);
bool MISC_API ReadInstallationInfo(std::string &distName,
std::string &configName,
std::string &bankName);
std::string MISC_API GetVisItArchitectureDirectory();
std::string MISC_API GetVisItArchitectureDirectory(const char *version);
std::string MISC_API GetVisItLauncher();
std::string MISC_API GetVisItLibraryDirectory();
std::string MISC_API GetVisItLibraryDirectory(const char *version);
// User installation / data functions
std::string MISC_API GetUserVisItDirectory();
MISC_API char * GetDefaultConfigFile(const char *filename = 0, const char *home = 0);
MISC_API char * GetSystemConfigFile(const char *filename = 0);
std::string MISC_API GetUserVisItRCFile();
std::string MISC_API GetSystemVisItRCFile();
std::string MISC_API GetAndMakeUserVisItHostsDirectory();
std::string MISC_API GetSystemVisItHostsDirectory();
typedef enum {
VISIT_RESOURCES,
VISIT_RESOURCES_COLORTABLES,
VISIT_RESOURCES_HELP,
VISIT_RESOURCES_HOSTS,
VISIT_RESOURCES_TRANSLATIONS,
VISIT_RESOURCES_MOVIETEMPLATES,
VISIT_RESOURCES_IMAGES
} VisItResourceDirectoryType;
std::string MISC_API GetVisItResourcesDirectory(VisItResourceDirectoryType t);
std::string MISC_API GetVisItResourcesFile(VisItResourceDirectoryType t,
const std::string &filename);
int MISC_API ConfigStateGetRunCount(ConfigStateEnum &code);
void MISC_API ConfigStateIncrementRunCount(ConfigStateEnum &code);
// Version functions
int MISC_API GetVisItVersionFromString(const char*, int&, int&, int&);
bool MISC_API VisItVersionsCompatible(const char*, const char*);
bool MISC_API VersionGreaterThan(const std::string &v1, const std::string &v2);
void MISC_API SetIsDevelopmentVersion(bool val);
bool MISC_API GetIsDevelopmentVersion();
#endif
|