summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/filetransfer.cpp
authorzecke <zecke>2002-10-12 01:04:40 (UTC)
committer zecke <zecke>2002-10-12 01:04:40 (UTC)
commit78eddaa8057462b0b8e94f10f8673bb9f555061b (patch) (side-by-side diff)
treeec73d894164866c349fd0bc28e441f6006269069 /noncore/apps/opie-console/filetransfer.cpp
parent39b88e5809e50a4951869434b8015c55265fc495 (diff)
downloadopie-78eddaa8057462b0b8e94f10f8673bb9f555061b.zip
opie-78eddaa8057462b0b8e94f10f8673bb9f555061b.tar.gz
opie-78eddaa8057462b0b8e94f10f8673bb9f555061b.tar.bz2
SWITCH to the ProcCtl interface
Diffstat (limited to 'noncore/apps/opie-console/filetransfer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/filetransfer.cpp55
1 files changed, 25 insertions, 30 deletions
diff --git a/noncore/apps/opie-console/filetransfer.cpp b/noncore/apps/opie-console/filetransfer.cpp
index 7fd9f37..97552fe 100644
--- a/noncore/apps/opie-console/filetransfer.cpp
+++ b/noncore/apps/opie-console/filetransfer.cpp
@@ -9,28 +9,16 @@
#include <opie/oprocess.h>
+#include "procctl.h"
#include "filetransfer.h"
-/**
- *
- *
-class FileTransferControl {
-public:
- FileTransferControl();
- ~FileTransferControl();
-
-
-};
-*/
-
-bool FileTransfer::terminate = false;
-pid_t FileTransfer::m_pid;
FileTransfer::FileTransfer( Type t, IOLayer* lay )
: FileTransferLayer( lay ), m_type( t ) {
signal(SIGPIPE, SIG_IGN );
- signal( SIGCHLD, signal_handler );
+
m_not = 0l;
+ m_proc = 0l;
}
FileTransfer::~FileTransfer() {
}
@@ -100,15 +88,20 @@ void FileTransfer::sendFile( const QString& file ) {
if ( m_info[0] )
close( m_info[0] );
- terminate = false;
- fd_set fds;
- struct timeval timeout;
- int sel;
+
/* replace by QSocketNotifier!!! */
m_not = new QSocketNotifier(m_comm[0], QSocketNotifier::Read );
connect(m_not, SIGNAL(activated(int) ),
this, SLOT(slotRead() ) );
+ if ( pipe(m_term) < 0 )
+ m_term[0] = m_term[1] = 0;
+
+ ProcCtl::self()->add(m_pid, m_term[1] );
+ m_proc = new QSocketNotifier(m_term[0], QSocketNotifier::Read );
+ connect(m_proc, SIGNAL(activated(int) ),
+ this, SLOT(slotExec() ) );
+
}
break;
}
@@ -119,17 +112,6 @@ void FileTransfer::sendFile( const QString& file ) {
void FileTransfer::sendFile( const QFile& file ) {
sendFile( file.name() );
}
-/*
- * our signal handler to be replaced by
- * a procctl thingie
- */
-void FileTransfer::signal_handler(int ) {
- qWarning("Terminated");
- int status;
- signal( SIGCHLD, signal_handler );
- waitpid( m_pid, &status, WNOHANG );
- terminate = true;
-}
/*
* setting up communication
@@ -175,6 +157,7 @@ void FileTransfer::slotRead() {
}
ar.resize( len );
QString str( ar );
+ qWarning(str.simplifyWhiteSpace() );
QStringList lis = QStringList::split(' ', str );
/*
* Transfer finished.. either complete or incomplete
@@ -240,3 +223,15 @@ void FileTransfer::cancel() {
::kill(m_pid,9 );
delete m_not;
}
+void FileTransfer::slotExec() {
+ qWarning("exited!");
+ char buf[2];
+ ::read(m_term[0], buf, 1 );
+ delete m_proc;
+ delete m_not;
+ close( m_term[0] );
+ close( m_term[1] );
+ close( m_comm[0] );
+ close( m_comm[1] );
+ emit sent();
+}