author | korovkin <korovkin> | 2006-03-19 14:57:44 (UTC) |
---|---|---|
committer | korovkin <korovkin> | 2006-03-19 14:57:44 (UTC) |
commit | a71b86fe8ca57753e8209786691b9c7a33d1c1c9 (patch) (unidiff) | |
tree | 7463f566a86c5bdff0e4e1380300edc327ebcada | |
parent | bf4d4b814d514762748fe602aeef6c43da102c3a (diff) | |
download | opie-a71b86fe8ca57753e8209786691b9c7a33d1c1c9.zip opie-a71b86fe8ca57753e8209786691b9c7a33d1c1c9.tar.gz opie-a71b86fe8ca57753e8209786691b9c7a33d1c1c9.tar.bz2 |
PPP dialog calls rfcomm connect 0 <device MAC address> <port> if ppp script name
is empty.
-rw-r--r-- | noncore/net/opietooth/manager/pppdialog.cpp | 78 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/pppdialog.h | 16 |
2 files changed, 78 insertions, 16 deletions
diff --git a/noncore/net/opietooth/manager/pppdialog.cpp b/noncore/net/opietooth/manager/pppdialog.cpp index ef007f5..b8d800a 100644 --- a/noncore/net/opietooth/manager/pppdialog.cpp +++ b/noncore/net/opietooth/manager/pppdialog.cpp | |||
@@ -1,4 +1,5 @@ | |||
1 | 1 | ||
2 | #include "pppdialog.h" | 2 | #include "pppdialog.h" |
3 | #include "rfcommhelper.h" | ||
3 | #include <qpushbutton.h> | 4 | #include <qpushbutton.h> |
4 | #include <qmultilineedit.h> | 5 | #include <qmultilineedit.h> |
@@ -13,12 +14,17 @@ using namespace OpieTooth; | |||
13 | 14 | ||
14 | using namespace Opie::Core; | 15 | using namespace Opie::Core; |
15 | PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl, const QString& device ) | 16 | |
17 | Connection PPPDialog::conns[NCONNECTS]; | ||
18 | |||
19 | PPPDialog::PPPDialog( const QString& device, int port, QWidget* parent, | ||
20 | const char* name, bool modal, WFlags fl ) | ||
16 | : QDialog( parent, name, modal, fl ) { | 21 | : QDialog( parent, name, modal, fl ) { |
17 | 22 | ||
18 | if ( !name ) | 23 | if ( !name ) |
19 | setName( "PPPDialog" ); | 24 | setName( "PPPDialog" ); |
20 | setCaption( tr( "ppp connection " ) ) ; | 25 | setCaption( tr( "ppp connection " ) ) ; |
21 | 26 | ||
22 | m_device = device; | 27 | m_device = device; |
28 | m_port = port; | ||
23 | 29 | ||
24 | layout = new QVBoxLayout( this ); | 30 | layout = new QVBoxLayout( this ); |
@@ -45,4 +51,13 @@ PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl, | |||
45 | connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) ); | 51 | connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) ); |
46 | 52 | ||
53 | connect(&PPPDialog::conns[0].proc, | ||
54 | SIGNAL(receivedStdout(Opie::Core::OProcess*, char*, int)), | ||
55 | this, SLOT(fillOutPut(Opie::Core::OProcess*, char*, int))); | ||
56 | connect( &PPPDialog::conns[0].proc, | ||
57 | SIGNAL(receivedStderr(Opie::Core::OProcess*, char*, int)), | ||
58 | this, SLOT(fillErr(Opie::Core::OProcess*, char*, int))); | ||
59 | connect( &PPPDialog::conns[0].proc, | ||
60 | SIGNAL(processExited(Opie::Core::OProcess*)), | ||
61 | this, SLOT(slotProcessExited(Opie::Core::OProcess*))); | ||
47 | } | 62 | } |
48 | 63 | ||
@@ -51,21 +66,56 @@ PPPDialog::~PPPDialog() { | |||
51 | 66 | ||
52 | void PPPDialog::connectToDevice() { | 67 | void PPPDialog::connectToDevice() { |
68 | if (PPPDialog::conns[0].proc.isRunning()) { | ||
69 | outPut->append(tr("Work in progress")); | ||
70 | return; | ||
71 | } | ||
53 | outPut->clear(); | 72 | outPut->clear(); |
73 | PPPDialog::conns[0].proc.clearArguments(); | ||
54 | // vom popupmenu beziehen | 74 | // vom popupmenu beziehen |
55 | QString connectScript = "/etc/ppp/peers/" + cmdLine->text(); | 75 | if (cmdLine->text().isEmpty()) {//Connect by rfcomm |
56 | OProcess* pppDial = new OProcess(); | 76 | PPPDialog::conns[0].proc << "rfcomm" << "connect" |
57 | *pppDial << "pppd" << m_device << "call" << connectScript; | 77 | << "0" << m_device << QString::number(m_port); |
58 | connect( pppDial, SIGNAL(receivedStdout(Opie::Core::OProcess*,char*,int) ), | 78 | } |
59 | this, SLOT(fillOutPut(Opie::Core::OProcess*,char*,int) ) ); | 79 | else { |
60 | if (!pppDial->start(OProcess::DontCare, OProcess::AllOutput) ) { | 80 | QString connectScript = "/etc/ppp/peers/" + cmdLine->text(); |
61 | owarn << "could not start" << oendl; | 81 | PPPDialog::conns[0].proc << "pppd" |
62 | delete pppDial; | 82 | << m_device << "call" << connectScript; |
83 | } | ||
84 | if (!PPPDialog::conns[0].proc.start(OProcess::NotifyOnExit, OProcess::All)) { | ||
85 | outPut->append(tr("Couldn't start")); | ||
86 | } | ||
87 | else | ||
88 | { | ||
89 | PPPDialog::conns[0].proc.resume(); | ||
90 | outPut->append(tr("Started")); | ||
91 | PPPDialog::conns[0].btAddr = m_device; | ||
92 | PPPDialog::conns[0].port = m_port; | ||
63 | } | 93 | } |
64 | } | 94 | } |
65 | 95 | ||
66 | void PPPDialog::fillOutPut( OProcess* pppDial, char* cha, int len ) { | 96 | void PPPDialog::fillOutPut( OProcess*, char* cha, int len ) { |
67 | QCString str(cha, len ); | 97 | QCString str(cha, len); |
68 | outPut->insertLine( str ); | 98 | outPut->append(str); |
69 | delete pppDial; | ||
70 | } | 99 | } |
71 | 100 | ||
101 | void PPPDialog::fillErr(OProcess*, char* buf, int len) | ||
102 | { | ||
103 | QCString str(buf, len); | ||
104 | outPut->append(str); | ||
105 | } | ||
106 | |||
107 | void PPPDialog::slotProcessExited(OProcess* proc) { | ||
108 | if (proc->normalExit()) { | ||
109 | outPut->append( tr("Finished with result ") ); | ||
110 | outPut->append( QString::number(proc->exitStatus()) ); | ||
111 | } | ||
112 | else | ||
113 | outPut->append( tr("Exited abnormally") ); | ||
114 | } | ||
115 | |||
116 | void PPPDialog::closeEvent(QCloseEvent* e) | ||
117 | { | ||
118 | if(PPPDialog::conns[0].proc.isRunning()) | ||
119 | PPPDialog::conns[0].proc.kill(); | ||
120 | QDialog::closeEvent(e); | ||
121 | } | ||
diff --git a/noncore/net/opietooth/manager/pppdialog.h b/noncore/net/opietooth/manager/pppdialog.h index 05894e2..565fe1e 100644 --- a/noncore/net/opietooth/manager/pppdialog.h +++ b/noncore/net/opietooth/manager/pppdialog.h | |||
@@ -10,7 +10,12 @@ class QPushButton; | |||
10 | class QMultiLineEdit; | 10 | class QMultiLineEdit; |
11 | class QLineEdit; | 11 | class QLineEdit; |
12 | 12 | #define NCONNECTS 10 //Maximal | |
13 | 13 | ||
14 | namespace OpieTooth { | 14 | namespace OpieTooth { |
15 | typedef struct { | ||
16 | Opie::Core::OProcess proc; //Connection process | ||
17 | QString btAddr; //MAC address | ||
18 | int port; //port | ||
19 | } Connection; | ||
15 | 20 | ||
16 | class PPPDialog : public QDialog { | 21 | class PPPDialog : public QDialog { |
@@ -19,5 +24,5 @@ namespace OpieTooth { | |||
19 | 24 | ||
20 | public: | 25 | public: |
21 | PPPDialog( QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0, const QString& device = 0); | 26 | PPPDialog(const QString& device = 0, int port = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0); |
22 | ~PPPDialog(); | 27 | ~PPPDialog(); |
23 | 28 | ||
@@ -25,4 +30,10 @@ namespace OpieTooth { | |||
25 | void connectToDevice(); | 30 | void connectToDevice(); |
26 | void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len ); | 31 | void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len ); |
32 | void fillErr(Opie::Core::OProcess*, char*, int); | ||
33 | void slotProcessExited(Opie::Core::OProcess* proc); | ||
34 | void closeEvent(QCloseEvent* e); | ||
35 | public: | ||
36 | //Array of connections indexed by rfcomm device number | ||
37 | static Connection conns[NCONNECTS]; | ||
27 | protected: | 38 | protected: |
28 | QVBoxLayout* layout; | 39 | QVBoxLayout* layout; |
@@ -33,4 +44,5 @@ namespace OpieTooth { | |||
33 | private: | 44 | private: |
34 | QString m_device; | 45 | QString m_device; |
46 | int m_port; | ||
35 | }; | 47 | }; |
36 | } | 48 | } |