mirror of
https://github.com/avinal/xeus-basic.git
synced 2026-01-09 22:58:36 +05:30
Reformat and add copyright headers
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com> Co-authored-by: Sarita Singh <saritasingh.0425@gmail.com>
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
#[=============================================================================[
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# SPDX-FileCopyrightText: 2021 Sarita Singh <saritasingh.0425@gmail.com>
|
||||
# SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
#]=============================================================================]
|
||||
|
||||
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
|
||||
|
||||
# ---- Project ----
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
* SPDX-FileCopyrightText: 2021 Sarita Singh <saritasingh.0425@gmail.com>
|
||||
* SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
*
|
||||
* @file xbasic_interpreter.hpp
|
||||
* @brief Jupyter Kernel Interpreter header file
|
||||
*/
|
||||
|
||||
#ifndef XBASIC_INTERPRETER_HPP_
|
||||
#define XBASIC_INTERPRETER_HPP_
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#[=======================================================================[
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
#]=======================================================================]
|
||||
#[=============================================================================[
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
#]=============================================================================]
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(basic LANGUAGES C)
|
||||
@@ -11,8 +11,8 @@ add_library(basic "")
|
||||
target_sources(basic PRIVATE ${BASIC_SRC})
|
||||
target_include_directories(basic PRIVATE include/basic)
|
||||
|
||||
#add_executable(basic_exec main.cc)
|
||||
#target_include_directories(basic_exec PRIVATE include/basic)
|
||||
#target_link_libraries(basic_exec PRIVATE basic)
|
||||
add_executable(basic_exec main.cc)
|
||||
target_include_directories(basic_exec PRIVATE include/basic)
|
||||
target_link_libraries(basic_exec PRIVATE basic)
|
||||
|
||||
|
||||
|
||||
@@ -6,49 +6,13 @@
|
||||
* @brief Driver Code
|
||||
*/
|
||||
|
||||
// #include <math.h>
|
||||
// #include <readline/history.h>
|
||||
// #include <readline/readline.h>
|
||||
// #include <signal.h>
|
||||
// #include <stdbool.h>
|
||||
// #include <stdio.h>
|
||||
// #include <string.h>
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
#include "basic.hpp"
|
||||
#include "basic/basic.hpp"
|
||||
|
||||
// extern bool __RUNNING;
|
||||
// extern bool __STOPPED;
|
||||
|
||||
// static void sigint_handler(int signum) {
|
||||
// signal(SIGINT, sigint_handler);
|
||||
// if (__RUNNING) {
|
||||
// __RUNNING = false;
|
||||
// __STOPPED = true;
|
||||
// printf("STOP\n");
|
||||
// fflush(stdout);
|
||||
// }
|
||||
// }
|
||||
|
||||
// static char *readline_gets() {
|
||||
// char *line_read = readline("");
|
||||
|
||||
// if (line_read && *line_read) {
|
||||
// add_history(line_read);
|
||||
// }
|
||||
|
||||
// return line_read;
|
||||
// }
|
||||
std::string outputs;
|
||||
// int out(int ch) {
|
||||
// outputs += char(ch);
|
||||
// return 1;
|
||||
// }
|
||||
|
||||
// int in(void) { return getchar(); }
|
||||
|
||||
void replcc() {
|
||||
std::cout << " _ _ \n"
|
||||
@@ -57,56 +21,22 @@ void replcc() {
|
||||
<< "| |_) | (_| \\__ \\ | (__ \n"
|
||||
<< "|_.__/ \\__,_|___/_|\\___|\n"
|
||||
<< "(c) 2015-2016 Johan Van den Brande\n";
|
||||
// using_history();
|
||||
std::string input;
|
||||
basic check;
|
||||
while (getline(std::cin, input)) {
|
||||
if (!input.compare("QUIT")) {
|
||||
// check.~basic();
|
||||
break;
|
||||
}
|
||||
if (!check.evaluate_line(input)) {
|
||||
std::cerr << check.get_error() << "\n";
|
||||
}
|
||||
// basic_eval((char *)input.c_str());
|
||||
if (input == "RUN") {
|
||||
std::cout << check.run();
|
||||
}
|
||||
// if (evaluate_last_error()) {
|
||||
// std::cerr << "ERROR: " << evaluate_last_error() << "\n";
|
||||
// clear_last_error();
|
||||
// }
|
||||
}
|
||||
// clear_history();
|
||||
}
|
||||
|
||||
void runcc(std::string filename) {
|
||||
// std::fstream file(filename, std::ios::in);
|
||||
|
||||
// if (!file.is_open()) {
|
||||
// std::cerr << "Can't open " << filename << std::endl;
|
||||
// exit(EXIT_FAILURE);
|
||||
// }
|
||||
// std::string line;
|
||||
// while (getline(file, line)) {
|
||||
// basic_eval((char *)line.c_str());
|
||||
// }
|
||||
// file.close();
|
||||
// basic_run();
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
// signal(SIGINT, sigint_handler);
|
||||
// basic_init(1024 * 8, 2048);
|
||||
// basic_register_io(out, in);
|
||||
|
||||
if (argc > 1) {
|
||||
runcc(argv[1]);
|
||||
} else {
|
||||
replcc();
|
||||
}
|
||||
|
||||
// basic_destroy();
|
||||
|
||||
replcc();
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
* SPDX-FileCopyrightText: 2021 Sarita Singh <saritasingh.0425@gmail.com>
|
||||
* SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
*
|
||||
* @file main.cc
|
||||
* @brief Jupyter Kernel main program
|
||||
*/
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "xbasic/xbasic_interpreter.hpp"
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
/**
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
* SPDX-FileCopyrightText: 2021 Sarita Singh <saritasingh.0425@gmail.com>
|
||||
* SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
||||
*
|
||||
* @file xbasic_interpreter.cpp
|
||||
* @brief Jupyter Kernel Interpreter Implementation
|
||||
*/
|
||||
|
||||
#include "xbasic/xbasic_interpreter.hpp"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user