pikapython/src/dataQueue.c

124 lines
3.6 KiB
C
Raw Normal View History

2021-10-13 10:23:20 +08:00
/*
2021-11-16 08:46:44 +08:00
* This file is part of the PikaScript project.
* http://github.com/pikastech/pikascript
*
* MIT License
*
2021-11-16 08:49:33 +08:00
* Copyright (c) 2021 lyon liang6516@outlook.com
2021-11-16 08:46:44 +08:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2021-10-13 10:23:20 +08:00
#include "dataQueue.h"
#include "PikaPlatform.h"
2022-01-26 08:38:02 +08:00
#include "dataArgs.h"
2021-10-13 10:23:20 +08:00
2022-03-23 14:51:31 +08:00
void queue_init(Queue* queue) {
args_setInt(queue, "__t", 0);
args_setInt(queue, "__b", 0);
}
2021-11-14 19:22:45 +08:00
Queue* New_queue(void) {
2021-10-13 10:23:20 +08:00
Args* args = New_args(NULL);
queue_init(args);
2022-03-23 14:51:31 +08:00
return (Queue*)args;
2021-10-13 10:23:20 +08:00
}
2021-10-16 12:59:00 +08:00
int32_t queue_deinit(Queue* queue) {
2021-10-13 10:23:20 +08:00
Args* args = queue;
args_deinit(args);
2021-10-16 12:59:00 +08:00
return 0;
2021-10-13 10:23:20 +08:00
}
2022-01-04 19:21:57 +08:00
int32_t queue_pushArg(Queue* queue, Arg* arg) {
2021-10-13 10:23:20 +08:00
Args* args = queue;
uint64_t top = args_getInt(args, "__t");
2021-10-13 10:23:20 +08:00
/* add top */
args_setInt(args, "__t", top + 1);
char buff[11];
arg = arg_setName(arg, fast_itoa(buff, top));
return args_setArg(args, arg);
2021-10-13 10:23:20 +08:00
}
Arg* __queue_popArg(Queue* queue, uint8_t is_deinit_arg) {
2021-10-13 10:23:20 +08:00
Args* args = queue;
2022-01-26 08:38:02 +08:00
uint64_t top = args_getInt(args, "__t");
uint64_t bottom = args_getInt(args, "__b");
2022-01-26 08:38:02 +08:00
if (top - bottom < 1) {
return NULL;
}
2021-10-13 10:23:20 +08:00
/* add bottom */
args_setInt(args, "__b", bottom + 1);
char buff[11];
Arg* res = args_getArg(args, fast_itoa(buff, bottom));
if (is_deinit_arg) {
args_removeArg(args, res);
} else {
args_removeArg_notDeinitArg(args, res);
}
2021-10-13 10:40:47 +08:00
return res;
2021-10-13 10:23:20 +08:00
}
2022-05-02 17:56:38 +08:00
Arg* __queue_popArg_noRmoveArg(Queue* queue) {
Args* args = queue;
uint64_t top = args_getInt(args, "__t");
uint64_t bottom = args_getInt(args, "__b");
if (top - bottom < 1) {
return NULL;
}
/* add bottom */
args_setInt(args, "__b", bottom + 1);
char buff[11];
Arg* res = args_getArg(args, fast_itoa(buff, bottom));
/* not deinit arg to keep str buff */
return res;
}
Arg* queue_popArg(Queue* queue) {
return __queue_popArg(queue, 1);
}
Arg* queue_popArg_notDeinitArg(Queue* queue) {
return __queue_popArg(queue, 0);
}
2022-01-04 19:21:57 +08:00
int32_t queue_pushInt(Queue* queue, int val) {
return queue_pushArg(queue, arg_setInt(NULL, "", val));
2021-10-13 10:23:20 +08:00
}
2022-01-04 19:21:57 +08:00
int64_t queue_popInt(Queue* queue) {
2022-05-02 17:56:38 +08:00
return arg_getInt(__queue_popArg_noRmoveArg(queue));
2021-10-13 10:23:20 +08:00
}
2022-01-04 19:21:57 +08:00
int32_t queue_pushFloat(Queue* queue, float val) {
return queue_pushArg(queue, arg_setFloat(NULL, "", val));
2021-10-13 10:23:20 +08:00
}
2022-01-04 19:21:57 +08:00
float queue_popFloat(Queue* queue) {
2022-05-02 17:56:38 +08:00
return arg_getFloat(__queue_popArg_noRmoveArg(queue));
}
2022-01-04 19:21:57 +08:00
int32_t queue_pushStr(Queue* queue, char* str) {
return queue_pushArg(queue, arg_setStr(NULL, "", str));
}
2022-01-04 19:21:57 +08:00
char* queue_popStr(Queue* queue) {
2022-05-02 17:56:38 +08:00
return arg_getStr(__queue_popArg_noRmoveArg(queue));
2022-01-07 09:58:07 +08:00
}