Menu

[r7]: / Plugin / sessionmanager.cpp  Maximize  Restore  History

Download this file

200 lines (176 with data), 5.5 kB

  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
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : sessionmanager.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 "sessionmanager.h"
#include "xmlutils.h"
#include "wx/ffile.h"
//Session entry
SessionEntry::SessionEntry()
{
}
SessionEntry::~SessionEntry()
{
}
void SessionEntry::DeSerialize(Archive &arch)
{
arch.Read(wxT("m_selectedTab"), m_selectedTab);
arch.Read(wxT("m_tabs"), m_tabs);
arch.Read(wxT("m_workspaceName"), m_workspaceName);
arch.Read(wxT("TabInfoArray"), m_vTabInfoArr);
// initialize tab info array from m_tabs if in config file wasn't yet tab info array
if (m_vTabInfoArr.size() == 0 && m_tabs.GetCount() > 0) {
for (size_t i=0; i<m_tabs.GetCount(); i++) {
TabInfo oTabInfo;
oTabInfo.SetFileName(m_tabs.Item(i));
oTabInfo.SetFirstVisibleLine(0);
oTabInfo.SetCurrentLine(0);
m_vTabInfoArr.push_back(oTabInfo);
}
}
}
void SessionEntry::Serialize(Archive &arch)
{
arch.Write(wxT("m_selectedTab"), m_selectedTab);
// since tabs are saved in TabInfoArray we don't save tabs as string array,
// there are only read due to read config saved in older version where wasn't TabInfoArray
//arch.Write(wxT("m_tabs"), m_tabs);
arch.Write(wxT("m_workspaceName"), m_workspaceName);
arch.Write(wxT("TabInfoArray"), m_vTabInfoArr);
}
//---------------------------------------------
SessionManager & SessionManager::Get()
{
static SessionManager theManager;
return theManager;
}
SessionManager::SessionManager()
{
}
SessionManager::~SessionManager()
{
}
bool SessionManager::Load(const wxString &fileName)
{
m_fileName = wxFileName(fileName);
if (!m_fileName.FileExists()) {
//no such file or directory
//create an empty one
wxFFile newFile(fileName, wxT("a+"));
newFile.Write(wxT("<Sessions/>"));
newFile.Close();
}
m_doc.Load(m_fileName.GetFullPath());
return m_doc.IsOk();
}
bool SessionManager::FindSession(const wxString &name, SessionEntry &session)
{
if (!m_doc.GetRoot()) {
return false;
}
// find last active workspace name if searched is Default
wxString strSessionName = name;
wxXmlNode *node = m_doc.GetRoot()->GetChildren();
while (node) {
if (node->GetName() == wxT("Session")) {
if (XmlUtils::ReadString(node, wxT("Name")) == strSessionName) {
//we found our session
Archive arch;
arch.SetXmlNode(node);
session.DeSerialize(arch);
return true;
}
}
node = node->GetNext();
}
return false;
}
bool SessionManager::Save(const wxString &name, SessionEntry &session)
{
if (!m_doc.GetRoot()) {
return false;
}
// if saving Default then change name to workspace anme and path
wxString strSessionName = name;
// if session entry has no workspace name, then do not save
if (strSessionName.length() == 0)
return false;
wxXmlNode *node = m_doc.GetRoot()->GetChildren();
while (node) {
if (node->GetName() == wxT("Session")) {
if (XmlUtils::ReadString(node, wxT("Name")) == strSessionName) {
//we found our session, remove it
m_doc.GetRoot()->RemoveChild(node);
delete node;
break;
}
}
node = node->GetNext();
}
//create new node and insert it
wxXmlNode *child = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, wxT("Session"));
m_doc.GetRoot()->AddChild(child);
child->AddProperty(wxT("Name"), strSessionName);
Archive arch;
arch.SetXmlNode(child);
session.Serialize(arch);
//save the file
return m_doc.Save(m_fileName.GetFullPath());
}
void SessionManager::SetLastWorkspaceName(const wxString& name)
{
// first delete the old entry
wxXmlNode *node = m_doc.GetRoot()->GetChildren();
while (node) {
if (node->GetName() == wxT("LastActiveWorkspace")) {
m_doc.GetRoot()->RemoveChild(node);
delete node;
break;
}
node = node->GetNext();
}
// set new one
wxXmlNode *child = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, wxT("LastActiveWorkspace"));
m_doc.GetRoot()->AddChild(child);
XmlUtils::SetNodeContent(child, name);
// save changes
m_doc.Save(m_fileName.GetFullPath());
}
wxString SessionManager::GetLastSession()
{
// try to locate the 'LastActiveWorkspace' entry
// if it does not exist or it exist with value empty return 'Default'
// otherwise, return its content
wxXmlNode *node = m_doc.GetRoot()->GetChildren();
while (node) {
if (node->GetName() == wxT("LastActiveWorkspace")) {
if (node->GetNodeContent().IsEmpty()) {
return wxT("Default");
} else {
return node->GetNodeContent();
}
}
node = node->GetNext();
}
return wxT("Default");
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.