-rw-r--r-- | noncore/net/opie-smb/qsmb.cpp | 33 | ||||
-rw-r--r-- | noncore/net/opie-smb/qsmb.h | 1 |
2 files changed, 28 insertions, 6 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp index e2ddc7f..7f3ae89 100644 --- a/noncore/net/opie-smb/qsmb.cpp +++ b/noncore/net/opie-smb/qsmb.cpp @@ -193,4 +193,5 @@ void Qsmb::hostSelected(int /*index*/ ) QString share; QString comment; + QString mount; QString tmp = s.readLine(); @@ -201,5 +202,8 @@ void Qsmb::hostSelected(int /*index*/ ) share = share.stripWhiteSpace(); comment = comment.stripWhiteSpace(); - element = new QListViewItem(ListViewScan, share, comment); +// if(isMounted(share)) + + mount = getMount(share); + element = new QListViewItem(ListViewScan, share, comment, mount); element->setOpen(true); // top_element = element; @@ -321,6 +325,4 @@ void Qsmb::DoIt() ccmd << "username="+username->text()+",password="+password->text()+""; - TextViewOutput->append(ccmd.join(" ").latin1()); - if(onbootBtn->isChecked()) { qWarning("Saving Setting permanently..."); @@ -336,5 +338,5 @@ void Qsmb::DoIt() LScan->setText(""); - if(noerr) { + if(noerr && isMounted(mount)) { element->setText(2, mount); TextViewOutput->append("\n\n================CheckMounts==================\n"); @@ -399,5 +401,6 @@ bool Qsmb::runCommand(const QStringList & command) { -bool Qsmb::isMounted(const QString &mountPoint) { +bool Qsmb::isMounted(const QString &mountPoint) +{ struct mntent *me; bool mounted = false; @@ -408,5 +411,5 @@ bool Qsmb::isMounted(const QString &mountPoint) { QString mountDir = me->mnt_dir; QString fsType = me->mnt_type; - if( fsType == "smbfs" && mountDir.find(mountPoint) !=-1) + if( fsType == "smbfs" && (mountDir.find(mountPoint) != -1 | deviceName.find(mountPoint) != -1)) mounted = true; } @@ -415,2 +418,20 @@ bool Qsmb::isMounted(const QString &mountPoint) { return mounted; } + +QString Qsmb::getMount(const QString &shareName) +{ + struct mntent *me; + QString mount; + FILE *mntfp = setmntent( "/etc/mtab", "r" ); + if ( mntfp ){ + while ( (me = getmntent( mntfp )) != 0 ) { + QString deviceName = me->mnt_fsname; + QString mountDir = me->mnt_dir; + QString fsType = me->mnt_type; + if( fsType == "smbfs" && deviceName.find(shareName) != -1) + mount = mountDir; + } + } + endmntent( mntfp ); + return mount; +} diff --git a/noncore/net/opie-smb/qsmb.h b/noncore/net/opie-smb/qsmb.h index fba94d0..abf27da 100644 --- a/noncore/net/opie-smb/qsmb.h +++ b/noncore/net/opie-smb/qsmb.h @@ -28,4 +28,5 @@ private: bool scanning; bool isMounted(const QString &); + QString getMount(const QString &); public slots: |