You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/filesharing/advanced/nfs/nfsentry.cpp

382 lines
6.1 KiB

/*
Copyright (c) 2004 Jan Schaefer <j_schaef@informatik.uni-kl.de>
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 <kdebug.h>
#include "nfsentry.h"
NFSHost::NFSHost(const TQString & hostString)
{
readonly = true;
TQString s = hostString;
int l = s.find('(');
int r = s.find(')');
initParams();
// get hostname
if (l>=0)
name = s.left(l);
else
name = s;
kdDebug(5009) << "NFSHost: name='" << name << "'" << endl;
if (l>=0 && r>=0)
{
TQString params = s.mid(l+1,r-l-1);
parseParamsString(params);
}
}
NFSHost::NFSHost() {
initParams();
name="";
}
NFSHost::~NFSHost()
{
}
/**
* Set the parameters to their default values
*/
void NFSHost::initParams()
{
readonly = true;
sync = false;
secure = true;
wdelay = true;
hide = true;
subtreeCheck = true;
secureLocks = true;
allSquash = false;
rootSquash = true;
anonuid = 65534;
anongid = 65534;
}
void NFSHost::parseParamsString(const TQString & s)
{
if (s.isEmpty())
return;
int i;
TQString rest = s;
TQString p;
do
{
i = rest.find(",",0);
if (i==-1)
p = rest;
else
{
p = rest.left( i );
rest = rest.mid(i+1);
}
setParam(p);
}
while (i>-1);
}
TQString NFSHost::paramString() const
{
TQString s;
if (!readonly) s+="rw,";
if (!rootSquash) s+="no_root_squash,";
if (!secure) s+="insecure,";
if (!secureLocks) s+="insecure_locks,";
if (!subtreeCheck) s+="no_subtree_check,";
if (sync)
s+="sync,";
else
s+="async,";
if (!wdelay) s+="wdelay,";
if (allSquash) s+="all_squash,";
if (!hide) s+="nohide,";
if (anongid!=65534)
s+=TQString("anongid=%1,").arg(anongid);
if (anonuid!=65534)
s+=TQString("anonuid=%1,").arg(anonuid);
// get rid of the last ','
s.truncate(s.length()-1);
return s;
}
TQString NFSHost::toString() const
{
TQString s = name;
s+='(';
s+=paramString();
s+=')';
return s;
}
NFSHost* NFSHost::copy() const {
NFSHost* result = new NFSHost();
result->name = name;
result->readonly = readonly;
result->sync = sync;
result->secure = secure;
result->wdelay = wdelay;
result->hide = hide;
result->subtreeCheck = subtreeCheck;
result->secureLocks = secureLocks;
result->allSquash = allSquash;
result->rootSquash = rootSquash;
result->anonuid = anonuid;
result->anongid = anongid;
return result;
}
bool NFSHost::isPublic() const {
return name == "*";
}
void NFSHost::setParam(const TQString & s)
{
TQString p = s.lower();
if (p=="ro") {
readonly = true;
return; }
if (p=="rw") {
readonly = false;
return; }
if (p=="sync") {
sync = true;
return; }
if (p=="async") {
sync = false;
return; }
if (p=="secure") {
secure = true;
return; }
if (p=="insecure") {
secure = false;
return; }
if (p=="wdelay") {
wdelay = true;
return; }
if (p=="no_wdelay") {
wdelay = false;
return; }
if (p=="hide") {
hide = true;
return; }
if (p=="nohide") {
hide = false;
return; }
if (p=="subtree_check") {
subtreeCheck = true;
return; }
if (p=="no_subtree_check") {
subtreeCheck = false;
return; }
if (p=="secure_locks" ||
p=="auth_nlm") {
secureLocks = true;
return; }
if (p=="insecure_locks" ||
p=="no_auth_nlm" ) {
secureLocks = true;
return; }
if (p=="all_squash") {
allSquash = true;
return; }
if (p=="no_all_squash") {
allSquash = false;
return; }
if (p=="root_squash") {
rootSquash = true;
return; }
if (p=="no_root_squash") {
rootSquash = false;
return; }
int i = p.find("=",0);
// get anongid or anonuid
if (i>-1)
{
TQString name = p.left(i).lower();
kdDebug(5009) << name << endl;
TQString value = p.mid(i+1);
kdDebug(5009) << value << endl;
if (name=="anongid")
anongid = value.toInt();
if (name=="anonuid")
anonuid = value.toInt();
}
}
NFSEntry::NFSEntry(const TQString & path)
{
_hosts.setAutoDelete(true);
setPath(path);
}
NFSEntry::~NFSEntry()
{
}
void NFSEntry::clear() {
_hosts.clear();
}
NFSEntry* NFSEntry::copy() {
NFSEntry* result = new NFSEntry(path());
result->copyFrom(this);
return result;
}
void NFSEntry::copyFrom(NFSEntry* entry) {
clear();
HostIterator it = entry->getHosts();
NFSHost* host;
while ( (host = it.current()) != 0 ) {
++it;
addHost(host->copy());
}
}
TQString NFSEntry::toString() const
{
TQString s = _path.stripWhiteSpace();
if (_path.find(' ') > -1) {
s = '"'+s+'"';
}
s += ' ';
HostIterator it = getHosts();
NFSHost* host;
while ( (host = it.current()) != 0 )
{
++it;
s+= host->toString() ;
if (it.current())
s+= " \\\n\t ";
}
return s;
}
void NFSEntry::addHost(NFSHost * host)
{
_hosts.append(host);
}
void NFSEntry::removeHost(NFSHost * host)
{
_hosts.remove(host);
}
NFSHost* NFSEntry::getHostByName(const TQString & name) const
{
HostIterator it = getHosts();
NFSHost* host;
while ( (host = it.current()) != 0 )
{
++it;
if (host->name==name)
return host;
}
return 0;
}
NFSHost* NFSEntry::getPublicHost() const
{
NFSHost* result = getHostByName("*");
if (result)
return result;
return getHostByName(TQString());
}
HostIterator NFSEntry::getHosts() const
{
return HostIterator(_hosts);
}
TQString NFSEntry::path() const
{
return _path;
}
void NFSEntry::setPath(const TQString & path)
{
_path = path;
}