pikapython/src/dataQueue.c

88 lines
2.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"
2021-12-07 15:45:38 +08:00
#include "PikaPlatform.h"
2022-01-04 20:18:23 +08:00
#include "dataArgs.h"
2021-10-13 10:23:20 +08:00
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);
2022-01-04 20:31:30 +08:00
args_setInt(args, "_", 0);
2021-10-13 10:23:20 +08:00
Queue* queue = args;
return queue;
}
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;
2022-01-04 20:31:30 +08:00
int offset = args_getInt(args, "_");
2021-10-13 10:23:20 +08:00
/* add top */
2022-01-04 20:31:30 +08:00
args_setInt(args, "_", offset + 1);
2022-01-04 20:18:23 +08:00
return args_pushArg(args, arg);
2021-10-13 10:23:20 +08:00
}
2022-01-04 19:21:57 +08:00
Arg* queue_popArg(Queue* queue) {
2021-10-13 10:23:20 +08:00
Args* args = queue;
2022-01-04 20:31:30 +08:00
int offset = args_getInt(args, "_");
2022-01-04 20:18:23 +08:00
if (offset - 1 < 0) {
return NULL;
}
2021-10-13 10:23:20 +08:00
/* add bottom */
2022-01-04 20:31:30 +08:00
args_setInt(args, "_", offset - 1);
2022-01-04 20:18:23 +08:00
Arg* res = args_getArg_index(args, offset - 1);
2021-10-13 10:40:47 +08:00
return res;
2021-10-13 10:23:20 +08:00
}
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) {
return arg_getInt(queue_popArg(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) {
return arg_getFloat(queue_popArg(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) {
return arg_getStr(queue_popArg(queue));
2022-01-07 09:58:07 +08:00
}