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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : svn_local_properties.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 "svn_local_properties.h"
#include <wx/log.h>
#include <wx/stdpaths.h>
#include <wx/tokenzr.h>
#include <wx/ffile.h>
#include <wx/filename.h>
#include "cl_standard_paths.h"
#include "fileutils.h"
wxString SubversionLocalProperties::BUG_TRACKER_URL = wxT("bug_tracker_url");
wxString SubversionLocalProperties::BUG_TRACKER_MESSAGE = wxT("bug_tracker_message");
wxString SubversionLocalProperties::FR_TRACKER_URL = wxT("fr_tracker_url");
wxString SubversionLocalProperties::FR_TRACKER_MESSAGE = wxT("fr_tracker_message");
SubversionLocalProperties::SubversionLocalProperties(const wxString& url)
: m_url(url)
{
}
SubversionLocalProperties::~SubversionLocalProperties() {}
wxString SubversionLocalProperties::ReadProperty(const wxString& propName)
{
ReadProperties();
// find the relevant group
GroupTable::const_iterator iter = m_values.find(m_url);
if(iter == m_values.end()) return wxT("");
SimpleTable::const_iterator it = iter->second.find(propName);
if(it == iter->second.end()) return wxT("");
return it->second;
}
void SubversionLocalProperties::WriteProperty(const wxString& name, const wxString& val)
{
ReadProperties();
GroupTable::iterator iter = m_values.find(m_url);
if(iter == m_values.end()) {
SimpleTable tb;
tb[name] = val;
m_values[m_url] = tb;
} else {
m_values[m_url][name] = val;
}
// Update the properties
WriteProperties();
}
wxString SubversionLocalProperties::GetConfigFile()
{
wxFileName fnConfig(clStandardPaths::Get().GetUserDataDir(), "codelite-properties.ini");
fnConfig.AppendDir("subversion");
fnConfig.Mkdir(wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL);
if(!fnConfig.Exists()) {
// Create an empty file
FileUtils::WriteFileContent(fnConfig, "");
}
return fnConfig.GetFullPath();
}
void SubversionLocalProperties::ReadProperties()
{
m_values.clear();
wxString group;
wxFFile fp(GetConfigFile(), wxT("rb"));
if(fp.IsOpened()) {
wxString content;
fp.ReadAll(&content);
wxArrayString lines = wxStringTokenize(content, wxT("\n"), wxTOKEN_STRTOK);
for(size_t i = 0; i < lines.size(); i++) {
wxString entry = lines[i];
// remove the comment part
entry = entry.BeforeFirst(wxT(';'));
// trim the string
entry.Trim().Trim(false);
if(entry.IsEmpty()) continue;
if(entry.StartsWith(wxT("["))) {
// found new group
entry = entry.AfterFirst(wxT('['));
group = entry.BeforeFirst(wxT(']'));
group.Trim().Trim(false);
continue;
}
wxString key = entry.BeforeFirst(wxT('='));
wxString value = entry.AfterFirst(wxT('='));
key.Trim().Trim(false);
value.Trim().Trim(false);
if(group.IsEmpty()) {
// we dont have group yet - discard this entry
continue;
}
GroupTable::iterator iter = m_values.find(group);
if(iter == m_values.end()) {
// create new table and the value
SimpleTable tb;
tb[key] = value;
m_values[group] = tb;
} else {
m_values[group][key] = value;
}
}
}
}
void SubversionLocalProperties::WriteProperties()
{
wxFFile fp(GetConfigFile(), wxT("wb"));
if(fp.IsOpened()) {
GroupTable::const_iterator iter = m_values.begin();
for(; iter != m_values.end(); iter++) {
SimpleTable tb = iter->second;
wxString sectionName = iter->first;
SimpleTable::const_iterator it = tb.begin();
fp.Write(wxString::Format(wxT("[%s]\n"), sectionName.c_str()));
for(; it != tb.end(); it++) {
fp.Write(wxString::Format(wxT("%s=%s\n"), it->first.c_str(), it->second.c_str()));
}
}
}
}
|