Friday, January 29, 2010

TrafficLights (Stupid App)

Introduction

I wanted to see the network activity other than in the system tray network icon, so I thought of using the keyboard's CAPS LOCK, SCROLL LOCK, and NUM key LEDs to display the network activity. TrafficLights is a simple application which blinks keyboard lights based on the network traffic on your computer. You can configure which light should blink on send or receive packets. It silently sits on your system tray. You can right click on TrafficLights' system tray icon to configure the LEDs or shut it down.

Background

This is just to learn how to trap network traffic and control keyboard LEDs in .NET.

Using the Code

There are basically two parts to this application:

  • How to identify network traffic.
  • The code below is used to initialize the PerformanceCounter class instances - one for send and one for receive (namely m_performanceCounterSent and m_performanceCounterReceive). They are initialized like so:


    //
    m_performanceCounterCategory = new PerformanceCounterCategory("Network Interface");
    string instance = m_performanceCounterCategory.GetInstanceNames()[0]; // 1st NIC !
    m_performanceCounterSent = new PerformanceCounter("Network Interface",
    "Bytes Sent/sec", instance);
    m_performanceCounterReceived = new PerformanceCounter("Network Interface",
    "Bytes Received/sec", instance);
  • How to control keyboard LEDs.
  • A background thread keeps running in the application, and it keeps on checking on the performance counter to check any network activity. And when an activity is detected, it blinks the configured keyboard LED.


    float fSentValue = m_performanceCounterSent.NextValue() / 1024;
    float fReceivedValue = m_performanceCounterReceived.NextValue() / 1024;
    if (fSentValue > 0)
    {
    keybd_event((byte)m_sendLED, 0x45, KEYEVENTF_EXTENDEDKEY, (UIntPtr)0);
    keybd_event((byte)m_sendLED, 0x45,
    KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0);
    }
    if (fReceivedValue > 0)
    {
    keybd_event((byte)m_receiveLED, 0x45, KEYEVENTF_EXTENDEDKEY, (UIntPtr)0);
    keybd_event((byte)m_receiveLED, 0x45,
    KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0);
    }

Final words

As I mentioned earlier, it's a very simple application, but the intention was to learn how to trap network traffic in ।NET.

Files

Demo
Source Code