2014-07-21 15:39:24 -04:00
|
|
|
/**
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2015-04-14 16:12:21 -04:00
|
|
|
* Copyright 2013-2015 Qball Cow <qball@gmpclient.org>
|
2014-07-21 15:39:24 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-22 03:26:46 -04:00
|
|
|
#include <config.h>
|
2014-07-21 15:39:24 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
2015-07-31 04:21:32 -04:00
|
|
|
#include <errno.h>
|
2014-07-21 15:39:24 -04:00
|
|
|
#include "rofi.h"
|
2015-03-25 03:36:19 -04:00
|
|
|
#include "dialogs/script.h"
|
2014-09-03 07:07:26 -04:00
|
|
|
#include "helper.h"
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2015-03-27 15:28:53 -04:00
|
|
|
static char **get_script_output ( const char *command, unsigned int *length )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
|
|
|
char **retv = NULL;
|
|
|
|
|
|
|
|
*length = 0;
|
2014-08-25 14:02:48 -04:00
|
|
|
int fd = execute_generator ( command );
|
|
|
|
if ( fd >= 0 ) {
|
|
|
|
FILE *inp = fdopen ( fd, "r" );
|
|
|
|
if ( inp ) {
|
2014-09-06 08:57:30 -04:00
|
|
|
char buffer[1024];
|
2014-08-25 14:02:48 -04:00
|
|
|
while ( fgets ( buffer, 1024, inp ) != NULL ) {
|
|
|
|
retv = g_realloc ( retv, ( ( *length ) + 2 ) * sizeof ( char* ) );
|
|
|
|
retv[( *length )] = g_strdup ( buffer );
|
|
|
|
retv[( *length ) + 1] = NULL;
|
|
|
|
|
|
|
|
// Filter out line-end.
|
|
|
|
if ( retv[( *length )][strlen ( buffer ) - 1] == '\n' ) {
|
|
|
|
retv[( *length )][strlen ( buffer ) - 1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
( *length )++;
|
|
|
|
}
|
2015-07-31 04:21:32 -04:00
|
|
|
if ( fclose ( inp ) != 0 ) {
|
2015-09-19 06:21:30 -04:00
|
|
|
fprintf ( stderr, "Failed to close stdout off executor script: '%s'\n",
|
|
|
|
strerror ( errno ) );
|
2015-07-31 04:21:32 -04:00
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static char **execute_executor ( Mode *sw, const char *result, unsigned int *length )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
2014-11-22 15:39:34 -05:00
|
|
|
char **retv = NULL;
|
|
|
|
|
2014-11-22 16:40:53 -05:00
|
|
|
char *arg = g_shell_quote ( result );
|
2015-03-27 15:28:53 -04:00
|
|
|
char *command = g_strdup_printf ( "%s %s", (const char *) sw->ed, arg );
|
2014-08-09 05:40:42 -04:00
|
|
|
retv = get_script_output ( command, length );
|
|
|
|
g_free ( command );
|
2014-11-22 15:39:34 -05:00
|
|
|
g_free ( arg );
|
2014-07-21 15:39:24 -04:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static void script_switcher_free ( Mode *sw )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( sw == NULL ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_free ( sw->ed );
|
|
|
|
g_free ( sw );
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2015-03-27 15:28:53 -04:00
|
|
|
typedef struct _ScriptModePrivateData
|
|
|
|
{
|
|
|
|
unsigned int id;
|
|
|
|
char **cmd_list;
|
|
|
|
unsigned int cmd_list_length;
|
|
|
|
} ScriptModePrivateData;
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static void script_mode_init ( Mode *sw )
|
2015-03-27 15:28:53 -04:00
|
|
|
{
|
|
|
|
if ( sw->private_data == NULL ) {
|
|
|
|
ScriptModePrivateData *pd = g_malloc0 ( sizeof ( *pd ) );
|
|
|
|
sw->private_data = (void *) pd;
|
2015-11-21 17:59:59 -05:00
|
|
|
pd->cmd_list = get_script_output ( (const char *) sw->ed, &( pd->cmd_list_length ) );
|
2015-03-27 15:28:53 -04:00
|
|
|
}
|
|
|
|
}
|
2015-11-25 03:26:38 -05:00
|
|
|
static unsigned int script_mode_get_num_entries ( const Mode *sw )
|
2015-03-27 15:28:53 -04:00
|
|
|
{
|
2015-11-23 15:52:55 -05:00
|
|
|
const ScriptModePrivateData *rmpd = (const ScriptModePrivateData *) sw->private_data;
|
2015-11-21 17:59:59 -05:00
|
|
|
return rmpd->cmd_list_length;
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static ModeMode script_mode_result ( Mode *sw, int mretv, char **input, unsigned int selected_line )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
2015-03-27 15:28:53 -04:00
|
|
|
ScriptModePrivateData *rmpd = (ScriptModePrivateData *) sw->private_data;
|
2015-11-25 03:26:38 -05:00
|
|
|
ModeMode retv = MODE_EXIT;
|
2015-03-27 15:28:53 -04:00
|
|
|
char **new_list = NULL;
|
|
|
|
unsigned int new_length = 0;
|
|
|
|
|
|
|
|
if ( ( mretv & MENU_NEXT ) ) {
|
|
|
|
retv = NEXT_DIALOG;
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2015-03-27 15:28:53 -04:00
|
|
|
else if ( ( mretv & MENU_PREVIOUS ) ) {
|
|
|
|
retv = PREVIOUS_DIALOG;
|
|
|
|
}
|
|
|
|
else if ( ( mretv & MENU_QUICK_SWITCH ) ) {
|
2015-05-03 07:04:03 -04:00
|
|
|
retv = ( mretv & MENU_LOWER_MASK );
|
2015-03-27 15:28:53 -04:00
|
|
|
}
|
|
|
|
else if ( ( mretv & MENU_OK ) && rmpd->cmd_list[selected_line] != NULL ) {
|
|
|
|
new_list = execute_executor ( sw, rmpd->cmd_list[selected_line], &new_length );
|
|
|
|
}
|
|
|
|
else if ( ( mretv & MENU_CUSTOM_INPUT ) && *input != NULL && *input[0] != '\0' ) {
|
|
|
|
new_list = execute_executor ( sw, *input, &new_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a new list was generated, use that an loop around.
|
|
|
|
if ( new_list != NULL ) {
|
|
|
|
g_strfreev ( rmpd->cmd_list );
|
|
|
|
|
|
|
|
rmpd->cmd_list = new_list;
|
|
|
|
rmpd->cmd_list_length = new_length;
|
|
|
|
g_free ( *input );
|
|
|
|
*input = NULL;
|
|
|
|
retv = RELOAD_DIALOG;
|
|
|
|
}
|
|
|
|
return retv;
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static void script_mode_destroy ( Mode *sw )
|
2015-03-27 15:28:53 -04:00
|
|
|
{
|
|
|
|
ScriptModePrivateData *rmpd = (ScriptModePrivateData *) sw->private_data;
|
|
|
|
if ( rmpd != NULL ) {
|
|
|
|
g_strfreev ( rmpd->cmd_list );
|
|
|
|
g_free ( rmpd );
|
|
|
|
sw->private_data = NULL;
|
|
|
|
}
|
|
|
|
}
|
2015-11-25 03:26:38 -05:00
|
|
|
static char *mgrv ( const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, int get_entry )
|
2015-11-21 17:59:59 -05:00
|
|
|
{
|
|
|
|
ScriptModePrivateData *rmpd = sw->private_data;
|
|
|
|
return get_entry ? g_strdup ( rmpd->cmd_list[selected_line] ) : NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static int script_token_match ( const Mode *sw, char **tokens, int not_ascii, int case_sensitive, unsigned int index )
|
2015-11-21 17:59:59 -05:00
|
|
|
{
|
|
|
|
ScriptModePrivateData *rmpd = sw->private_data;
|
|
|
|
return token_match ( tokens, rmpd->cmd_list[index], not_ascii, case_sensitive );
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static int script_is_not_ascii ( const Mode *sw, unsigned int index )
|
2015-03-31 16:45:02 -04:00
|
|
|
{
|
2015-11-21 17:59:59 -05:00
|
|
|
ScriptModePrivateData *rmpd = sw->private_data;
|
2015-12-01 16:09:34 -05:00
|
|
|
return !g_str_is_ascii ( rmpd->cmd_list[index] );
|
2015-03-31 16:45:02 -04:00
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
Mode *script_switcher_parse_setup ( const char *str )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
2015-11-25 03:26:38 -05:00
|
|
|
Mode *sw = g_malloc0 ( sizeof ( *sw ) );
|
2015-03-27 15:28:53 -04:00
|
|
|
char *endp = NULL;
|
|
|
|
char *parse = g_strdup ( str );
|
|
|
|
unsigned int index = 0;
|
2015-09-19 14:59:50 -04:00
|
|
|
for ( char *token = strtok_r ( parse, ":", &endp ); token != NULL; token = strtok_r ( NULL, ":", &endp ) ) {
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( index == 0 ) {
|
2015-03-27 15:28:53 -04:00
|
|
|
g_strlcpy ( sw->name, token, 32 );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
else if ( index == 1 ) {
|
2015-11-27 07:01:25 -05:00
|
|
|
sw->ed = (void *) rofi_expand_path ( token );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( parse );
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( index == 2 ) {
|
2015-11-21 17:59:59 -05:00
|
|
|
sw->free = script_switcher_free;
|
|
|
|
sw->keysym = None;
|
|
|
|
sw->modmask = AnyModifier;
|
|
|
|
sw->init = script_mode_init;
|
|
|
|
sw->get_num_entries = script_mode_get_num_entries;
|
|
|
|
sw->result = script_mode_result;
|
|
|
|
sw->destroy = script_mode_destroy;
|
|
|
|
sw->token_match = script_token_match;
|
2015-11-24 07:59:35 -05:00
|
|
|
sw->get_completion = NULL,
|
2015-11-21 17:59:59 -05:00
|
|
|
sw->mgrv = mgrv;
|
|
|
|
sw->is_not_ascii = script_is_not_ascii;
|
2015-03-27 15:28:53 -04:00
|
|
|
|
2014-07-21 15:39:24 -04:00
|
|
|
return sw;
|
|
|
|
}
|
2015-09-19 14:59:50 -04:00
|
|
|
fprintf ( stderr, "The script command '%s' has %u options, but needs 2: <name>:<script>.\n", str, index );
|
2015-03-27 15:28:53 -04:00
|
|
|
script_switcher_free ( sw );
|
2014-07-21 15:39:24 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|