Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / shell / session.cpp
blob1657e674ff8f693344cc741a78f8441938add13d
1 /* This file is part of KDevelop
2 Copyright 2008 Anreas Pakulat <apaku@gmx.de>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #include "session.h"
22 #include <QtCore/QFileInfo>
23 #include <QtCore/QDir>
25 #include <kurl.h>
26 #include <kstandarddirs.h>
27 #include <kdebug.h>
29 #include <interfaces/iplugin.h>
30 #include "core.h"
31 #include <interfaces/iplugincontroller.h>
33 namespace KDevelop
36 class SessionPrivate
38 public:
39 QString name;
40 KSharedConfig::Ptr config;
41 QString sessionDirectory;
42 KUrl pluginArea( const IPlugin* plugin )
44 QString name = Core::self()->pluginController()->pluginInfo( plugin ).pluginName();
45 QFileInfo fi( sessionDirectory + "/" + name );
46 if( !fi.exists() )
48 QDir d( sessionDirectory );
49 d.mkdir( name );
51 kDebug() << fi.absolutePath();
52 return KUrl( fi.absolutePath() );
54 void initializeSessionDirectory()
56 sessionDirectory = KStandardDirs::locate( "appdata", name );
60 Session::Session( const QString& name )
61 : d( new SessionPrivate )
63 d->name = name;
64 d->initializeSessionDirectory();
67 Session::~Session()
69 delete d;
73 QString Session::name() const
75 return d->name;
78 KUrl Session::pluginDataArea( const IPlugin* p )
80 return d->pluginArea( p );
83 KSharedConfig::Ptr Session::config()
85 return d->config;
88 void Session::deleteFromDisk()
93 #include "session.moc"