mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
examples/gcoap_fileserver: make use of callbacks
This commit is contained in:
parent
47295cc929
commit
65a8b716e3
@ -21,6 +21,7 @@ USEMODULE += shell_commands
|
|||||||
|
|
||||||
# enable the fileserver module
|
# enable the fileserver module
|
||||||
USEMODULE += gcoap_fileserver
|
USEMODULE += gcoap_fileserver
|
||||||
|
USEMODULE += gcoap_fileserver_callback
|
||||||
USEMODULE += gcoap_fileserver_delete
|
USEMODULE += gcoap_fileserver_delete
|
||||||
USEMODULE += gcoap_fileserver_put
|
USEMODULE += gcoap_fileserver_put
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* @}
|
* @}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
#include "kernel_defines.h"
|
#include "kernel_defines.h"
|
||||||
#include "net/gcoap.h"
|
#include "net/gcoap.h"
|
||||||
#include "net/gcoap/fileserver.h"
|
#include "net/gcoap/fileserver.h"
|
||||||
@ -45,11 +46,36 @@ static gcoap_listener_t _listener = {
|
|||||||
.resources_len = ARRAY_SIZE(_resources),
|
.resources_len = ARRAY_SIZE(_resources),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void _event_cb(gcoap_fileserver_event_t event, gcoap_fileserver_event_ctx_t *ctx)
|
||||||
|
{
|
||||||
|
switch (event) {
|
||||||
|
case GCOAP_FILESERVER_GET_FILE_START:
|
||||||
|
printf("gcoap fileserver: Download started: %s\n", ctx->path);
|
||||||
|
break;
|
||||||
|
case GCOAP_FILESERVER_GET_FILE_END:
|
||||||
|
printf("gcoap fileserver: Download finished: %s\n", ctx->path);
|
||||||
|
break;
|
||||||
|
case GCOAP_FILESERVER_PUT_FILE_START:
|
||||||
|
printf("gcoap fileserver: Upload started: %s\n", ctx->path);
|
||||||
|
break;
|
||||||
|
case GCOAP_FILESERVER_PUT_FILE_END:
|
||||||
|
printf("gcoap fileserver: Upload finished: %s\n", ctx->path);
|
||||||
|
break;
|
||||||
|
case GCOAP_FILESERVER_DELETE_FILE:
|
||||||
|
printf("gcoap fileserver: Delete %s\n", ctx->path);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
msg_init_queue(_main_msg_queue, MAIN_QUEUE_SIZE);
|
msg_init_queue(_main_msg_queue, MAIN_QUEUE_SIZE);
|
||||||
gcoap_register_listener(&_listener);
|
gcoap_register_listener(&_listener);
|
||||||
|
|
||||||
|
if (IS_USED(MODULE_GCOAP_FILESERVER_CALLBACK)) {
|
||||||
|
gcoap_fileserver_set_event_cb(_event_cb, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
char line_buf[SHELL_DEFAULT_BUFSIZE];
|
char line_buf[SHELL_DEFAULT_BUFSIZE];
|
||||||
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
|
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user