diff --git a/environment/lin_editor.cpp b/environment/lin_editor.cpp new file mode 100644 index 0000000..a680ccf --- /dev/null +++ b/environment/lin_editor.cpp @@ -0,0 +1,89 @@ +#include +#include +#include +#include + +#include "environment.hpp" + +#ifndef STDOUT_FILENO +#define STDOUT_FILENO 1 +#endif +#ifndef STDIN_FILENO +#define STDIN_FILENO 0 +#endif + +int getWindowSize(int *rows, int *cols) +{ + struct winsize ws; + + // Getting window size thanks to ioctl into the given + // winsize struct. + if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) + { + return -1; + } + else + { + *cols = ws.ws_col; + *rows = ws.ws_row; + return 0; + } +} + +static struct termios orig_termios; + +static void disableRawMode() +{ + tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios); +} + +int enableRawMode(void) +{ + // Save original terminal state into orig_termios. + if (tcgetattr(STDIN_FILENO, &orig_termios) == -1) + return 1; + // At exit, restore the original state. + atexit(disableRawMode); + + // Modify the original state to enter in raw mode. + struct termios raw = orig_termios; + // This disables Ctrl-M, Ctrl-S and Ctrl-Q commands. + // (BRKINT, INPCK and ISTRIP are not estrictly mandatory, + // but it is recommended to turn them off in case any + // system needs it). + raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); + // Turning off all output processing (\r\n). + raw.c_oflag &= ~(OPOST); + // Setting character size to 8 bits per byte (it should be + // like that on most systems, but whatever). + raw.c_cflag |= (CS8); + // Using NOT operator on ECHO | ICANON | IEXTEN | ISIG and + // then bitwise-AND them with flags field in order to + // force c_lflag 4th bit to become 0. This disables + // chars being printed (ECHO) and let us turn off + // canonical mode in order to read input byte-by-byte + // instead of line-by-line (ICANON), ISIG disables + // Ctrl-C command and IEXTEN the Ctrl-V one. + raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); + // read() function now returns as soon as there is any + // input to be read. + raw.c_cc[VMIN] = 0; + // Forcing read() function to return every 1/10 of a + // second if there is nothing to read. + raw.c_cc[VTIME] = 1; + + // consoleBufferOpen(); + + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) + return 1; + + return 0; +} +int writeTerm(const char *buf, int length) +{ + return write(STDOUT_FILENO, buf, length); +} +int readTerm(char *buf, int length) +{ + return read(STDIN_FILENO, buf, length); +} \ No newline at end of file diff --git a/environment/win_editor.cpp b/environment/win_editor.cpp new file mode 100644 index 0000000..0b21946 --- /dev/null +++ b/environment/win_editor.cpp @@ -0,0 +1,87 @@ + +#include +#include + +#include "environment.hpp" + +static HANDLE hStdin = NULL; +static HANDLE hStdout = NULL; +static int savedConsoleOutputModeIsValid = 0; +static DWORD savedConsoleOutputMode = 0; +static int savedConsoleInputModeIsValid = 0; +static DWORD savedConsoleInputMode = 0; + +static void disableRawMode(void) +{ + printf("\x1b[0m"); + fflush(stdout); + + if (savedConsoleOutputModeIsValid) + SetConsoleMode(hStdout, savedConsoleOutputMode); + if (savedConsoleInputModeIsValid) + SetConsoleMode(hStdin, savedConsoleInputMode); +} + +int enableRawMode(void) +{ + // Make sure the console state will be returned to its original state + // when this program ends + atexit(disableRawMode); + + // Get handles for stdin and stdout + hStdin = GetStdHandle(STD_INPUT_HANDLE); + if (hStdin == INVALID_HANDLE_VALUE || hStdin == NULL) + return 1; + hStdout = GetStdHandle(STD_OUTPUT_HANDLE); + if (hStdout == INVALID_HANDLE_VALUE || hStdout == NULL) + return 1; + + // Set console to "raw" mode + + if (!GetConsoleMode(hStdout, &savedConsoleOutputMode)) + return 1; + savedConsoleOutputModeIsValid = 1; + DWORD newOutputMode = savedConsoleOutputMode; + newOutputMode |= ENABLE_PROCESSED_OUTPUT; + newOutputMode &= ~ENABLE_WRAP_AT_EOL_OUTPUT; + newOutputMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING; + if (!SetConsoleMode(hStdout, newOutputMode)) + return 1; + if (!GetConsoleMode(hStdin, &savedConsoleInputMode)) + return 1; + savedConsoleInputModeIsValid = 1; + DWORD newInputMode = savedConsoleInputMode; + newInputMode &= ~ENABLE_ECHO_INPUT; + newInputMode &= ~ENABLE_LINE_INPUT; + newInputMode &= ~ENABLE_PROCESSED_INPUT; + newInputMode |= ENABLE_VIRTUAL_TERMINAL_INPUT; + if (!SetConsoleMode(hStdin, newInputMode)) + return 1; + + return 0; +} + +// https://stackoverflow.com/questions/6812224/getting-terminal-size-in-c-for-windows +int getWindowSize(int *rows, int *cols) +{ + CONSOLE_SCREEN_BUFFER_INFO csbi; + + GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi); + *cols = csbi.srWindow.Right - csbi.srWindow.Left + 1; + *rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; + return 0; +} + +int writeTerm(const char *buf, int length) +{ + unsigned long wrote = 0; + WriteConsoleA(hStdout, buf, length, &wrote, NULL); + return (int)wrote; +} + +int readTerm(char *buf, int length) +{ + unsigned long read = 0; + ReadConsoleA(hStdin, buf, length, &read, NULL); + return (int)read; +} \ No newline at end of file diff --git a/include/arg_func.hpp b/include/arg_func.hpp index 2891aa0..03ec946 100644 --- a/include/arg_func.hpp +++ b/include/arg_func.hpp @@ -20,7 +20,8 @@ enum class Arg Username, // update username Name, // update label name File, // select save file - Size // show size of file + Size, // show size of file + Editor // open editor, password as note }; Arg get_args(int argc, char **argv, char **label); @@ -47,4 +48,6 @@ void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *la void arg_size(Buffer &encrypted_buffer); +void arg_editor(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, std::string &key); + #endif \ No newline at end of file diff --git a/include/editor.hpp b/include/editor.hpp new file mode 100644 index 0000000..4e1f559 --- /dev/null +++ b/include/editor.hpp @@ -0,0 +1,6 @@ +#ifndef EDITOR_HPP +#define EDITOR_HPP + +int edit_file(const char *s); + +#endif // EDITOR_HPP \ No newline at end of file diff --git a/include/environment.hpp b/include/environment.hpp index 2acf6cc..f43122f 100644 --- a/include/environment.hpp +++ b/include/environment.hpp @@ -8,4 +8,9 @@ bool put_data_on_clipboard(const char *text); std::string get_user_password(); std::optional get_save_path(); +int getWindowSize(int *rows, int *cols); +int enableRawMode(void); +int writeTerm(const char *buf, int length); +int readTerm(char *buf, int length); + #endif \ No newline at end of file diff --git a/source/arg_func.cpp b/source/arg_func.cpp index 527438e..4ae5a5c 100644 --- a/source/arg_func.cpp +++ b/source/arg_func.cpp @@ -13,6 +13,7 @@ #include "func.hpp" #include "buffer.hpp" #include "aes256.hpp" +#include "editor.hpp" void print_args() { @@ -27,6 +28,7 @@ void print_args() printf(" -s