Skip to content

Zero-copy, interruptible MQTT protocol parser and serialiser written in C

License

Notifications You must be signed in to change notification settings

deoxxa/mqtt-protocol-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mqtt-protocol-c

Zero-copy, interruptible MQTT protocol parser and serialiser written in C

Overview

mqtt-protocol-c is designed for use in resource-constrained environments. To that end, it avoids making any memory allocations or assumptions about the underlying system. It handles only the binary parsing/serialising part of the MQTT protocol, leaving all the logic and networking up to the user.

API

Please see the header and implementation files for now to see how these all fit together.

mqtt_buffer_dump

void mqtt_buffer_dump(mqtt_buffer_t* buffer);

mqtt_buffer_dump_ascii

void mqtt_buffer_dump_ascii(mqtt_buffer_t* buffer);

mqtt_buffer_dump_hex

void mqtt_buffer_dump_hex(mqtt_buffer_t* buffer);

mqtt_error_string

const char* mqtt_error_string(mqtt_error_t error);

mqtt_message_init

void mqtt_message_init(mqtt_message_t* message);

mqtt_message_dump

void mqtt_message_dump(mqtt_message_t* message);

mqtt_parser_init

void mqtt_parser_init(mqtt_parser_t* parser);

mqtt_parser_buffer

void mqtt_parser_buffer(mqtt_parser_t* parser, uint8_t* buffer, size_t buffer_length);

mqtt_parser_execute

mqtt_parser_rc_t mqtt_parser_execute(mqtt_parser_t* parser, mqtt_message_t* message, uint8_t* data, size_t len, size_t* nread);

mqtt_serialiser_init

void mqtt_serialiser_init(mqtt_serialiser_t* serialiser);

mqtt_serialiser_size

size_t mqtt_serialiser_size(mqtt_serialiser_t* serialiser, mqtt_message_t* message);

mqtt_serialiser_write

mqtt_serialiser_rc_t mqtt_serialiser_write(mqtt_serialiser_t* serialiser, mqtt_message_t* message, uint8_t* buffer, size_t len);

License

3-clause BSD. A copy is included with the source.

Contact

About

Zero-copy, interruptible MQTT protocol parser and serialiser written in C

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages