mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
156 lines
4.2 KiB
C
156 lines
4.2 KiB
C
#ifndef ROFI_HELPER_H
|
|
#define ROFI_HELPER_H
|
|
#include "rofi.h"
|
|
/**
|
|
* @param string The input string.
|
|
* @param output Pointer to 2 dimensional array with parsed string.
|
|
* @param length Length of 2 dimensional array.
|
|
* @param ... Key, value parse. Replaces the string Key with value.
|
|
*
|
|
* Parses a string into arguments. While replacing keys with values.
|
|
*
|
|
* @returns TRUE when successful, FALSE when failed.
|
|
*/
|
|
int helper_parse_setup ( char * string, char ***output, int *length, ... );
|
|
|
|
/**
|
|
* Implementation of fgets with custom separator.
|
|
*/
|
|
char* fgets_s ( char* s, int n, FILE *iop, char sep );
|
|
|
|
/**
|
|
* @param token The string for which we want a collation key.
|
|
* @param case_sensitive Whether case is significant.
|
|
*
|
|
* Get a collation key for @p token. @p token must be a null-terminated string.
|
|
* This collation key can be used for matching the user input against the list
|
|
* of commands, windows, or ssh commands.
|
|
*
|
|
* @returns A newly allocated string containing the collation key.
|
|
*/
|
|
char *token_collate_key ( const char *token, int case_sensitive );
|
|
|
|
/**
|
|
* @param input The input string.
|
|
* @param case_sensitive Whether case is significant.
|
|
*
|
|
* Tokenize the string on spaces.
|
|
*
|
|
* @returns a newly allocated 2 dimensional array of strings.
|
|
*/
|
|
char **tokenize ( const char *input, int case_sensitive );
|
|
|
|
/**
|
|
* @param key The key to search for
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
*
|
|
* Parse command line argument 'key' to character.
|
|
* This one supports character escaping.
|
|
*
|
|
* @returns TRUE if key was found and val was set.
|
|
*/
|
|
int find_arg_char ( const char * const key, char *val );
|
|
|
|
/**
|
|
* @param key The key to search for
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
*
|
|
* Parse command line argument 'key' to unsigned int.
|
|
*
|
|
* @returns TRUE if key was found and val was set.
|
|
*/
|
|
int find_arg_uint ( const char * const key, unsigned int *val );
|
|
|
|
/**
|
|
* @param key The key to search for
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
*
|
|
* Parse command line argument 'key' to int.
|
|
*
|
|
* @returns TRUE if key was found and val was set.
|
|
*/
|
|
int find_arg_int ( const char * const key, int *val );
|
|
|
|
|
|
/**
|
|
* @param key The key to search for
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
*
|
|
* Parse command line argument 'key' to string.
|
|
*
|
|
* @returns TRUE if key was found and val was set.
|
|
*/
|
|
int find_arg_str ( const char * const key, char** val );
|
|
|
|
/**
|
|
* @param key The key to search for
|
|
*
|
|
* Check if key is passed as argument.
|
|
*
|
|
* @returns return position of string or -1 if not found.
|
|
*/
|
|
int find_arg ( const char * const key );
|
|
|
|
/**
|
|
* @params tokens
|
|
* @param tokens List of (input) tokens to match.
|
|
* @param input The entry to match against.
|
|
* @param case_sensitive Whether case is significant.
|
|
* @param index The current selected index.
|
|
* @param data User data.
|
|
*
|
|
* Tokenized match, match tokens to line input.
|
|
*
|
|
* @returns 1 when matches, 0 otherwise
|
|
*/
|
|
int token_match ( char **tokens, const char *input, int case_sensitive,
|
|
__attribute__( ( unused ) ) unsigned int index,
|
|
__attribute__( ( unused ) ) Switcher * data );
|
|
|
|
/**
|
|
* @param cmd The command to execute.
|
|
*
|
|
* Execute cmd using config.run_command and outputs the result (stdout) to the opened file
|
|
* descriptor.
|
|
*
|
|
* @returns a valid file descriptor on success, or -1 on failure.
|
|
*/
|
|
int execute_generator ( const char * cmd ) __attribute__( ( nonnull ) );
|
|
|
|
/**
|
|
* @param pidfile The pidfile to create.
|
|
*
|
|
* returns file descriptor (or -1 when failed)
|
|
*/
|
|
int create_pid_file ( const char *pidfile );
|
|
|
|
/**
|
|
* Remove pid file
|
|
*/
|
|
void remove_pid_file ( int fd );
|
|
|
|
/**
|
|
* Do some input validation, especially the first few could break things.
|
|
* It is good to catch them beforehand.
|
|
*
|
|
* This functions exits the program with 1 when it finds an invalid configuration.
|
|
*/
|
|
void config_sanity_check ( void );
|
|
|
|
/**
|
|
* @param arg string to parse.
|
|
*
|
|
* Parses a string into an character.
|
|
*
|
|
* @returns character.
|
|
*/
|
|
char helper_parse_char ( const char *arg );
|
|
|
|
/**
|
|
* @param argc number of arguments.
|
|
* @param argv Array of arguments.
|
|
*
|
|
* Set the application arguments.
|
|
*/
|
|
void cmd_set_arguments ( int argc, char **argv );
|
|
#endif // ROFI_HELPER_H
|