Skip to content

matsune/swift-mqtt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swift-mqtt

Asynchronous MQTT client library using SwiftNIO for networking layer.

Usage

Create an instance of MQTTClient with parameters for connection.

let client = MQTTClient(
    host: "localhost",
    port: 1883,
    clientID: "swift-mqtt client",
    cleanSession: true,
    keepAlive: 30,
    willMessage: PublishMessage(topic: "will", payload: "will msg", retain: false, qos: .atMostOnce),
)
client.connect()

You can handle events with delegate methods.

client.delegate = self

...

// MQTTClientDelegate

func mqttClient(_ client: MQTTClient, didReceive packet: MQTTPacket) {
    ...
}

func mqttClient(_ client: MQTTClient, didChange state: ConnectionState) {
    ...
}

func mqttClient(_ client: MQTTClient, didCatchError error: Error) {
    ...
}

Publish

client.publish(topic: "topic", retain: false, qos: QOS.0, payload: "payload")

Subscribe

client.subscribe(topic: "topic", qos: QOS.0)

Unsubscribe

client.unsubscribe(topic: "topic")

Disconnect

client.disconnect()

SSL/TLS connection

This library uses SwiftNIO SSL for SSL connection. You can configure settings of a client.

let caCert = "./server/certs/ca/ca_cert.pem"
let clientCert = "./server/certs/client/client_cert.pem"
let keyCert = "./server/certs/client/private/client_key.pem"
let tlsConfiguration = try? TLSConfiguration.forClient(
    minimumTLSVersion: .tlsv11,
    maximumTLSVersion: .tlsv12,
    certificateVerification: .noHostnameVerification,
    trustRoots: NIOSSLTrustRoots.certificates(NIOSSLCertificate.fromPEMFile(caCert)),
    certificateChain: NIOSSLCertificate.fromPEMFile(clientCert).map { .certificate($0) },
    privateKey: .privateKey(.init(file: keyCert, format: .pem))
)

client.tlsConfiguration = tlsConfiguration