mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
628 lines
26 KiB
C
628 lines
26 KiB
C
/* ----------------------------------------------------------------------------
|
|
Copyright (c) 2021, Daan Leijen
|
|
This is free software; you can redistribute it and/or modify it
|
|
under the terms of the MIT License. A copy of the license can be
|
|
found in the "LICENSE" file at the root of this distribution.
|
|
-----------------------------------------------------------------------------*/
|
|
#pragma once
|
|
#ifndef IC_ISOCLINE_H
|
|
#define IC_ISOCLINE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h> // size_t
|
|
#include <stdbool.h> // bool
|
|
#include <stdint.h> // uint32_t
|
|
#include <stdarg.h> // term_vprintf
|
|
|
|
|
|
/*! \mainpage
|
|
Isocline C API reference.
|
|
|
|
Isocline is a pure C library that can be used as an alternative to the GNU readline library.
|
|
|
|
See the [Github repository](https://github.com/daanx/isocline#readme)
|
|
for general information and building the library.
|
|
|
|
Contents:
|
|
- \ref readline
|
|
- \ref bbcode
|
|
- \ref history
|
|
- \ref completion
|
|
- \ref highlight
|
|
- \ref options
|
|
- \ref helper
|
|
- \ref completex
|
|
- \ref term
|
|
- \ref async
|
|
- \ref alloc
|
|
*/
|
|
|
|
/// \defgroup readline Readline
|
|
/// The basic readline interface.
|
|
/// \{
|
|
|
|
/// Isocline version: 102 = 1.0.2.
|
|
#define IC_VERSION (104)
|
|
|
|
|
|
/// Read input from the user using rich editing abilities.
|
|
/// @param prompt_text The prompt text, can be NULL for the default ("").
|
|
/// The displayed prompt becomes `prompt_text` followed by the `prompt_marker` ("> ").
|
|
/// @returns the heap allocated input on succes, which should be `free`d by the caller.
|
|
/// Returns NULL on error, or if the user typed ctrl+d or ctrl+c.
|
|
///
|
|
/// If the standard input (`stdin`) has no editing capability
|
|
/// (like a dumb terminal (e.g. `TERM`=`dumb`), running in a debuggen, a pipe or redirected file, etc.)
|
|
/// the input is read directly from the input stream up to the
|
|
/// next line without editing capability.
|
|
/// See also \a ic_set_prompt_marker(), \a ic_style_def()
|
|
///
|
|
/// @see ic_set_prompt_marker(), ic_style_def()
|
|
char* ic_readline(const char* prompt_text);
|
|
|
|
/// \}
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup bbcode Formatted Text
|
|
/// Formatted text using [bbcode markup](https://github.com/daanx/isocline#bbcode-format).
|
|
/// \{
|
|
|
|
/// Print to the terminal while respection bbcode markup.
|
|
/// Any unclosed tags are closed automatically at the end of the print.
|
|
/// For example:
|
|
/// ```
|
|
/// ic_print("[b]bold, [i]bold and italic[/i], [red]red and bold[/][/b] default.");
|
|
/// ic_print("[b]bold[/], [i b]bold and italic[/], [yellow on blue]yellow on blue background");
|
|
/// ic_style_add("em","i color=#888800");
|
|
/// ic_print("[em]emphasis");
|
|
/// ```
|
|
/// Properties that can be assigned are:
|
|
/// * `color=` _clr_, `bgcolor=` _clr_: where _clr_ is either a hex value `#`RRGGBB or `#`RGB, a
|
|
/// standard HTML color name, or an ANSI palette name, like `ansi-maroon`, `ansi-default`, etc.
|
|
/// * `bold`,`italic`,`reverse`,`underline`: can be `on` or `off`.
|
|
/// * everything else is a style; all HTML and ANSI color names are also a style (so we can just use `red`
|
|
/// instead of `color=red`, or `on red` instead of `bgcolor=red`), and there are
|
|
/// the `b`, `i`, `u`, and `r` styles for bold, italic, underline, and reverse.
|
|
///
|
|
/// See [here](https://github.com/daanx/isocline#bbcode-format) for a description of the full bbcode format.
|
|
void ic_print( const char* s );
|
|
|
|
/// Print with bbcode markup ending with a newline.
|
|
/// @see ic_print()
|
|
void ic_println( const char* s );
|
|
|
|
/// Print formatted with bbcode markup.
|
|
/// @see ic_print()
|
|
void ic_printf(const char* fmt, ...);
|
|
|
|
/// Print formatted with bbcode markup.
|
|
/// @see ic_print
|
|
void ic_vprintf(const char* fmt, va_list args);
|
|
|
|
/// Define or redefine a style.
|
|
/// @param style_name The name of the style.
|
|
/// @param fmt The `fmt` string is the content of a tag and can contain
|
|
/// other styles. This is very useful to theme the output of a program
|
|
/// by assigning standard styles like `em` or `warning` etc.
|
|
void ic_style_def( const char* style_name, const char* fmt );
|
|
|
|
/// Start a global style that is only reset when calling a matching ic_style_close().
|
|
void ic_style_open( const char* fmt );
|
|
|
|
/// End a global style.
|
|
void ic_style_close(void);
|
|
|
|
/// \}
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
// History
|
|
//--------------------------------------------------------------
|
|
/// \defgroup history History
|
|
/// Readline input history.
|
|
/// \{
|
|
|
|
/// Enable history.
|
|
/// Use a \a NULL filename to not persist the history. Use -1 for max_entries to get the default (200).
|
|
void ic_set_history(const char* fname, long max_entries );
|
|
|
|
/// Remove the last entry in the history.
|
|
/// The last returned input from ic_readline() is automatically added to the history; this function removes it.
|
|
void ic_history_remove_last(void);
|
|
|
|
/// Clear the history.
|
|
void ic_history_clear(void);
|
|
|
|
/// Add an entry to the history
|
|
void ic_history_add( const char* entry );
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
// Basic Completion
|
|
//--------------------------------------------------------------
|
|
|
|
/// \defgroup completion Completion
|
|
/// Basic word completion.
|
|
/// \{
|
|
|
|
/// A completion environment
|
|
struct ic_completion_env_s;
|
|
|
|
/// A completion environment
|
|
typedef struct ic_completion_env_s ic_completion_env_t;
|
|
|
|
/// A completion callback that is called by isocline when tab is pressed.
|
|
/// It is passed a completion environment (containing the current input and the current cursor position),
|
|
/// the current input up-to the cursor (`prefix`)
|
|
/// and the user given argument when the callback was set.
|
|
/// When using completion transformers, like `ic_complete_quoted_word` the `prefix` contains the
|
|
/// the word to be completed without escape characters or quotes.
|
|
typedef void (ic_completer_fun_t)(ic_completion_env_t* cenv, const char* prefix );
|
|
|
|
/// Set the default completion handler.
|
|
/// @param completer The completion function
|
|
/// @param arg Argument passed to the \a completer.
|
|
/// There can only be one default completion function, setting it again disables the previous one.
|
|
/// The initial completer use `ic_complete_filename`.
|
|
void ic_set_default_completer( ic_completer_fun_t* completer, void* arg);
|
|
|
|
|
|
/// In a completion callback (usually from ic_complete_word()), use this function to add a completion.
|
|
/// (the completion string is copied by isocline and do not need to be preserved or allocated).
|
|
///
|
|
/// Returns `true` if the callback should continue trying to find more possible completions.
|
|
/// If `false` is returned, the callback should try to return and not add more completions (for improved latency).
|
|
bool ic_add_completion(ic_completion_env_t* cenv, const char* completion);
|
|
|
|
/// In a completion callback (usually from ic_complete_word()), use this function to add a completion.
|
|
/// The `display` is used to display the completion in the completion menu, and `help` is
|
|
/// displayed for hints for example. Both can be `NULL` for the default.
|
|
/// (all are copied by isocline and do not need to be preserved or allocated).
|
|
///
|
|
/// Returns `true` if the callback should continue trying to find more possible completions.
|
|
/// If `false` is returned, the callback should try to return and not add more completions (for improved latency).
|
|
bool ic_add_completion_ex( ic_completion_env_t* cenv, const char* completion, const char* display, const char* help );
|
|
|
|
/// In a completion callback (usually from ic_complete_word()), use this function to add completions.
|
|
/// The `completions` array should be terminated with a NULL element, and all elements
|
|
/// are added as completions if they start with `prefix`.
|
|
///
|
|
/// Returns `true` if the callback should continue trying to find more possible completions.
|
|
/// If `false` is returned, the callback should try to return and not add more completions (for improved latency).
|
|
bool ic_add_completions(ic_completion_env_t* cenv, const char* prefix, const char** completions);
|
|
|
|
/// Complete a filename.
|
|
/// Complete a filename given a semi-colon separated list of root directories `roots` and
|
|
/// semi-colon separated list of possible extensions (excluding directories).
|
|
/// If `roots` is NULL, the current directory is the root (".").
|
|
/// If `extensions` is NULL, any extension will match.
|
|
/// Each root directory should _not_ end with a directory separator.
|
|
/// If a directory is completed, the `dir_separator` is added at the end if it is not `0`.
|
|
/// Usually the `dir_separator` is `/` but it can be set to `\\` on Windows systems.
|
|
/// For example:
|
|
/// ```
|
|
/// /ho --> /home/
|
|
/// /home/.ba --> /home/.bashrc
|
|
/// ```
|
|
/// (This already uses ic_complete_quoted_word() so do not call it from inside a word handler).
|
|
void ic_complete_filename( ic_completion_env_t* cenv, const char* prefix, char dir_separator, const char* roots, const char* extensions );
|
|
|
|
|
|
|
|
/// Function that returns whether a (utf8) character (of length `len`) is in a certain character class
|
|
/// @see ic_char_is_separator() etc.
|
|
typedef bool (ic_is_char_class_fun_t)(const char* s, long len);
|
|
|
|
|
|
/// Complete a _word_ (i.e. _token_).
|
|
/// Calls the user provided function `fun` to complete on the
|
|
/// current _word_. Almost all user provided completers should use this function.
|
|
/// If `is_word_char` is NULL, the default `&ic_char_is_nonseparator` is used.
|
|
/// The `prefix` passed to `fun` is modified to only contain the current word, and
|
|
/// any results from `ic_add_completion` are automatically adjusted to replace that part.
|
|
/// For example, on the input "hello w", a the user `fun` only gets `w` and can just complete
|
|
/// with "world" resulting in "hello world" without needing to consider `delete_before` etc.
|
|
/// @see ic_complete_qword() for completing quoted and escaped tokens.
|
|
void ic_complete_word(ic_completion_env_t* cenv, const char* prefix, ic_completer_fun_t* fun, ic_is_char_class_fun_t* is_word_char);
|
|
|
|
|
|
/// Complete a quoted _word_.
|
|
/// Calls the user provided function `fun` to complete while taking
|
|
/// care of quotes and escape characters. Almost all user provided completers should use
|
|
/// this function. The `prefix` passed to `fun` is modified to be unquoted and unescaped, and
|
|
/// any results from `ic_add_completion` are automatically quoted and escaped again.
|
|
/// For example, completing `hello world`, the `fun` always just completes `hel` or `hello w` to `hello world`,
|
|
/// but depending on user input, it will complete as:
|
|
/// ```
|
|
/// hel --> hello\ world
|
|
/// hello\ w --> hello\ world
|
|
/// hello w --> # no completion, the word is just 'w'>
|
|
/// "hel --> "hello world"
|
|
/// "hello w --> "hello world"
|
|
/// ```
|
|
/// with proper quotes and escapes.
|
|
/// If `is_word_char` is NULL, the default `&ic_char_is_nonseparator` is used.
|
|
/// @see ic_complete_quoted_word() to customize the word boundary, quotes etc.
|
|
void ic_complete_qword( ic_completion_env_t* cenv, const char* prefix, ic_completer_fun_t* fun, ic_is_char_class_fun_t* is_word_char );
|
|
|
|
|
|
|
|
/// Complete a _word_.
|
|
/// Calls the user provided function `fun` to complete while taking
|
|
/// care of quotes and escape characters. Almost all user provided completers should use this function.
|
|
/// The `is_word_char` is a set of characters that are part of a "word". Use NULL for the default (`&ic_char_is_nonseparator`).
|
|
/// The `escape_char` is the escaping character, usually `\` but use 0 to not have escape characters.
|
|
/// The `quote_chars` define the quotes, use NULL for the default `"\'\""` quotes.
|
|
/// @see ic_complete_word() which uses the default values for `non_word_chars`, `quote_chars` and `\` for escape characters.
|
|
void ic_complete_qword_ex( ic_completion_env_t* cenv, const char* prefix, ic_completer_fun_t* fun,
|
|
ic_is_char_class_fun_t* is_word_char, char escape_char, const char* quote_chars );
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup highlight Syntax Highlighting
|
|
/// Basic syntax highlighting.
|
|
/// \{
|
|
|
|
/// A syntax highlight environment
|
|
struct ic_highlight_env_s;
|
|
typedef struct ic_highlight_env_s ic_highlight_env_t;
|
|
|
|
/// A syntax highlighter callback that is called by readline to syntax highlight user input.
|
|
typedef void (ic_highlight_fun_t)(ic_highlight_env_t* henv, const char* input, void* arg);
|
|
|
|
/// Set a syntax highlighter.
|
|
/// There can only be one highlight function, setting it again disables the previous one.
|
|
void ic_set_default_highlighter(ic_highlight_fun_t* highlighter, void* arg);
|
|
|
|
/// Set the style of characters starting at position `pos`.
|
|
void ic_highlight(ic_highlight_env_t* henv, long pos, long count, const char* style );
|
|
|
|
/// Experimental: Convenience callback for a function that highlights `s` using bbcode's.
|
|
/// The returned string should be allocated and is free'd by the caller.
|
|
typedef char* (ic_highlight_format_fun_t)(const char* s, void* arg);
|
|
|
|
/// Experimental: Convenience function for highlighting with bbcodes.
|
|
/// Can be called in a `ic_highlight_fun_t` callback to colorize the `input` using the
|
|
/// the provided `formatted` input that is the styled `input` with bbcodes. The
|
|
/// content of `formatted` without bbcode tags should match `input` exactly.
|
|
void ic_highlight_formatted(ic_highlight_env_t* henv, const char* input, const char* formatted);
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
// Readline with a specific completer and highlighter
|
|
//--------------------------------------------------------------
|
|
|
|
/// \defgroup readline
|
|
/// \{
|
|
|
|
/// Read input from the user using rich editing abilities,
|
|
/// using a particular completion function and highlighter for this call only.
|
|
/// both can be NULL in which case the defaults are used.
|
|
/// @see ic_readline(), ic_set_prompt_marker(), ic_set_default_completer(), ic_set_default_highlighter().
|
|
char* ic_readline_ex(const char* prompt_text, ic_completer_fun_t* completer, void* completer_arg,
|
|
ic_highlight_fun_t* highlighter, void* highlighter_arg);
|
|
|
|
/// \}
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
// Options
|
|
//--------------------------------------------------------------
|
|
|
|
/// \defgroup options Options
|
|
/// \{
|
|
|
|
/// Set a prompt marker and a potential marker for extra lines with multiline input.
|
|
/// Pass \a NULL for the `prompt_marker` for the default marker (`"> "`).
|
|
/// Pass \a NULL for continuation prompt marker to make it equal to the `prompt_marker`.
|
|
void ic_set_prompt_marker( const char* prompt_marker, const char* continuation_prompt_marker );
|
|
|
|
/// Get the current prompt marker.
|
|
const char* ic_get_prompt_marker(void);
|
|
|
|
/// Get the current continuation prompt marker.
|
|
const char* ic_get_continuation_prompt_marker(void);
|
|
|
|
/// Disable or enable multi-line input (enabled by default).
|
|
/// Returns the previous setting.
|
|
bool ic_enable_multiline( bool enable );
|
|
|
|
/// Disable or enable sound (enabled by default).
|
|
/// A beep is used when tab cannot find any completion for example.
|
|
/// Returns the previous setting.
|
|
bool ic_enable_beep( bool enable );
|
|
|
|
/// Disable or enable color output (enabled by default).
|
|
/// Returns the previous setting.
|
|
bool ic_enable_color( bool enable );
|
|
|
|
/// Disable or enable duplicate entries in the history (disabled by default).
|
|
/// Returns the previous setting.
|
|
bool ic_enable_history_duplicates( bool enable );
|
|
|
|
/// Disable or enable automatic tab completion after a completion
|
|
/// to expand as far as possible if the completions are unique. (disabled by default).
|
|
/// Returns the previous setting.
|
|
bool ic_enable_auto_tab( bool enable );
|
|
|
|
/// Disable or enable preview of a completion selection (enabled by default)
|
|
/// Returns the previous setting.
|
|
bool ic_enable_completion_preview( bool enable );
|
|
|
|
/// Disable or enable automatic identation of continuation lines in multiline
|
|
/// input so it aligns with the initial prompt.
|
|
/// Returns the previous setting.
|
|
bool ic_enable_multiline_indent(bool enable);
|
|
|
|
/// Disable or enable display of short help messages for history search etc.
|
|
/// (full help is always dispayed when pressing F1 regardless of this setting)
|
|
/// @returns the previous setting.
|
|
bool ic_enable_inline_help(bool enable);
|
|
|
|
/// Disable or enable hinting (enabled by default)
|
|
/// Shows a hint inline when there is a single possible completion.
|
|
/// @returns the previous setting.
|
|
bool ic_enable_hint(bool enable);
|
|
|
|
/// Set millisecond delay before a hint is displayed. Can be zero. (500ms by default).
|
|
long ic_set_hint_delay(long delay_ms);
|
|
|
|
/// Disable or enable syntax highlighting (enabled by default).
|
|
/// This applies regardless whether a syntax highlighter callback was set (`ic_set_highlighter`)
|
|
/// Returns the previous setting.
|
|
bool ic_enable_highlight(bool enable);
|
|
|
|
|
|
/// Set millisecond delay for reading escape sequences in order to distinguish
|
|
/// a lone ESC from the start of a escape sequence. The defaults are 100ms and 10ms,
|
|
/// but it may be increased if working with very slow terminals.
|
|
void ic_set_tty_esc_delay(long initial_delay_ms, long followup_delay_ms);
|
|
|
|
/// Enable highlighting of matching braces (and error highlight unmatched braces).`
|
|
bool ic_enable_brace_matching(bool enable);
|
|
|
|
/// Set matching brace pairs.
|
|
/// Pass \a NULL for the default `"()[]{}"`.
|
|
void ic_set_matching_braces(const char* brace_pairs);
|
|
|
|
/// Enable automatic brace insertion (enabled by default).
|
|
bool ic_enable_brace_insertion(bool enable);
|
|
|
|
/// Set matching brace pairs for automatic insertion.
|
|
/// Pass \a NULL for the default `()[]{}\"\"''`
|
|
void ic_set_insertion_braces(const char* brace_pairs);
|
|
|
|
/// \}
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
// Advanced Completion
|
|
//--------------------------------------------------------------
|
|
|
|
/// \defgroup completex Advanced Completion
|
|
/// \{
|
|
|
|
/// Get the raw current input (and cursor position if `cursor` != NULL) for the completion.
|
|
/// Usually completer functions should look at their `prefix` though as transformers
|
|
/// like `ic_complete_word` may modify the prefix (for example, unescape it).
|
|
const char* ic_completion_input( ic_completion_env_t* cenv, long* cursor );
|
|
|
|
/// Get the completion argument passed to `ic_set_completer`.
|
|
void* ic_completion_arg( const ic_completion_env_t* cenv );
|
|
|
|
/// Do we have already some completions?
|
|
bool ic_has_completions( const ic_completion_env_t* cenv );
|
|
|
|
/// Do we already have enough completions and should we return if possible? (for improved latency)
|
|
bool ic_stop_completing( const ic_completion_env_t* cenv);
|
|
|
|
|
|
/// Primitive completion, cannot be used with most transformers (like `ic_complete_word` and `ic_complete_qword`).
|
|
/// When completed, `delete_before` _bytes_ are deleted before the cursor position,
|
|
/// `delete_after` _bytes_ are deleted after the cursor, and finally `completion` is inserted.
|
|
/// The `display` is used to display the completion in the completion menu, and `help` is displayed
|
|
/// with hinting. Both `display` and `help` can be NULL.
|
|
/// (all are copied by isocline and do not need to be preserved or allocated).
|
|
///
|
|
/// Returns `true` if the callback should continue trying to find more possible completions.
|
|
/// If `false` is returned, the callback should try to return and not add more completions (for improved latency).
|
|
bool ic_add_completion_prim( ic_completion_env_t* cenv, const char* completion,
|
|
const char* display, const char* help,
|
|
long delete_before, long delete_after);
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup helper Character Classes.
|
|
/// Convenience functions for character classes, highlighting and completion.
|
|
/// \{
|
|
|
|
/// Convenience: return the position of a previous code point in a UTF-8 string `s` from postion `pos`.
|
|
/// Returns `-1` if `pos <= 0` or `pos > strlen(s)` (or other errors).
|
|
long ic_prev_char( const char* s, long pos );
|
|
|
|
/// Convenience: return the position of the next code point in a UTF-8 string `s` from postion `pos`.
|
|
/// Returns `-1` if `pos < 0` or `pos >= strlen(s)` (or other errors).
|
|
long ic_next_char( const char* s, long pos );
|
|
|
|
/// Convenience: does a string `s` starts with a given `prefix` ?
|
|
bool ic_starts_with( const char* s, const char* prefix );
|
|
|
|
/// Convenience: does a string `s` starts with a given `prefix` ignoring (ascii) case?
|
|
bool ic_istarts_with( const char* s, const char* prefix );
|
|
|
|
|
|
/// Convenience: character class for whitespace `[ \t\r\n]`.
|
|
bool ic_char_is_white(const char* s, long len);
|
|
|
|
/// Convenience: character class for non-whitespace `[^ \t\r\n]`.
|
|
bool ic_char_is_nonwhite(const char* s, long len);
|
|
|
|
/// Convenience: character class for separators.
|
|
/// (``[ \t\r\n,.;:/\\(){}\[\]]``.)
|
|
/// This is used for word boundaries in isocline.
|
|
bool ic_char_is_separator(const char* s, long len);
|
|
|
|
/// Convenience: character class for non-separators.
|
|
bool ic_char_is_nonseparator(const char* s, long len);
|
|
|
|
/// Convenience: character class for letters (`[A-Za-z]` and any unicode > 0x80).
|
|
bool ic_char_is_letter(const char* s, long len);
|
|
|
|
/// Convenience: character class for digits (`[0-9]`).
|
|
bool ic_char_is_digit(const char* s, long len);
|
|
|
|
/// Convenience: character class for hexadecimal digits (`[A-Fa-f0-9]`).
|
|
bool ic_char_is_hexdigit(const char* s, long len);
|
|
|
|
/// Convenience: character class for identifier letters (`[A-Za-z0-9_-]` and any unicode > 0x80).
|
|
bool ic_char_is_idletter(const char* s, long len);
|
|
|
|
/// Convenience: character class for filename letters (_not in_ " \t\r\n`@$><=;|&\{\}\(\)\[\]]").
|
|
bool ic_char_is_filename_letter(const char* s, long len);
|
|
|
|
|
|
/// Convenience: If this is a token start, return the length. Otherwise return 0.
|
|
long ic_is_token(const char* s, long pos, ic_is_char_class_fun_t* is_token_char);
|
|
|
|
/// Convenience: Does this match the specified token?
|
|
/// Ensures not to match prefixes or suffixes, and returns the length of the match (in bytes).
|
|
/// E.g. `ic_match_token("function",0,&ic_char_is_letter,"fun")` returns 0.
|
|
/// while `ic_match_token("fun x",0,&ic_char_is_letter,"fun"})` returns 3.
|
|
long ic_match_token(const char* s, long pos, ic_is_char_class_fun_t* is_token_char, const char* token);
|
|
|
|
|
|
/// Convenience: Do any of the specified tokens match?
|
|
/// Ensures not to match prefixes or suffixes, and returns the length of the match (in bytes).
|
|
/// E.g. `ic_match_any_token("function",0,&ic_char_is_letter,{"fun","func",NULL})` returns 0.
|
|
/// while `ic_match_any_token("func x",0,&ic_char_is_letter,{"fun","func",NULL})` returns 4.
|
|
long ic_match_any_token(const char* s, long pos, ic_is_char_class_fun_t* is_token_char, const char** tokens);
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup term Terminal
|
|
///
|
|
/// Experimental: Low level terminal output.
|
|
/// Ensures basic ANSI SGR escape sequences are processed
|
|
/// in a portable way (e.g. on Windows)
|
|
/// \{
|
|
|
|
/// Initialize for terminal output.
|
|
/// Call this before using the terminal write functions (`ic_term_write`)
|
|
/// Does nothing on most platforms but on Windows it sets the console to UTF8 output and possible
|
|
/// enables virtual terminal processing.
|
|
void ic_term_init(void);
|
|
|
|
/// Call this when done with the terminal functions.
|
|
void ic_term_done(void);
|
|
|
|
/// Flush the terminal output.
|
|
/// (happens automatically on newline characters ('\n') as well).
|
|
void ic_term_flush(void);
|
|
|
|
/// Write a string to the console (and process CSI escape sequences).
|
|
void ic_term_write(const char* s);
|
|
|
|
/// Write a string to the console and end with a newline
|
|
/// (and process CSI escape sequences).
|
|
void ic_term_writeln(const char* s);
|
|
|
|
/// Write a formatted string to the console.
|
|
/// (and process CSI escape sequences)
|
|
void ic_term_writef(const char* fmt, ...);
|
|
|
|
/// Write a formatted string to the console.
|
|
void ic_term_vwritef(const char* fmt, va_list args);
|
|
|
|
/// Set text attributes from a style.
|
|
void ic_term_style( const char* style );
|
|
|
|
/// Set text attribute to bold.
|
|
void ic_term_bold(bool enable);
|
|
|
|
/// Set text attribute to underline.
|
|
void ic_term_underline(bool enable);
|
|
|
|
/// Set text attribute to italic.
|
|
void ic_term_italic(bool enable);
|
|
|
|
/// Set text attribute to reverse video.
|
|
void ic_term_reverse(bool enable);
|
|
|
|
/// Set text attribute to ansi color palette index between 0 and 255 (or 256 for the ANSI "default" color).
|
|
/// (auto matched to smaller palette if not supported)
|
|
void ic_term_color_ansi(bool foreground, int color);
|
|
|
|
/// Set text attribute to 24-bit RGB color (between `0x000000` and `0xFFFFFF`).
|
|
/// (auto matched to smaller palette if not supported)
|
|
void ic_term_color_rgb(bool foreground, uint32_t color );
|
|
|
|
/// Reset the text attributes.
|
|
void ic_term_reset( void );
|
|
|
|
/// Get the palette used by the terminal:
|
|
/// This is usually initialized from the COLORTERM environment variable. The
|
|
/// possible values of COLORTERM for each palette are given in parenthesis.
|
|
///
|
|
/// - 1: monochrome (`monochrome`)
|
|
/// - 3: old ANSI terminal with 8 colors, using bold for bright (`8color`/`3bit`)
|
|
/// - 4: regular ANSI terminal with 16 colors. (`16color`/`4bit`)
|
|
/// - 8: terminal with ANSI 256 color palette. (`256color`/`8bit`)
|
|
/// - 24: true-color terminal with full RGB colors. (`truecolor`/`24bit`/`direct`)
|
|
int ic_term_get_color_bits( void );
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup async ASync
|
|
/// Async support
|
|
/// \{
|
|
|
|
/// Thread-safe way to asynchronously unblock a readline.
|
|
/// Behaves as if the user pressed the `ctrl-C` character
|
|
/// (resulting in returning NULL from `ic_readline`).
|
|
/// Returns `true` if the event was successfully delivered.
|
|
/// (This may not be supported on all platforms, but it is
|
|
/// functional on Linux, macOS and Windows).
|
|
bool ic_async_stop(void);
|
|
|
|
/// \}
|
|
|
|
//--------------------------------------------------------------
|
|
/// \defgroup alloc Custom Allocation
|
|
/// Register allocation functions for custom allocators
|
|
/// \{
|
|
|
|
typedef void* (ic_malloc_fun_t)( size_t size );
|
|
typedef void* (ic_realloc_fun_t)( void* p, size_t newsize );
|
|
typedef void (ic_free_fun_t)( void* p );
|
|
|
|
/// Initialize with custom allocation functions.
|
|
/// This must be called as the first function in a program!
|
|
void ic_init_custom_alloc( ic_malloc_fun_t* _malloc, ic_realloc_fun_t* _realloc, ic_free_fun_t* _free );
|
|
|
|
/// Free a potentially custom alloc'd pointer (in particular, the result returned from `ic_readline`)
|
|
void ic_free( void* p );
|
|
|
|
/// Allocate using the current memory allocator.
|
|
void* ic_malloc(size_t sz);
|
|
|
|
/// Duplicate a string using the current memory allocator.
|
|
const char* ic_strdup( const char* s );
|
|
|
|
/// \}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /// IC_ISOCLINE_H
|