-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* | ||
Copyright (c) 2013, 2014 Paolo Patierno | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
Contributors: | ||
Paolo Patierno - initial API and implementation and/or initial documentation | ||
*/ | ||
|
||
using System; | ||
|
||
namespace uPLibrary.Networking.M2Mqtt.Exceptions | ||
{ | ||
/// <summary> | ||
/// MQTT client exception | ||
/// </summary> | ||
public class MqttClientException : Exception | ||
{ | ||
/// <summary> | ||
/// Constructor | ||
/// </summary> | ||
/// <param name="code">Error code</param> | ||
public MqttClientException(MqttClientErrorCode errorCode) | ||
{ | ||
this.errorCode = errorCode; | ||
} | ||
|
||
// error code | ||
private MqttClientErrorCode errorCode; | ||
|
||
/// <summary> | ||
/// Error code | ||
/// </summary> | ||
public MqttClientErrorCode ErrorCode | ||
{ | ||
get { return this.errorCode; } | ||
set { this.errorCode = value; } | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// MQTT client erroro code | ||
/// </summary> | ||
public enum MqttClientErrorCode | ||
{ | ||
/// <summary> | ||
/// Will error (topic, message or QoS level) | ||
/// </summary> | ||
WillWrong = 1, | ||
|
||
/// <summary> | ||
/// Keep alive period too large | ||
/// </summary> | ||
KeepAliveWrong, | ||
|
||
/// <summary> | ||
/// Topic contains wildcards | ||
/// </summary> | ||
TopicWildcard, | ||
|
||
/// <summary> | ||
/// Topic length wrong | ||
/// </summary> | ||
TopicLength, | ||
|
||
/// <summary> | ||
/// QoS level not allowed | ||
/// </summary> | ||
QosNotAllowed, | ||
|
||
/// <summary> | ||
/// Topics list empty for subscribe | ||
/// </summary> | ||
TopicsEmpty, | ||
|
||
/// <summary> | ||
/// Qos levels list empty for subscribe | ||
/// </summary> | ||
QosLevelsEmpty, | ||
|
||
/// <summary> | ||
/// Topics / Qos Levels not match in subscribe | ||
/// </summary> | ||
TopicsQosLevelsNotMatch, | ||
|
||
/// <summary> | ||
/// Wrong message from broker | ||
/// </summary> | ||
WrongBrokerMessage, | ||
|
||
/// <summary> | ||
/// Wrong Message Id | ||
/// </summary> | ||
WrongMessageId, | ||
|
||
/// <summary> | ||
/// Inflight queue is full | ||
/// </summary> | ||
InflightQueueFull, | ||
|
||
// [v3.1.1] | ||
/// <summary> | ||
/// Invalid flag bits received | ||
/// </summary> | ||
InvalidFlagBits, | ||
|
||
// [v3.1.1] | ||
/// <summary> | ||
/// Invalid connect flags received | ||
/// </summary> | ||
InvalidConnectFlags, | ||
|
||
// [v3.1.1] | ||
/// <summary> | ||
/// Invalid client id | ||
/// </summary> | ||
InvalidClientId, | ||
|
||
// [v3.1.1] | ||
/// <summary> | ||
/// Invalid protocol name | ||
/// </summary> | ||
InvalidProtocolName | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
Copyright (c) 2013, 2014 Paolo Patierno | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
Contributors: | ||
Paolo Patierno - initial API and implementation and/or initial documentation | ||
*/ | ||
|
||
using System; | ||
|
||
namespace uPLibrary.Networking.M2Mqtt.Exceptions | ||
{ | ||
/// <summary> | ||
/// Exception due to error communication with broker on socket | ||
/// </summary> | ||
public class MqttCommunicationException : Exception | ||
{ | ||
/// <summary> | ||
/// Default constructor | ||
/// </summary> | ||
public MqttCommunicationException() | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Constructor | ||
/// </summary> | ||
/// <param name="e">Inner Exception</param> | ||
public MqttCommunicationException(Exception e) | ||
: base(String.Empty, e) | ||
{ | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
Copyright (c) 2013, 2014 Paolo Patierno | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
Contributors: | ||
Paolo Patierno - initial API and implementation and/or initial documentation | ||
*/ | ||
|
||
using System; | ||
|
||
namespace uPLibrary.Networking.M2Mqtt.Exceptions | ||
{ | ||
/// <summary> | ||
/// Connection to the broker exception | ||
/// </summary> | ||
public class MqttConnectionException : Exception | ||
{ | ||
public MqttConnectionException(string message, Exception innerException) | ||
: base(message, innerException) | ||
{ | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
Copyright (c) 2013, 2014 Paolo Patierno | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
Contributors: | ||
Paolo Patierno - initial API and implementation and/or initial documentation | ||
*/ | ||
|
||
using System; | ||
|
||
namespace uPLibrary.Networking.M2Mqtt.Exceptions | ||
{ | ||
/// <summary> | ||
/// Timeout on receiving from broker exception | ||
/// </summary> | ||
public class MqttTimeoutException : Exception | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
Copyright (c) 2013, 2014 Paolo Patierno | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
Contributors: | ||
Paolo Patierno - initial API and implementation and/or initial documentation | ||
*/ | ||
|
||
using System; | ||
using System.Text; | ||
|
||
namespace uPLibrary.Networking.M2Mqtt | ||
{ | ||
/// <summary> | ||
/// Interface for channel under MQTT library | ||
/// </summary> | ||
public interface IMqttNetworkChannel | ||
{ | ||
/// <summary> | ||
/// Data available on channel | ||
/// </summary> | ||
bool DataAvailable { get; } | ||
|
||
/// <summary> | ||
/// Receive data from the network channel | ||
/// </summary> | ||
/// <param name="buffer">Data buffer for receiving data</param> | ||
/// <returns>Number of bytes received</returns> | ||
int Receive(byte[] buffer); | ||
|
||
/// <summary> | ||
/// Receive data from the network channel with a specified timeout | ||
/// </summary> | ||
/// <param name="buffer">Data buffer for receiving data</param> | ||
/// <param name="timeout">Timeout on receiving (in milliseconds)</param> | ||
/// <returns>Number of bytes received</returns> | ||
int Receive(byte[] buffer, int timeout); | ||
|
||
/// <summary> | ||
/// Send data on the network channel to the broker | ||
/// </summary> | ||
/// <param name="buffer">Data buffer to send</param> | ||
/// <returns>Number of byte sent</returns> | ||
int Send(byte[] buffer); | ||
|
||
/// <summary> | ||
/// Close the network channel | ||
/// </summary> | ||
void Close(); | ||
|
||
/// <summary> | ||
/// Connect to remote server | ||
/// </summary> | ||
void Connect(); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.