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
|
/*
* Copyright (c) 2006-2007 Maximilian Kossick <[email protected]>
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "nfsdevicehandler.h"
AMAROK_EXPORT_PLUGIN( NfsDeviceHandlerFactory )
#include "debug.h"
#include <kconfig.h>
#include <kurl.h>
#include <tqvaluelist.h>
NfsDeviceHandler::NfsDeviceHandler( int deviceId, TQString server, TQString dir, TQString mountPoint )
: DeviceHandler()
, m_deviceID( deviceId )
, m_mountPoint( mountPoint )
, m_server( server )
, m_dir( dir )
{
}
NfsDeviceHandler::~NfsDeviceHandler()
{
}
bool
NfsDeviceHandler::isAvailable() const
{
return true;
}
TQString
NfsDeviceHandler::type() const
{
return "nfs";
}
int
NfsDeviceHandler::getDeviceID()
{
return m_deviceID;
}
const TQString &
NfsDeviceHandler::getDevicePath() const
{
return m_mountPoint;
}
void
NfsDeviceHandler::getURL( KURL &absolutePath, const KURL &relativePath )
{
absolutePath.setPath( m_mountPoint );
absolutePath.addPath( relativePath.path() );
absolutePath.cleanPath();
}
void
NfsDeviceHandler::getPlayableURL( KURL &absolutePath, const KURL &relativePath )
{
getURL( absolutePath, relativePath );
}
bool
NfsDeviceHandler::deviceIsMedium( const Medium * m ) const
{
return m->deviceNode() == m_server + ':' + m_dir;
}
///////////////////////////////////////////////////////////////////////////////
// class NfsDeviceHandlerFactory
///////////////////////////////////////////////////////////////////////////////
TQString
NfsDeviceHandlerFactory::type( ) const
{
return "nfs";
}
bool
NfsDeviceHandlerFactory::canCreateFromMedium( ) const
{
return true;
}
bool
NfsDeviceHandlerFactory::canCreateFromConfig( ) const
{
return false;
}
bool
NfsDeviceHandlerFactory::canHandle( const Medium * m ) const
{
return m && m->fsType() == "nfs" && m->isMounted();
}
NfsDeviceHandlerFactory::NfsDeviceHandlerFactory( )
{
}
NfsDeviceHandlerFactory::~NfsDeviceHandlerFactory( )
{
}
DeviceHandler *
NfsDeviceHandlerFactory::createHandler( const TDEConfig* ) const
{
return 0;
}
DeviceHandler *
NfsDeviceHandlerFactory::createHandler( const Medium * m ) const
{
TQString server = m->deviceNode().section( ":", 0, 0 );
TQString share = m->deviceNode().section( ":", 1, 1 );
TQStringList ids = CollectionDB::instance()->query( TQString( "SELECT id, label, lastmountpoint "
"FROM devices WHERE type = 'nfs' "
"AND servername = '%1' AND sharename = '%2';" )
.arg( server )
.arg( share ) );
if ( ids.size() == 3 )
{
debug() << "Found existing NFS config for ID " << ids[0] << " , server " << server << " ,share " << share << endl;
CollectionDB::instance()->query( TQString( "UPDATE devices SET lastmountpoint = '%2' WHERE "
"id = %1;" ).arg( ids[0] ).arg( m->mountPoint() ) );
return new NfsDeviceHandler( ids[0].toInt(), server, share, m->mountPoint() );
}
else
{
int id = CollectionDB::instance()->insert( TQString( "INSERT INTO devices"
"( type, servername, sharename, lastmountpoint ) "
"VALUES ( 'nfs', '%1', '%2', '%3' );" )
.arg( server )
.arg( share )
.arg( m->mountPoint() ), "devices" );
if ( id == 0 )
{
warning() << "Inserting into devices failed for type=nfs, server=" << server << ", share=" << share << endl;
return 0;
}
debug() << "Created new NFS device with ID " << id << " , server " << server << " ,share " << share << endl;
return new NfsDeviceHandler( id, server, share, m->mountPoint() );
}
}
|