author | kergoth <kergoth> | 2003-03-27 21:01:33 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-03-27 21:01:33 (UTC) |
commit | f196ea87989e6f51463a5beb5a37139d6e019a74 (patch) (unidiff) | |
tree | 16fc44e33be1e678c736db4f660784df79b5fc00 | |
parent | bff145f5cced95c742deefcd607932a9f3728dd3 (diff) | |
download | opie-f196ea87989e6f51463a5beb5a37139d6e019a74.zip opie-f196ea87989e6f51463a5beb5a37139d6e019a74.tar.gz opie-f196ea87989e6f51463a5beb5a37139d6e019a74.tar.bz2 |
Switch from 1) calling /etc/init.d/pcmcia to calling cardctl eject, cardctl insert..
and 2) OProcess instead of system()
-rw-r--r-- | noncore/settings/networksettings/wlan/wlanimp.cpp | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanimp.cpp b/noncore/settings/networksettings/wlan/wlanimp.cpp index 1782c22..db03266 100644 --- a/noncore/settings/networksettings/wlan/wlanimp.cpp +++ b/noncore/settings/networksettings/wlan/wlanimp.cpp | |||
@@ -1,247 +1,248 @@ | |||
1 | #include "wlanimp.h" | 1 | #include "wlanimp.h" |
2 | #include "interfacesetupimp.h" | 2 | #include "interfacesetupimp.h" |
3 | 3 | ||
4 | #include <qfile.h> | 4 | #include <qfile.h> |
5 | #include <qdir.h> | 5 | #include <qdir.h> |
6 | #include <qtextstream.h> | 6 | #include <qtextstream.h> |
7 | #include <qmessagebox.h> | 7 | #include <qmessagebox.h> |
8 | #include <qlineedit.h> | 8 | #include <qlineedit.h> |
9 | #include <qlabel.h> | 9 | #include <qlabel.h> |
10 | #include <qspinbox.h> | 10 | #include <qspinbox.h> |
11 | #include <qradiobutton.h> | 11 | #include <qradiobutton.h> |
12 | #include <qcheckbox.h> | 12 | #include <qcheckbox.h> |
13 | #include <qtabwidget.h> | 13 | #include <qtabwidget.h> |
14 | #include <qcombobox.h> | 14 | #include <qcombobox.h> |
15 | 15 | ||
16 | /* system() */ | 16 | /* system() */ |
17 | #include <stdlib.h> | 17 | //#include <stdlib.h> |
18 | #include <opie/oprocess.h> | ||
18 | 19 | ||
19 | #define WIRELESS_OPTS "/etc/pcmcia/wireless.opts" | 20 | #define WIRELESS_OPTS "/etc/pcmcia/wireless.opts" |
20 | 21 | ||
21 | /** | 22 | /** |
22 | * Constructor, read in the wireless.opts file for parsing later. | 23 | * Constructor, read in the wireless.opts file for parsing later. |
23 | */ | 24 | */ |
24 | WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") { | 25 | WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") { |
25 | interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i); | 26 | interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i); |
26 | tabWidget->insertTab(interfaceSetup, "TCP/IP"); | 27 | tabWidget->insertTab(interfaceSetup, "TCP/IP"); |
27 | 28 | ||
28 | // Read in the config file. | 29 | // Read in the config file. |
29 | QString wlanFile = WIRELESS_OPTS; | 30 | QString wlanFile = WIRELESS_OPTS; |
30 | QFile file(wlanFile); | 31 | QFile file(wlanFile); |
31 | if (file.open(IO_ReadOnly)){ | 32 | if (file.open(IO_ReadOnly)){ |
32 | QTextStream stream( &file ); | 33 | QTextStream stream( &file ); |
33 | QString line = ""; | 34 | QString line = ""; |
34 | while ( !stream.eof() ) { | 35 | while ( !stream.eof() ) { |
35 | line += stream.readLine(); | 36 | line += stream.readLine(); |
36 | line += "\n"; | 37 | line += "\n"; |
37 | } | 38 | } |
38 | file.close(); | 39 | file.close(); |
39 | settingsFileText = QStringList::split("\n", line, true); | 40 | settingsFileText = QStringList::split("\n", line, true); |
40 | parseSettingFile(); | 41 | parseSettingFile(); |
41 | } | 42 | } |
42 | else | 43 | else |
43 | qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1()); | 44 | qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1()); |
44 | connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int))); | 45 | connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int))); |
45 | } | 46 | } |
46 | 47 | ||
47 | void WLANImp::typeChanged(int mod){ | 48 | void WLANImp::typeChanged(int mod){ |
48 | networkChannel->setEnabled(mod); | 49 | networkChannel->setEnabled(mod); |
49 | channelLabel->setEnabled(mod); | 50 | channelLabel->setEnabled(mod); |
50 | } | 51 | } |
51 | 52 | ||
52 | /** | 53 | /** |
53 | * Change the profile for both wireless settings and network settings. | 54 | * Change the profile for both wireless settings and network settings. |
54 | */ | 55 | */ |
55 | void WLANImp::setProfile(const QString &profile){ | 56 | void WLANImp::setProfile(const QString &profile){ |
56 | interfaceSetup->setProfile(profile); | 57 | interfaceSetup->setProfile(profile); |
57 | parseSettingFile(); | 58 | parseSettingFile(); |
58 | } | 59 | } |
59 | 60 | ||
60 | /** | 61 | /** |
61 | * Parses the settings file that was read in and gets any setting from it. | 62 | * Parses the settings file that was read in and gets any setting from it. |
62 | */ | 63 | */ |
63 | void WLANImp::parseSettingFile(){ | 64 | void WLANImp::parseSettingFile(){ |
64 | bool foundCase = false; | 65 | bool foundCase = false; |
65 | bool found = false; | 66 | bool found = false; |
66 | for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { | 67 | for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { |
67 | QString line = (*it).simplifyWhiteSpace(); | 68 | QString line = (*it).simplifyWhiteSpace(); |
68 | if(line.contains("case")) | 69 | if(line.contains("case")) |
69 | foundCase = true; | 70 | foundCase = true; |
70 | // See if we found our scheme to write or the sceme couldn't be found | 71 | // See if we found our scheme to write or the sceme couldn't be found |
71 | if((foundCase && line.contains("esac")) || | 72 | if((foundCase && line.contains("esac")) || |
72 | (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')) | 73 | (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')) |
73 | found = true; | 74 | found = true; |
74 | 75 | ||
75 | if(line.contains(";;")) | 76 | if(line.contains(";;")) |
76 | found = false; | 77 | found = false; |
77 | if(found){ | 78 | if(found){ |
78 | // write out scheme | 79 | // write out scheme |
79 | if(line.contains("ESSID=")){ | 80 | if(line.contains("ESSID=")){ |
80 | QString id = line.mid(line.find("ESSID=")+6, line.length()); | 81 | QString id = line.mid(line.find("ESSID=")+6, line.length()); |
81 | if(id == "any"){ | 82 | if(id == "any"){ |
82 | essAny->setChecked(false); | 83 | essAny->setChecked(false); |
83 | }else{ | 84 | }else{ |
84 | essAny->setChecked(true); | 85 | essAny->setChecked(true); |
85 | essSpecificLineEdit->setText(id); | 86 | essSpecificLineEdit->setText(id); |
86 | } | 87 | } |
87 | } | 88 | } |
88 | if(line.contains("MODE=")){ | 89 | if(line.contains("MODE=")){ |
89 | QString mode = line.mid(line.find("MODE=")+5, line.length()); | 90 | QString mode = line.mid(line.find("MODE=")+5, line.length()); |
90 | if(mode == "Managed"){ | 91 | if(mode == "Managed"){ |
91 | networkType->setCurrentItem(0); | 92 | networkType->setCurrentItem(0); |
92 | channelLabel->setEnabled(false); | 93 | channelLabel->setEnabled(false); |
93 | networkChannel->setEnabled(false); | 94 | networkChannel->setEnabled(false); |
94 | } | 95 | } |
95 | else{ | 96 | else{ |
96 | networkType->setCurrentItem(1); | 97 | networkType->setCurrentItem(1); |
97 | networkChannel->setEnabled(true); | 98 | networkChannel->setEnabled(true); |
98 | channelLabel->setEnabled(true); | 99 | channelLabel->setEnabled(true); |
99 | } | 100 | } |
100 | } | 101 | } |
101 | if(line.contains("#KEY0=")) | 102 | if(line.contains("#KEY0=")) |
102 | keyLineEdit0->setText(line.mid(6, line.length())); | 103 | keyLineEdit0->setText(line.mid(6, line.length())); |
103 | if(line.contains("#KEY1=")) | 104 | if(line.contains("#KEY1=")) |
104 | keyLineEdit1->setText(line.mid(6, line.length())); | 105 | keyLineEdit1->setText(line.mid(6, line.length())); |
105 | if(line.contains("#KEY2=")) | 106 | if(line.contains("#KEY2=")) |
106 | keyLineEdit2->setText(line.mid(6, line.length())); | 107 | keyLineEdit2->setText(line.mid(6, line.length())); |
107 | if(line.contains("#KEY3=")) | 108 | if(line.contains("#KEY3=")) |
108 | keyLineEdit3->setText(line.mid(6, line.length())); | 109 | keyLineEdit3->setText(line.mid(6, line.length())); |
109 | 110 | ||
110 | if(line.contains("KEY=")){ | 111 | if(line.contains("KEY=")){ |
111 | wepEnabled->setChecked(true); | 112 | wepEnabled->setChecked(true); |
112 | QString key; | 113 | QString key; |
113 | if(line.right(5) == (" open")){ | 114 | if(line.right(5) == (" open")){ |
114 | key = line.mid(4, line.length()-5); | 115 | key = line.mid(4, line.length()-5); |
115 | authOpen->setChecked(true); | 116 | authOpen->setChecked(true); |
116 | authShared->setChecked(false); | 117 | authShared->setChecked(false); |
117 | } | 118 | } |
118 | else{ | 119 | else{ |
119 | authOpen->setChecked(false); | 120 | authOpen->setChecked(false); |
120 | authShared->setChecked(true); | 121 | authShared->setChecked(true); |
121 | key = line.mid(4, line.length()); | 122 | key = line.mid(4, line.length()); |
122 | } | 123 | } |
123 | if(key == keyLineEdit0->text()) keyRadio0->setChecked(true); | 124 | if(key == keyLineEdit0->text()) keyRadio0->setChecked(true); |
124 | if(key == keyLineEdit1->text()) keyRadio1->setChecked(true); | 125 | if(key == keyLineEdit1->text()) keyRadio1->setChecked(true); |
125 | if(key == keyLineEdit2->text()) keyRadio2->setChecked(true); | 126 | if(key == keyLineEdit2->text()) keyRadio2->setChecked(true); |
126 | if(key == keyLineEdit3->text()) keyRadio3->setChecked(true); | 127 | if(key == keyLineEdit3->text()) keyRadio3->setChecked(true); |
127 | } | 128 | } |
128 | if(line.contains("CHANNEL=")){ | 129 | if(line.contains("CHANNEL=")){ |
129 | networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt()); | 130 | networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt()); |
130 | } | 131 | } |
131 | } | 132 | } |
132 | } | 133 | } |
133 | } | 134 | } |
134 | 135 | ||
135 | /** | 136 | /** |
136 | * Saves settings to the wireless.opts file using the current profile | 137 | * Saves settings to the wireless.opts file using the current profile |
137 | */ | 138 | */ |
138 | void WLANImp::changeAndSaveSettingFile(){ | 139 | void WLANImp::changeAndSaveSettingFile(){ |
139 | QString wlanFile = WIRELESS_OPTS; | 140 | QString wlanFile = WIRELESS_OPTS; |
140 | QFile::remove(wlanFile); | 141 | QFile::remove(wlanFile); |
141 | QFile file(wlanFile); | 142 | QFile file(wlanFile); |
142 | 143 | ||
143 | if (!file.open(IO_ReadWrite)){ | 144 | if (!file.open(IO_ReadWrite)){ |
144 | qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1()); | 145 | qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1()); |
145 | return; | 146 | return; |
146 | } | 147 | } |
147 | 148 | ||
148 | QTextStream stream( &file ); | 149 | QTextStream stream( &file ); |
149 | bool foundCase = false; | 150 | bool foundCase = false; |
150 | bool found = false; | 151 | bool found = false; |
151 | bool output = true; | 152 | bool output = true; |
152 | for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { | 153 | for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { |
153 | QString line = (*it).simplifyWhiteSpace(); | 154 | QString line = (*it).simplifyWhiteSpace(); |
154 | if(line.contains("case")) | 155 | if(line.contains("case")) |
155 | foundCase = true; | 156 | foundCase = true; |
156 | // See if we found our scheme to write or the sceme couldn't be found | 157 | // See if we found our scheme to write or the sceme couldn't be found |
157 | if((foundCase && line.contains("esac") && !found) || | 158 | if((foundCase && line.contains("esac") && !found) || |
158 | (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){ | 159 | (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){ |
159 | // write out scheme | 160 | // write out scheme |
160 | found = true; | 161 | found = true; |
161 | output = false; | 162 | output = false; |
162 | 163 | ||
163 | if(!line.contains("esac")) | 164 | if(!line.contains("esac")) |
164 | stream << line << "\n"; | 165 | stream << line << "\n"; |
165 | if(!essAny->isChecked() == true){ | 166 | if(!essAny->isChecked() == true){ |
166 | stream << "\tESSID=any\n"; | 167 | stream << "\tESSID=any\n"; |
167 | stream << "\tMODE=Managed\n"; | 168 | stream << "\tMODE=Managed\n"; |
168 | } | 169 | } |
169 | else{ | 170 | else{ |
170 | stream << "\tESSID=" << essSpecificLineEdit->text() << '\n'; | 171 | stream << "\tESSID=" << essSpecificLineEdit->text() << '\n'; |
171 | stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n'; | 172 | stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n'; |
172 | stream << "\tCHANNEL=" << networkChannel->value() << "\n"; | 173 | stream << "\tCHANNEL=" << networkChannel->value() << "\n"; |
173 | } | 174 | } |
174 | 175 | ||
175 | stream << "\t#KEY0=" << keyLineEdit0->text() << "\n"; | 176 | stream << "\t#KEY0=" << keyLineEdit0->text() << "\n"; |
176 | stream << "\t#KEY1=" << keyLineEdit1->text() << "\n"; | 177 | stream << "\t#KEY1=" << keyLineEdit1->text() << "\n"; |
177 | stream << "\t#KEY2=" << keyLineEdit2->text() << "\n"; | 178 | stream << "\t#KEY2=" << keyLineEdit2->text() << "\n"; |
178 | stream << "\t#KEY3=" << keyLineEdit3->text() << "\n"; | 179 | stream << "\t#KEY3=" << keyLineEdit3->text() << "\n"; |
179 | 180 | ||
180 | if(wepEnabled->isChecked()){ | 181 | if(wepEnabled->isChecked()){ |
181 | stream << "\tKEY=\""; | 182 | stream << "\tKEY=\""; |
182 | if(keyRadio0->isChecked()) stream << keyLineEdit0->text(); | 183 | if(keyRadio0->isChecked()) stream << keyLineEdit0->text(); |
183 | if(keyRadio1->isChecked()) stream << keyLineEdit1->text(); | 184 | if(keyRadio1->isChecked()) stream << keyLineEdit1->text(); |
184 | if(keyRadio2->isChecked()) stream << keyLineEdit2->text(); | 185 | if(keyRadio2->isChecked()) stream << keyLineEdit2->text(); |
185 | if(keyRadio3->isChecked()) stream << keyLineEdit3->text(); | 186 | if(keyRadio3->isChecked()) stream << keyLineEdit3->text(); |
186 | if(authOpen->isChecked()) | 187 | if(authOpen->isChecked()) |
187 | stream << " open"; | 188 | stream << " open"; |
188 | else | 189 | else |
189 | stream << " restricted"; | 190 | stream << " restricted"; |
190 | stream << "\"\n"; | 191 | stream << "\"\n"; |
191 | } | 192 | } |
192 | stream << "\tRATE=auto\n"; | 193 | stream << "\tRATE=auto\n"; |
193 | if(line.contains("esac")) | 194 | if(line.contains("esac")) |
194 | stream << line << "\n"; | 195 | stream << line << "\n"; |
195 | } | 196 | } |
196 | if(line.contains(";;")) | 197 | if(line.contains(";;")) |
197 | output = true; | 198 | output = true; |
198 | if(output && (*it).length() ) | 199 | if(output && (*it).length() ) |
199 | stream << (*it) << '\n'; | 200 | stream << (*it) << '\n'; |
200 | } | 201 | } |
201 | file.close(); | 202 | file.close(); |
202 | } | 203 | } |
203 | 204 | ||
204 | /** | 205 | /** |
205 | * Check to see if the current config is valid | 206 | * Check to see if the current config is valid |
206 | * Save wireless.opts, save interfaces | 207 | * Save wireless.opts, save interfaces |
207 | */ | 208 | */ |
208 | void WLANImp::accept(){ | 209 | void WLANImp::accept(){ |
209 | if(wepEnabled->isChecked()){ | 210 | if(wepEnabled->isChecked()){ |
210 | if(keyLineEdit0->text().isEmpty() && keyLineEdit1->text().isEmpty() && keyLineEdit2->text().isEmpty() && keyLineEdit3->text().isEmpty() ){ | 211 | if(keyLineEdit0->text().isEmpty() && keyLineEdit1->text().isEmpty() && keyLineEdit2->text().isEmpty() && keyLineEdit3->text().isEmpty() ){ |
211 | QMessageBox::information(this, "Error", "Please enter a key for WEP.", QMessageBox::Ok); | 212 | QMessageBox::information(this, "Error", "Please enter a key for WEP.", QMessageBox::Ok); |
212 | return; | 213 | return; |
213 | } | 214 | } |
214 | } | 215 | } |
215 | 216 | ||
216 | if(essAny->isChecked() && essSpecificLineEdit->text().isEmpty()){ | 217 | if(essAny->isChecked() && essSpecificLineEdit->text().isEmpty()){ |
217 | QMessageBox::information(this, "Error", "Please enter a ESS-ID.", QMessageBox::Ok); | 218 | QMessageBox::information(this, "Error", "Please enter a ESS-ID.", QMessageBox::Ok); |
218 | return; | 219 | return; |
219 | } | 220 | } |
220 | 221 | ||
221 | // Ok settings are good here, save | 222 | // Ok settings are good here, save |
222 | changeAndSaveSettingFile(); | 223 | changeAndSaveSettingFile(); |
223 | 224 | ||
224 | // Try to save the interfaces settings. | 225 | // Try to save the interfaces settings. |
225 | if(!interfaceSetup->saveChanges()) | 226 | if(!interfaceSetup->saveChanges()) |
226 | return; | 227 | return; |
227 | 228 | ||
228 | // Restart the device now that the settings have changed | 229 | OProcess insert; |
229 | QString initpath; | 230 | // OProcess eject; |
230 | if( QDir("/etc/rc.d/init.d").exists() ) | ||
231 | initpath = "/etc/rc.d/init.d"; | ||
232 | else if( QDir("/etc/init.d").exists() ) | ||
233 | initpath = "/etc/init.d"; | ||
234 | 231 | ||
235 | // It would be kinda cool if we didn't have to do this and could just to ifup/down | 232 | insert << "sh -c \"cardctl insert && cardctl eject\""; |
236 | 233 | // eject << "cardctl eject"; | |
237 | if( initpath ) | 234 | |
238 | system(QString("%1/pcmcia stop").arg(initpath)); | 235 | // if (!eject.start(OProcess::Block, OProcess::NoCommunication) ) { |
239 | if( initpath ) | 236 | // qWarning("could not start cardctl eject"); |
240 | system(QString("%1/pcmcia start").arg(initpath)); | 237 | // } |
238 | |||
239 | if (!insert.start(OProcess::DontCare, OProcess::NoCommunication) ) { | ||
240 | qWarning("could not start cardctl insert"); | ||
241 | } | ||
241 | 242 | ||
242 | // Close out the dialog | 243 | // Close out the dialog |
243 | QDialog::accept(); | 244 | QDialog::accept(); |
244 | } | 245 | } |
245 | 246 | ||
246 | // wlanimp.cpp | 247 | // wlanimp.cpp |
247 | 248 | ||