Commit 04817df9 authored by Léo-Paul Géneau's avatar Léo-Paul Géneau 👾

keep memory of the last string in the queue

parent 75c4c3e1
...@@ -265,7 +265,7 @@ static JSValue js_drone_init(JSContext *ctx, JSValueConst thisVal, ...@@ -265,7 +265,7 @@ static JSValue js_drone_init(JSContext *ctx, JSValueConst thisVal,
return JS_UNDEFINED; return JS_UNDEFINED;
} }
static JSValue readDroneDataStr(JSContext *ctx, StrQueue *pQueue) static JSValue readDroneDataStr(JSContext *ctx, StrQueue *pQueue, bool keepAtLeastAnElement)
{ {
JSValue res; JSValue res;
struct strNode *current; struct strNode *current;
...@@ -273,8 +273,16 @@ static JSValue readDroneDataStr(JSContext *ctx, StrQueue *pQueue) ...@@ -273,8 +273,16 @@ static JSValue readDroneDataStr(JSContext *ctx, StrQueue *pQueue)
current = pQueue->head; current = pQueue->head;
if (current != NULL) { if (current != NULL) {
res = JS_NewString(ctx, current->str); res = JS_NewString(ctx, current->str);
pQueue->head = current->next == NULL ? (pQueue->tail = NULL) : current->next; if (current->next != NULL) {
pQueue->head = current->next;
delete_str_node(current);
} else {
pQueue->tail = NULL;
if (!keepAtLeastAnElement) {
pQueue->head = NULL;
delete_str_node(current); delete_str_node(current);
}
}
} else { } else {
res = JS_NewString(ctx, ""); res = JS_NewString(ctx, "");
} }
...@@ -304,9 +312,9 @@ static JSValue js_drone_get(JSContext *ctx, JSValueConst thisVal, int magic) ...@@ -304,9 +312,9 @@ static JSValue js_drone_get(JSContext *ctx, JSValueConst thisVal, int magic)
case 7: case 7:
return JS_NewFloat64(ctx, s->climbRate); return JS_NewFloat64(ctx, s->climbRate);
case 8: case 8:
return readDroneDataStr(ctx, &(s->receiveMessageQueue)); return readDroneDataStr(ctx, &(s->receiveMessageQueue), true);
case 9: case 9:
return readDroneDataStr(ctx, &(s->receiveLogQueue)); return readDroneDataStr(ctx, &(s->receiveLogQueue), false);
case 10: case 10:
return JS_NewInt64(ctx, s->timestamp); return JS_NewInt64(ctx, s->timestamp);
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment