OSDN Git Service

8cafe1120e1891b521858a9a91201e977276687c
[qt-creator-jp/qt-creator-jp.git] / src / plugins / coreplugin / variablemanager.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "variablemanager.h"
35 #include "ifile.h"
36 #include "editormanager/ieditor.h"
37 #include "editormanager/editormanager.h"
38
39 #include <utils/stringutils.h>
40 #include <utils/qtcassert.h>
41
42 #include <QtCore/QFileInfo>
43 #include <QtCore/QObject>
44 #include <QtCore/QMap>
45 #include <QtCore/QDebug>
46
47 namespace Core {
48
49 class VMMapExpander : public Utils::AbstractQtcMacroExpander {
50 public:
51     virtual bool resolveMacro(const QString &name, QString *ret)
52     {
53         bool found;
54         *ret = Core::VariableManager::instance()->value(name, &found);
55         return found;
56     }
57 };
58
59 class VariableManagerPrivate : public QObject
60 {
61     Q_OBJECT
62
63 public:
64     QHash<QString, QString> m_map;
65     VMMapExpander m_macroExpander;
66     QMap<QString, QString> m_descriptions;
67     static VariableManager *m_instance;
68 };
69
70 VariableManager *VariableManagerPrivate::m_instance = 0;
71
72 VariableManager::VariableManager() : d(new VariableManagerPrivate)
73 {
74     VariableManagerPrivate::m_instance = this;
75 }
76
77 VariableManager::~VariableManager()
78 {
79     VariableManagerPrivate::m_instance = 0;
80 }
81
82 void VariableManager::insert(const QString &variable, const QString &value)
83 {
84     d->m_map.insert(variable, value);
85 }
86
87 bool VariableManager::remove(const QString &variable)
88 {
89     return d->m_map.remove(variable) > 0;
90 }
91
92 QString VariableManager::value(const QString &variable, bool *found)
93 {
94     emit variableUpdateRequested(variable);
95     if (found) {
96         *found = d->m_map.contains(variable);
97     }
98     return d->m_map.value(variable);
99 }
100
101 QString VariableManager::value(const QString &variable, const QString &defaultValue)
102 {
103     emit variableUpdateRequested(variable);
104     return d->m_map.value(variable, defaultValue);
105 }
106
107 Utils::AbstractMacroExpander *VariableManager::macroExpander()
108 {
109     return &d->m_macroExpander;
110 }
111
112 VariableManager* VariableManager::instance()
113 {
114     return VariableManagerPrivate::m_instance;
115 }
116
117 void VariableManager::registerVariable(const QString &variable, const QString &description)
118 {
119     d->m_descriptions.insert(variable, description);
120 }
121
122 QList<QString> VariableManager::variables() const
123 {
124     return d->m_descriptions.keys();
125 }
126
127 QString VariableManager::variableDescription(const QString &variable) const
128 {
129     return d->m_descriptions.value(variable);
130 }
131
132 } // namespace Core
133
134 #include "variablemanager.moc"