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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : environmentconfig.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "environmentconfig.h"
#include "evnvarlist.h"
#include "file_logger.h"
#include "macromanager.h"
#include "wx/filename.h"
#include "wx/regex.h"
#include "wx/utils.h"
#include "wx_xml_compatibility.h"
#include "xmlutils.h"
#include <algorithm>
#include <wx/log.h>
#include <wx/window.h>
const wxString __NO_SUCH_ENV__ = wxT("__NO_SUCH_ENV__");
static EnvironmentConfig* ms_instance = NULL;
//------------------------------------------------------------------------------
EnvironmentConfig::EnvironmentConfig()
: m_envApplied(0)
{
}
EnvironmentConfig::~EnvironmentConfig() {}
EnvironmentConfig* EnvironmentConfig::Instance()
{
if(ms_instance == 0) {
ms_instance = new EnvironmentConfig();
}
return ms_instance;
}
void EnvironmentConfig::Release()
{
if(ms_instance) {
delete ms_instance;
}
ms_instance = 0;
}
wxString EnvironmentConfig::GetRootName() { return wxT("EnvironmentVariables"); }
bool EnvironmentConfig::Load()
{
bool loaded = ConfigurationToolBase::Load(wxT("config/environment_variables.xml"));
if(loaded) {
// make sure that we are using the new format
wxXmlNode* node = XmlUtils::FindFirstByTagName(m_doc.GetRoot(), wxT("ArchiveObject"));
if(node) {
node = XmlUtils::FindFirstByTagName(node, wxT("StringMap"));
if(node) {
// this is an old version, convert it to the new format
EvnVarList vars;
wxStringMap_t envSets;
wxString content;
wxXmlNode* child = node->GetChildren();
while(child) {
if(child->GetName() == wxT("MapEntry")) {
wxString key = child->GetAttribute(wxT("Key"), wxT(""));
wxString val = child->GetAttribute(wxT("Value"), wxT(""));
content << key << wxT("=") << val << wxT("\n");
}
child = child->GetNext();
}
envSets[wxT("Default")] = content.Trim().Trim(false);
vars.SetEnvVarSets(envSets);
SetSettings(vars);
}
}
}
return loaded;
}
wxString EnvironmentConfig::ExpandVariables(const wxString& in, bool applyEnvironment)
{
EnvSetter* env = NULL;
if(applyEnvironment) {
env = new EnvSetter();
}
wxString expandedValue = DoExpandVariables(in);
wxDELETE(env);
return expandedValue;
}
void EnvironmentConfig::ApplyEnv(wxStringMap_t* overrideMap, const wxString& project, const wxString& config)
{
// We lock the CS here and it will be released in UnApplyEnv
// this is safe to call without Locker since the UnApplyEnv
// will always be called after ApplyEnv (ApplyEnv and UnApplyEnv are
// protected functions that can only be called from EnvSetter class
// which always call UnApplyEnv in its destructor)
m_cs.Enter();
++m_envApplied;
if(m_envApplied > 1) {
return;
}
// read the environments variables
EvnVarList vars;
ReadObject(wxT("Variables"), &vars);
// get the active environment variables set
EnvMap variables = vars.GetVariables(wxEmptyString, true, project, config);
// if we have an "override map" place all the entries from the override map
// into the global map before applying the environment
if(overrideMap) {
wxStringMap_t::iterator it = overrideMap->begin();
for(; it != overrideMap->end(); it++) {
variables.Put(it->first, it->second);
}
}
m_envSnapshot.clear();
for(size_t i = 0; i < variables.GetCount(); i++) {
wxString key, val;
variables.Get(i, key, val);
// keep old value before changing it
wxString oldVal(wxEmptyString);
if(wxGetEnv(key, &oldVal) == false) {
oldVal = __NO_SUCH_ENV__;
}
// keep the old value, however, don't override it if it
// already exists as it might cause the variable to grow in size...
// Simple case:
// PATH=$(PATH);\New\Path
// PATH=$(PATH);\Another\New\Path
// If we replace the value, PATH will contain the original PATH + \New\Path
if(m_envSnapshot.count(key) == 0) {
m_envSnapshot.insert(std::make_pair(key, oldVal));
}
// Incase this line contains other environment variables, expand them before setting this environment variable
wxString newVal = DoExpandVariables(val);
// set the new value
wxSetEnv(key, newVal);
}
}
void EnvironmentConfig::UnApplyEnv()
{
--m_envApplied;
if(m_envApplied == 0) {
// loop over the old values and restore them
wxStringMap_t::iterator iter = m_envSnapshot.begin();
for(; iter != m_envSnapshot.end(); iter++) {
wxString key = iter->first;
wxString value = iter->second;
if(value == __NO_SUCH_ENV__) {
// Remove the environment completely
::wxUnsetEnv(key);
} else {
// Restore old value
::wxSetEnv(key, value);
}
}
m_envSnapshot.clear();
}
m_cs.Leave();
}
EvnVarList EnvironmentConfig::GetSettings()
{
EvnVarList vars;
ReadObject(wxT("Variables"), &vars);
return vars;
}
void EnvironmentConfig::SetSettings(EvnVarList& vars) { WriteObject(wxT("Variables"), &vars); }
wxString EnvironmentConfig::DoExpandVariables(const wxString& in)
{
wxString result(in);
wxString varName, text;
DollarEscaper de(result);
wxStringMap_t unresolvedVars;
int counter(0);
while(MacroManager::Instance()->FindVariable(result, varName, text)) {
wxString replacement;
if(varName == wxT("MAKE")) {
// ignore this variable, since it is probably was passed here
// by the makefile generator
replacement = wxT("___MAKE___");
} else {
// search for an environment with this name
if(!wxGetEnv(varName, &replacement)) {
replacement << "__unresolved__var__" << ++counter;
unresolvedVars.insert(std::make_pair(replacement, text));
}
}
// dont allow recursive replacements
if(replacement.Contains(text)) {
break;
}
result.Replace(text, replacement);
}
// restore the ___MAKE___ back to $(MAKE)
result.Replace(wxT("___MAKE___"), wxT("$(MAKE)"));
// and restore all those unresolved variables
std::for_each(unresolvedVars.begin(), unresolvedVars.end(),
[&](const std::pair<wxString, wxString>& p) { result.Replace(p.first, p.second); });
return result;
}
wxArrayString EnvironmentConfig::GetActiveSetEnvNames(bool includeWorkspace, const wxString& project)
{
// read the environments variables
EvnVarList vars;
ReadObject(wxT("Variables"), &vars);
wxArrayString envnames;
// get the active environment variables set
EnvMap variables = vars.GetVariables(wxEmptyString, includeWorkspace, project, wxEmptyString);
for(size_t i = 0; i < variables.GetCount(); ++i) {
wxString key, val;
variables.Get(i, key, val);
envnames.Add(key);
}
return envnames;
}
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
DollarEscaper::DollarEscaper(wxString& str)
: m_str(str)
{
m_str.Replace("$$", "@@ESC_DOLLAR@@");
}
DollarEscaper::~DollarEscaper()
{
// we restore it to non escaped $ !!
m_str.Replace("@@ESC_DOLLAR@@", "$");
}
|