A .NET implementation of the MQTT protocol. The library was designed to run across several platforms by creating abstractions around platform dependent functionality. Most of the source code is shared across the different projects with only the implementations of these abstractions being different. Documentation for using the library can be found here.
The project was built using Visual Studio 2013 update 4 and Windows 8.1 OS. The latest version of .NET Microframework must also be installed. The iOS project requires Xamarin.
- MqttLib - Contains Win32, WinRT(PCL) and iOS(Xamarin) projects.
- MqttLibMf42 - Contains the .NET Microframework v4.2 project.
- MqttLibPhone8 - Contains the Windows Phone 8 project.
- MqttLib_Tests - Units test run against the Win32 version of the source code.
All build output goes into (Solution Folder)\bin\(Platform Folder)
These are the main abstraction points for platform specific implementations:
- \Net(PlatformName)SocketAdapter.cs - Implements the ISocketAdapter for each platform. See \Interfaces\ISocketAdapter.cs for more information on the interface calls.
- \Client\Mqtt(PlatformName)Client.cs - Implements the top-level MqttClient client interface for each platform.
- \Settings\Mqtt(PlatformName)Settings.cs - Implements any unique settings required for each platform.
Each project is built with its own version of an MqttClient implementation. These classes have a public static method named CreateClient (or CreateSecureClient) that creates an MqttClient instance instantiated with the appropriate ISockectAdapter concrete class.
Also, each platform has its own class called MqttPlatformSettings, derived from a common MqttSettings class. The MqttSettings base class has common settings for all platforms. The derived class can override any of these settings within its own MqttPlatformSettings implementation for the specific need of that platform.
AssemblyCommon.cs contains all assembly attributes common to all projects. Each project has its own version of AssemblyInfo.cs.
Contains the MqttClient implementation for the platform. ActiveClientCollection keeps track of clients attached to the library. Currently, it only supports 1 active client at a time. SubscriptionClient tracks all active subscriptions for a client.
Due to differences in collection implementations across the platforms, and to keep dependencies at a minimum, these classes implement some basic collections needed by the library.
A few custom exceptions used by the library.
Most of the interfaces used by the library are located here.
Mqtt message implementations.
Network and protocol implementations. In here are the platform specific implementations of ISocketAdapter.
An early attempt at a poor man's plugin interface. Currently only logging is implemented through the plugin feature.
All settings related to the protocol or platform.
Some basic functions needed throughout the library. Data validators, encoders/decoders, timers, etc.