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
|
/***************************************************************************
*
* Copyright (C) 2005 Elad Lahav (elad_lahav@users.sourceforge.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
#include <tdemessagebox.h>
#include <tdelocale.h>
#include "projectmanager.h"
#include "project.h"
#include "kscopeconfig.h"
/**
* Class constructor.
*/
ProjectManager::ProjectManager() : m_pCurProj(NULL)
{
}
/**
* Class destructor.
*/
ProjectManager::~ProjectManager()
{
close();
}
/**
* Creates a project's directory, and associates this directory with the
* current object. This directory is created under the given path, and using
* the project's name (which, thus, has to be a legal file name).
* Note: this function attempts to create a new directory, so the given path
* and name must not lead to an existing one.
* @param sName The project's name
* @param sPath The parent directory under which to create the
* project's directory
* @param opt A structure containing project options
* @return true if successful, false otherwise
*/
bool ProjectManager::create(const TQString& sName, const TQString& sPath,
const ProjectBase::Options& opt, TQString& sProjDir)
{
TQDir dir(sPath);
TQString sParentPath;
TQString sDirName = sName;
TQString sMsg;
// Handle requests for a hidden .cscope directory
if (dir.dirName() == ".cscope") {
sParentPath = TQDir::cleanDirPath(dir.absPath());
sParentPath = sParentPath.section('/', 0, -2);
dir.cd(sParentPath);
sDirName = ".cscope";
}
// The parent directory must exist
if (!dir.exists()) {
sMsg = i18n("The requested parent directory (%1) does not exist").
arg(sParentPath);
KMessageBox::error(0, sMsg);
return false;
}
// Make sure the directory doesn't exist
if (dir.exists(sDirName)) {
sMsg = i18n("Cannot create a project inside an existing directory "
"(%1/%2)").arg(dir.canonicalPath()).arg(sDirName);
KMessageBox::error(0, sMsg);
return false;
}
// Try to create the projcet's directory
if (!dir.mkdir(sDirName, false) || !dir.cd(sDirName, false)) {
sMsg = i18n("Failed to create the project directory (%1/%2)").
arg(dir.canonicalPath()).arg(sDirName);
KMessageBox::error(0, sMsg);
return false;
}
if (!Project::create(sName, dir.absPath(), opt))
return false;
sProjDir = dir.path();
return true;
}
/**
* Opens a project and makes it the current one.
* @param sPath The directory containing the project's files
* @return true if successful, false otherwise
*/
bool ProjectManager::open(const TQString& sPath)
{
Project* pProj;
// Close the current project
close();
// Try to open the new project
pProj = new Project();
if (!pProj->open(sPath)) {
delete pProj;
return false;
}
// Add to the list of recently opened projects
Config().addRecentProject(sPath);
// Project opened successfully
m_pCurProj = pProj;
return true;
}
/**
* Opens a Cscope.out file as a temporary project.
* @param sFilePath The full path of the Cscope.out file
* @return true if successful, false otherwise
*/
bool ProjectManager::openCscopeOut(const TQString& sFilePath)
{
ProjectBase* pProj;
// Close the current project
close();
// Try to open the new project
pProj = new ProjectBase();
if (!pProj->open(sFilePath)) {
delete pProj;
return false;
}
// Add to the list of recently opened projects
Config().addRecentProject(sFilePath);
// Project opened successfully
m_pCurProj = pProj;
return true;
}
/**
* Performs clean-up on the project's variables, and detaches the associated
* directory.
*/
void ProjectManager::close()
{
if (m_pCurProj) {
delete m_pCurProj;
m_pCurProj = NULL;
}
}
TQString ProjectManager::getProjName() const
{
if (!m_pCurProj)
return i18n("No Project");
return m_pCurProj->getName();
}
|