rofi/include/helper.h

149 lines
4.6 KiB
C
Raw Normal View History

#ifndef __HELPER_H__
#define __HELPER_H__
2014-11-24 19:22:44 +00:00
/**
* @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.
2014-11-24 19:35:28 +00:00
*/
2014-11-24 19:22:44 +00:00
int helper_parse_setup ( char * string, char ***output, int *length, ... );
2014-11-24 19:22:44 +00:00
/**
* Implementation of fgets with custom separator.
*/
2014-10-19 17:42:02 +00:00
char* fgets_s ( char* s, int n, FILE *iop, char sep );
2015-01-12 13:13:46 +00:00
/**
* @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 );
2014-11-24 19:22:44 +00:00
/**
* @param input The input string.
2015-01-12 13:13:46 +00:00
* @param case_sensitive Whether case is significant.
2014-11-24 19:22:44 +00:00
*
* Tokenize the string on spaces.
*
* @returns a newly allocated 2 dimensional array of strings.
*/
2015-01-12 13:13:46 +00:00
char **tokenize ( const char *input, int case_sensitive );
2014-11-15 15:26:55 +00:00
2014-11-24 19:22:44 +00:00
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @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.
*
2014-11-24 19:35:28 +00:00
* @returns TRUE if key was found and val was set.
2014-11-24 19:22:44 +00:00
*/
2014-11-15 15:26:55 +00:00
int find_arg_char ( const int argc, char * const argv[], const char * const key, char *val );
2014-11-24 19:22:44 +00:00
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @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.
*
2014-11-24 19:35:28 +00:00
* @returns TRUE if key was found and val was set.
2014-11-24 19:22:44 +00:00
*/
2014-11-15 15:26:55 +00:00
int find_arg_uint ( const int argc, char * const argv[], const char * const key, unsigned int *val );
2014-11-24 19:22:44 +00:00
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @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.
*
2014-11-24 19:35:28 +00:00
* @returns TRUE if key was found and val was set.
2014-11-24 19:22:44 +00:00
*/
2014-11-15 15:26:55 +00:00
int find_arg_int ( const int argc, char * const argv[], const char * const key, int *val );
2014-11-24 19:22:44 +00:00
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @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.
*
2014-11-24 19:35:28 +00:00
* @returns TRUE if key was found and val was set.
2014-11-24 19:22:44 +00:00
*/
2014-11-15 15:26:55 +00:00
int find_arg_str ( const int argc, char * const argv[], const char * const key, char** val );
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @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.
* Creates an allocated copy of the string.
*
* @returns TRUE if key was found and val was set.
*/
int find_arg_str_alloc ( const int argc, char * const argv[], const char * const key, char** val );
2014-11-15 15:26:55 +00:00
2014-11-24 19:22:44 +00:00
/**
* @param argc Number of arguments.
* @param argv 2 dimensional array of arguments.
* @param key The key to search for
*
* Check if key is passed as argument.
*
2014-11-24 19:35:28 +00:00
* @returns return position of string or -1 if not found.
2014-11-24 19:22:44 +00:00
*/
2014-11-15 15:26:55 +00:00
int find_arg ( const int argc, char * const argv[], const char * const key );
2014-12-02 08:09:20 +00:00
/**
* @params tokens
* @param tokens List of (input) tokens to match.
* @param input The entry to match against.
2015-01-12 13:13:46 +00:00
* @param case_sensitive Whether case is significant.
2014-12-02 08:09:20 +00:00
* @param index The current selected index.
* @param data User data.
*
* Tokenized match, match tokens to line input.
*
* @returns 1 when matches, 0 otherwise
*/
2015-01-12 13:13:46 +00:00
int token_match ( char **tokens, const char *input, int case_sensitive,
2014-12-02 08:09:20 +00:00
__attribute__( ( unused ) ) int index,
__attribute__( ( unused ) ) void *data );
2015-01-05 20:53:50 +00:00
/**
* @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 ( char * cmd ) __attribute__( ( nonnull ) );
/**
* @param pidfile The pidfile to create.
*
* Calls exit (1) when failed.
*/
void create_pid_file ( const char *pidfile );
#endif // __HELPER_H__