123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /*=============================================================================
- Library: CTK
- Copyright (c) University College London
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =============================================================================*/
- #include "ctkCmdLineModuleDefaultPathBuilder.h"
- #include <QDir>
- #include <QDebug>
- #include <QCoreApplication>
- #include <cstdlib>
- //----------------------------------------------------------------------------
- struct ctkCmdLineModuleDefaultPathBuilderPrivate
- {
- public:
- ctkCmdLineModuleDefaultPathBuilderPrivate();
- ~ctkCmdLineModuleDefaultPathBuilderPrivate();
- QStringList build() const;
- void setLoadFromHomeDir(bool doLoad);
- void setLoadFromCurrentDir(bool doLoad);
- void setLoadFromApplicationDir(bool doLoad);
- void setLoadFromCtkModuleLoadPath(bool doLoad);
- bool LoadFromHomeDir;
- bool LoadFromCurrentDir;
- bool LoadFromApplicationDir;
- bool LoadFromCtkModuleLoadPath;
- };
- //-----------------------------------------------------------------------------
- // ctkCmdLineModuleDefaultPathBuilderPrivate methods
- //-----------------------------------------------------------------------------
- ctkCmdLineModuleDefaultPathBuilderPrivate::ctkCmdLineModuleDefaultPathBuilderPrivate()
- : LoadFromHomeDir(false)
- , LoadFromCurrentDir(false)
- , LoadFromApplicationDir(false)
- , LoadFromCtkModuleLoadPath(false)
- {
- }
- //-----------------------------------------------------------------------------
- ctkCmdLineModuleDefaultPathBuilderPrivate::~ctkCmdLineModuleDefaultPathBuilderPrivate()
- {
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilderPrivate::setLoadFromHomeDir(bool doLoad)
- {
- LoadFromHomeDir = doLoad;
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilderPrivate::setLoadFromCurrentDir(bool doLoad)
- {
- LoadFromCurrentDir = doLoad;
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilderPrivate::setLoadFromApplicationDir(bool doLoad)
- {
- LoadFromApplicationDir = doLoad;
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilderPrivate::setLoadFromCtkModuleLoadPath(bool doLoad)
- {
- LoadFromCtkModuleLoadPath = doLoad;
- }
- //-----------------------------------------------------------------------------
- QStringList ctkCmdLineModuleDefaultPathBuilderPrivate::build() const
- {
- QStringList result;
- QString suffix = "cli-modules";
- if (LoadFromCtkModuleLoadPath)
- {
- char *ctkModuleLoadPath = getenv("CTK_MODULE_LOAD_PATH");
- if (ctkModuleLoadPath != NULL)
- {
- QDir dir = QDir(QString(ctkModuleLoadPath));
- if (dir.exists())
- {
- result << dir.canonicalPath();
- }
- }
- }
- if (LoadFromHomeDir)
- {
- if (QDir::home().exists())
- {
- result << QDir::homePath();
- result << QDir::homePath() + QDir::separator() + suffix;
- }
- }
- if (LoadFromCurrentDir)
- {
- if (QDir::current().exists())
- {
- result << QDir::currentPath();
- result << QDir::currentPath() + QDir::separator() + suffix;
- }
- }
- if (LoadFromApplicationDir)
- {
- result << QCoreApplication::applicationDirPath();
- result << QCoreApplication::applicationDirPath() + QDir::separator() + suffix;
- }
- return result;
- }
- //-----------------------------------------------------------------------------
- // ctkCmdLineModuleDefaultPathBuilder methods
- //-----------------------------------------------------------------------------
- ctkCmdLineModuleDefaultPathBuilder::ctkCmdLineModuleDefaultPathBuilder()
- : d(new ctkCmdLineModuleDefaultPathBuilderPrivate)
- {
- }
- //-----------------------------------------------------------------------------
- ctkCmdLineModuleDefaultPathBuilder::~ctkCmdLineModuleDefaultPathBuilder()
- {
- }
- //-----------------------------------------------------------------------------
- QStringList ctkCmdLineModuleDefaultPathBuilder::build() const
- {
- return d->build();
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilder::setLoadFromHomeDir(bool doLoad)
- {
- d->setLoadFromHomeDir(doLoad);
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilder::setLoadFromCurrentDir(bool doLoad)
- {
- d->setLoadFromCurrentDir(doLoad);
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilder::setLoadFromApplicationDir(bool doLoad)
- {
- d->setLoadFromApplicationDir(doLoad);
- }
- //-----------------------------------------------------------------------------
- void ctkCmdLineModuleDefaultPathBuilder::setLoadFromCtkModuleLoadPath(bool doLoad)
- {
- d->setLoadFromCtkModuleLoadPath(doLoad);
- }
|