xref: /haiku/src/apps/networkstatus/NetworkStatusView.cpp (revision e661df29804f2703a65e23f5789c3c87c0915298)
1 /*
2  * Copyright 2006-2013, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Dario Casalinuovo
7  *		Axel Dörfler, axeld@pinc-software.de
8  *		Rene Gollent, rene@gollent.com
9  *		Hugo Santos, hugosantos@gmail.com
10  */
11 
12 
13 #include "NetworkStatusView.h"
14 
15 #include <algorithm>
16 #include <set>
17 #include <vector>
18 
19 #include <arpa/inet.h>
20 #include <net/if.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <strings.h>
24 #include <sys/socket.h>
25 #include <sys/sockio.h>
26 #include <unistd.h>
27 
28 #include <AboutWindow.h>
29 #include <Alert.h>
30 #include <Application.h>
31 #include <Catalog.h>
32 #include <Bitmap.h>
33 #include <Deskbar.h>
34 #include <Dragger.h>
35 #include <Drivers.h>
36 #include <IconUtils.h>
37 #include <Locale.h>
38 #include <MenuItem.h>
39 #include <MessageRunner.h>
40 #include <NetworkDevice.h>
41 #include <NetworkInterface.h>
42 #include <NetworkRoster.h>
43 #include <PopUpMenu.h>
44 #include <Resources.h>
45 #include <Roster.h>
46 #include <String.h>
47 #include <TextView.h>
48 
49 #include "NetworkStatus.h"
50 #include "NetworkStatusIcons.h"
51 #include "RadioView.h"
52 #include "WirelessNetworkMenuItem.h"
53 
54 
55 #undef B_TRANSLATION_CONTEXT
56 #define B_TRANSLATION_CONTEXT "NetworkStatusView"
57 
58 
59 static const char *kStatusDescriptions[] = {
60 	B_TRANSLATE("Unknown"),
61 	B_TRANSLATE("No link"),
62 	B_TRANSLATE("No stateful configuration"),
63 	B_TRANSLATE("Configuring"),
64 	B_TRANSLATE("Ready")
65 };
66 
67 extern "C" _EXPORT BView *instantiate_deskbar_item(void);
68 
69 
70 const uint32 kMsgShowConfiguration = 'shcf';
71 const uint32 kMsgOpenNetworkPreferences = 'onwp';
72 const uint32 kMsgJoinNetwork = 'join';
73 
74 const uint32 kMinIconWidth = 16;
75 const uint32 kMinIconHeight = 16;
76 
77 
78 //	#pragma mark -
79 
80 
81 static bool
82 signal_strength_compare(const wireless_network &a,
83 	const wireless_network &b)
84 {
85 	if (a.signal_strength == b.signal_strength)
86 		return strcmp(a.name, b.name) > 0;
87 	return a.signal_strength > b.signal_strength;
88 }
89 
90 
91 //	#pragma mark -
92 
93 
94 NetworkStatusView::NetworkStatusView(BRect frame, int32 resizingMode,
95 		bool inDeskbar)
96 	: BView(frame, kDeskbarItemName, resizingMode,
97 		B_WILL_DRAW | B_FRAME_EVENTS),
98 	fInDeskbar(inDeskbar)
99 {
100 	_Init();
101 
102 	if (!inDeskbar) {
103 		// we were obviously added to a standard window - let's add a dragger
104 		frame.OffsetTo(B_ORIGIN);
105 		frame.top = frame.bottom - 7;
106 		frame.left = frame.right - 7;
107 		BDragger* dragger = new BDragger(frame, this,
108 			B_FOLLOW_RIGHT | B_FOLLOW_BOTTOM);
109 		AddChild(dragger);
110 	} else
111 		_Update();
112 }
113 
114 
115 NetworkStatusView::NetworkStatusView(BMessage* archive)
116 	: BView(archive),
117 	fInDeskbar(false)
118 {
119 	app_info info;
120 	if (be_app->GetAppInfo(&info) == B_OK
121 		&& !strcasecmp(info.signature, "application/x-vnd.Be-TSKB"))
122 		fInDeskbar = true;
123 
124 	_Init();
125 }
126 
127 
128 NetworkStatusView::~NetworkStatusView()
129 {
130 }
131 
132 
133 void
134 NetworkStatusView::_Init()
135 {
136 	for (int i = 0; i < kStatusCount; i++) {
137 		fTrayIcons[i] = NULL;
138 		fNotifyIcons[i] = NULL;
139 	}
140 
141 	_UpdateBitmaps();
142 }
143 
144 
145 void
146 NetworkStatusView::_UpdateBitmaps()
147 {
148 	for (int i = 0; i < kStatusCount; i++) {
149 		delete fTrayIcons[i];
150 		delete fNotifyIcons[i];
151 		fTrayIcons[i] = NULL;
152 		fNotifyIcons[i] = NULL;
153 	}
154 
155 	image_info info;
156 	if (our_image(info) != B_OK)
157 		return;
158 
159 	BFile file(info.name, B_READ_ONLY);
160 	if (file.InitCheck() < B_OK)
161 		return;
162 
163 	BResources resources(&file);
164 #ifdef HAIKU_TARGET_PLATFORM_HAIKU
165 	if (resources.InitCheck() < B_OK)
166 		return;
167 #endif
168 
169 	for (int i = 0; i < kStatusCount; i++) {
170 		const void* data = NULL;
171 		size_t size;
172 		data = resources.LoadResource(B_VECTOR_ICON_TYPE,
173 			kNetworkStatusNoDevice + i, &size);
174 		if (data != NULL) {
175 			// Scale main tray icon
176 			BBitmap* trayIcon = new BBitmap(Bounds(), B_RGBA32);
177 			if (trayIcon->InitCheck() == B_OK
178 				&& BIconUtils::GetVectorIcon((const uint8 *)data,
179 					size, trayIcon) == B_OK) {
180 				fTrayIcons[i] = trayIcon;
181 			} else
182 				delete trayIcon;
183 
184 			// Scale notification icon
185 			BBitmap* notifyIcon = new BBitmap(BRect(0, 0, 31, 31), B_RGBA32);
186 			if (notifyIcon->InitCheck() == B_OK
187 				&& BIconUtils::GetVectorIcon((const uint8 *)data,
188 					size, notifyIcon) == B_OK) {
189 				fNotifyIcons[i] = notifyIcon;
190 			} else
191 				delete notifyIcon;
192 		}
193 	}
194 }
195 
196 
197 void
198 NetworkStatusView::_Quit()
199 {
200 	if (fInDeskbar) {
201 		BDeskbar deskbar;
202 		deskbar.RemoveItem(kDeskbarItemName);
203 	} else
204 		be_app->PostMessage(B_QUIT_REQUESTED);
205 }
206 
207 
208 NetworkStatusView*
209 NetworkStatusView::Instantiate(BMessage* archive)
210 {
211 	if (!validate_instantiation(archive, "NetworkStatusView"))
212 		return NULL;
213 
214 	return new NetworkStatusView(archive);
215 }
216 
217 
218 status_t
219 NetworkStatusView::Archive(BMessage* archive, bool deep) const
220 {
221 	status_t status = BView::Archive(archive, deep);
222 	if (status == B_OK)
223 		status = archive->AddString("add_on", kSignature);
224 	if (status == B_OK)
225 		status = archive->AddString("class", "NetworkStatusView");
226 
227 	return status;
228 }
229 
230 
231 void
232 NetworkStatusView::AttachedToWindow()
233 {
234 	BView::AttachedToWindow();
235 	if (Parent() != NULL) {
236 		if ((Parent()->Flags() & B_DRAW_ON_CHILDREN) != 0)
237 			SetViewColor(B_TRANSPARENT_COLOR);
238 		else
239 			SetViewColor(Parent()->ViewColor());
240 	} else
241 		SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
242 
243 	SetLowColor(ViewColor());
244 
245 	start_watching_network(
246 		B_WATCH_NETWORK_INTERFACE_CHANGES | B_WATCH_NETWORK_LINK_CHANGES, this);
247 
248 	_Update();
249 }
250 
251 
252 void
253 NetworkStatusView::DetachedFromWindow()
254 {
255 	stop_watching_network(this);
256 }
257 
258 
259 void
260 NetworkStatusView::MessageReceived(BMessage* message)
261 {
262 	switch (message->what) {
263 		case B_NETWORK_MONITOR:
264 			_Update();
265 			break;
266 
267 		case kMsgShowConfiguration:
268 			_ShowConfiguration(message);
269 			break;
270 
271 		case kMsgOpenNetworkPreferences:
272 			_OpenNetworksPreferences();
273 			break;
274 
275 		case kMsgJoinNetwork:
276 		{
277 			const char* deviceName;
278 			const char* name;
279 			BNetworkAddress address;
280 			if (message->FindString("device", &deviceName) == B_OK
281 				&& message->FindString("name", &name) == B_OK
282 				&& message->FindFlat("address", &address) == B_OK) {
283 				BNetworkDevice device(deviceName);
284 				status_t status = device.JoinNetwork(address);
285 				if (status != B_OK) {
286 					BString text
287 						= B_TRANSLATE("Could not join wireless network:\n");
288 					text << strerror(status);
289 					BAlert* alert = new BAlert(name, text.String(),
290 						B_TRANSLATE("OK"), NULL, NULL, B_WIDTH_AS_USUAL,
291 						B_STOP_ALERT);
292 					alert->SetFlags(alert->Flags() | B_CLOSE_ON_ESCAPE);
293 					alert->Go(NULL);
294 				}
295 			}
296 			break;
297 		}
298 
299 		case B_ABOUT_REQUESTED:
300 			_AboutRequested();
301 			break;
302 
303 		case B_QUIT_REQUESTED:
304 			_Quit();
305 			break;
306 
307 		default:
308 			BView::MessageReceived(message);
309 	}
310 }
311 
312 
313 void
314 NetworkStatusView::FrameResized(float width, float height)
315 {
316 	_UpdateBitmaps();
317 	Invalidate();
318 }
319 
320 
321 void
322 NetworkStatusView::Draw(BRect updateRect)
323 {
324 	int32 status = kStatusUnknown;
325 	for (std::map<BString, int32>::const_iterator it
326 		= fInterfaceStatuses.begin(); it != fInterfaceStatuses.end(); ++it) {
327 		if (it->second > status)
328 			status = it->second;
329 	}
330 
331 	if (fTrayIcons[status] == NULL)
332 		return;
333 
334 	SetDrawingMode(B_OP_ALPHA);
335 	DrawBitmap(fTrayIcons[status]);
336 	SetDrawingMode(B_OP_COPY);
337 }
338 
339 
340 void
341 NetworkStatusView::_ShowConfiguration(BMessage* message)
342 {
343 	const char* name;
344 	if (message->FindString("interface", &name) != B_OK)
345 		return;
346 
347 	BNetworkInterface networkInterface(name);
348 	if (!networkInterface.Exists())
349 		return;
350 
351 	BNetworkInterfaceAddress address;
352 	networkInterface.GetAddressAt(0, address);
353 		// TODO: We should get all addresses,
354 		// not just the first one.
355 	BString text(B_TRANSLATE("%ifaceName information:\n"));
356 	text.ReplaceFirst("%ifaceName", name);
357 
358 	size_t boldLength = text.Length();
359 
360 	text << "\n" << B_TRANSLATE("Address") << ": "
361 		<< BNetworkAddress(address.Address()).ToString();
362 	text << "\n" << B_TRANSLATE("Broadcast") << ": "
363 		<< BNetworkAddress(address.Broadcast()).ToString();
364 	text << "\n" << B_TRANSLATE("Netmask") << ": "
365 		<< BNetworkAddress(address.Mask()).ToString();
366 
367 	BAlert* alert = new BAlert(name, text.String(), B_TRANSLATE("OK"));
368 	alert->SetFlags(alert->Flags() | B_CLOSE_ON_ESCAPE);
369 	BTextView* view = alert->TextView();
370 	BFont font;
371 
372 	view->SetStylable(true);
373 	view->GetFont(&font);
374 	font.SetFace(B_BOLD_FACE);
375 	view->SetFontAndColor(0, boldLength, &font);
376 
377 	alert->Go(NULL);
378 }
379 
380 
381 void
382 NetworkStatusView::MouseDown(BPoint point)
383 {
384 	BPopUpMenu* menu = new BPopUpMenu(B_EMPTY_STRING, false, false);
385 	menu->SetAsyncAutoDestruct(true);
386 	menu->SetFont(be_plain_font);
387 	BString wifiInterface;
388 	BNetworkDevice wifiDevice;
389 
390 	// Add interfaces
391 
392 	for (std::map<BString, int32>::const_iterator it
393 		= fInterfaceStatuses.begin(); it != fInterfaceStatuses.end(); ++it) {
394 		const BString& name = it->first;
395 
396 		BString label = name;
397 		label += ": ";
398 		label += kStatusDescriptions[
399 			_DetermineInterfaceStatus(name.String())];
400 
401 		BMessage* info = new BMessage(kMsgShowConfiguration);
402 		info->AddString("interface", name.String());
403 		menu->AddItem(new BMenuItem(label.String(), info));
404 
405 		// We only show the networks of the first wireless device we find.
406 		if (wifiInterface.IsEmpty()) {
407 			wifiDevice.SetTo(name);
408 			if (wifiDevice.IsWireless())
409 				wifiInterface = name;
410 		}
411 	}
412 
413 	if (!fInterfaceStatuses.empty())
414 		menu->AddSeparatorItem();
415 
416 	// Add wireless networks, if any
417 
418 	if (!wifiInterface.IsEmpty()) {
419 		std::set<BNetworkAddress> associated;
420 		BNetworkAddress address;
421 		uint32 cookie = 0;
422 		while (wifiDevice.GetNextAssociatedNetwork(cookie, address) == B_OK)
423 			associated.insert(address);
424 
425 		cookie = 0;
426 		wireless_network network;
427 		typedef std::vector<wireless_network> WirelessNetworkVector;
428 		WirelessNetworkVector wirelessNetworks;
429 		while (wifiDevice.GetNextNetwork(cookie, network) == B_OK)
430 			wirelessNetworks.push_back(network);
431 
432 		std::sort(wirelessNetworks.begin(), wirelessNetworks.end(),
433 			signal_strength_compare);
434 
435 		int32 count = 0;
436 		for (WirelessNetworkVector::iterator it = wirelessNetworks.begin();
437 				it != wirelessNetworks.end(); it++) {
438 			wireless_network &network = *it;
439 
440 			BMessage* message = new BMessage(kMsgJoinNetwork);
441 			message->AddString("device", wifiInterface);
442 			message->AddString("name", network.name);
443 			message->AddFlat("address", &network.address);
444 
445 			BMenuItem* item = new WirelessNetworkMenuItem(network.name,
446 				network.signal_strength, network.authentication_mode, message);
447 			menu->AddItem(item);
448 			if (associated.find(network.address) != associated.end())
449 				item->SetMarked(true);
450 
451 			count++;
452 		}
453 		if (count == 0) {
454 			BMenuItem* item = new BMenuItem(
455 				B_TRANSLATE("<no wireless networks found>"), NULL);
456 			item->SetEnabled(false);
457 			menu->AddItem(item);
458 		}
459 		menu->AddSeparatorItem();
460 	}
461 
462 	menu->AddItem(new BMenuItem(B_TRANSLATE(
463 		"Open network preferences" B_UTF8_ELLIPSIS),
464 		new BMessage(kMsgOpenNetworkPreferences)));
465 
466 	if (fInDeskbar) {
467 		menu->AddItem(new BMenuItem(B_TRANSLATE("Quit"),
468 			new BMessage(B_QUIT_REQUESTED)));
469 	}
470 	menu->SetTargetForItems(this);
471 
472 	ConvertToScreen(&point);
473 	menu->Go(point, true, true, true);
474 }
475 
476 
477 void
478 NetworkStatusView::_AboutRequested()
479 {
480 	BAboutWindow* window = new BAboutWindow(
481 		B_TRANSLATE_SYSTEM_NAME("NetworkStatus"), kSignature);
482 
483 	const char* authors[] = {
484 		"Axel Dörfler",
485 		"Hugo Santos",
486 		NULL
487 	};
488 
489 	window->AddCopyright(2007, "Haiku, Inc.");
490 	window->AddAuthors(authors);
491 
492 	window->Show();
493 }
494 
495 
496 int32
497 NetworkStatusView::_DetermineInterfaceStatus(
498 	const BNetworkInterface& interface)
499 {
500 	uint32 flags = interface.Flags();
501 	int32 status = kStatusNoLink;
502 
503 	// TODO: no kStatusLinkNoConfig yet
504 
505 	if (flags & IFF_CONFIGURING)
506 		status = kStatusConnecting;
507 	else if ((flags & (IFF_UP | IFF_LINK)) == (IFF_UP | IFF_LINK))
508 		status = kStatusReady;
509 
510 	return status;
511 }
512 
513 
514 void
515 NetworkStatusView::_Update(bool force)
516 {
517 	BNetworkRoster& roster = BNetworkRoster::Default();
518 	BNetworkInterface interface;
519 	uint32 cookie = 0;
520 
521 	while (roster.GetNextInterface(&cookie, interface) == B_OK) {
522 		if ((interface.Flags() & IFF_LOOPBACK) == 0) {
523 			int32 oldStatus = kStatusUnknown;
524 			if (fInterfaceStatuses.find(interface.Name())
525 				!= fInterfaceStatuses.end()) {
526 				oldStatus = fInterfaceStatuses[interface.Name()];
527 			}
528 			int32 status = _DetermineInterfaceStatus(interface);
529 			if (oldStatus != status) {
530 				BNotification notification(B_INFORMATION_NOTIFICATION);
531 				notification.SetGroup(B_TRANSLATE("Network Status"));
532 				notification.SetTitle(interface.Name());
533 				notification.SetMessageID(interface.Name());
534 				notification.SetIcon(fNotifyIcons[status]);
535 				if (status == kStatusConnecting
536 					|| (status == kStatusReady
537 						&& oldStatus == kStatusConnecting)
538 					|| (status == kStatusNoLink
539 						&& oldStatus == kStatusReady)
540 					|| (status == kStatusNoLink
541 						&& oldStatus == kStatusConnecting)) {
542 					// A significant state change, raise notification.
543 					notification.SetContent(kStatusDescriptions[status]);
544 					notification.Send();
545 				}
546 				Invalidate();
547 			}
548 			fInterfaceStatuses[interface.Name()] = status;
549 		}
550 	}
551 }
552 
553 
554 void
555 NetworkStatusView::_OpenNetworksPreferences()
556 {
557 	status_t status = be_roster->Launch("application/x-vnd.Haiku-Network");
558 	if (status != B_OK && status != B_ALREADY_RUNNING) {
559 		BString errorMessage(B_TRANSLATE("Launching the network preflet "
560 			"failed.\n\nError: "));
561 		errorMessage << strerror(status);
562 		BAlert* alert = new BAlert("launch error", errorMessage.String(),
563 			B_TRANSLATE("OK"));
564 		alert->SetFlags(alert->Flags() | B_CLOSE_ON_ESCAPE);
565 
566 		// asynchronous alert in order to not block replicant host application
567 		alert->Go(NULL);
568 	}
569 }
570 
571 
572 //	#pragma mark -
573 
574 
575 extern "C" _EXPORT BView *
576 instantiate_deskbar_item(void)
577 {
578 	return new NetworkStatusView(BRect(0, 0, 15, 15),
579 		B_FOLLOW_LEFT | B_FOLLOW_TOP, true);
580 }
581 
582