2014-01-29 18:47:23 -05:00
|
|
|
/**
|
2014-03-01 11:27:52 -05:00
|
|
|
* rofi
|
2014-01-29 18:47:23 -05:00
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2015-04-14 16:12:21 -04:00
|
|
|
* Copyright 2013-2015 Qball Cow <qball@gmpclient.org>
|
2014-01-29 18:47:23 -05: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-01-29 18:47:23 -05:00
|
|
|
#include <stdio.h>
|
2014-02-03 16:49:07 -05:00
|
|
|
#include <stdlib.h>
|
2014-01-29 18:47:23 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2014-03-12 03:41:38 -04:00
|
|
|
#include "rofi.h"
|
2015-03-25 03:36:19 -04:00
|
|
|
#include "dialogs/dmenu.h"
|
2014-10-19 13:42:02 -04:00
|
|
|
#include "helper.h"
|
2014-01-29 18:47:23 -05:00
|
|
|
|
|
|
|
|
2014-08-22 11:29:15 -04:00
|
|
|
static char **get_dmenu ( int *length )
|
2014-01-29 18:47:23 -05:00
|
|
|
{
|
2014-02-03 16:28:04 -05:00
|
|
|
char buffer[1024];
|
2014-01-29 18:47:23 -05:00
|
|
|
char **retv = NULL;
|
2014-07-20 06:29:27 -04:00
|
|
|
|
|
|
|
*length = 0;
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-10-19 13:42:02 -04:00
|
|
|
while ( fgets_s ( buffer, 1024, stdin, (char) config.separator ) != NULL ) {
|
2014-08-09 05:40:42 -04:00
|
|
|
retv = g_realloc ( retv, ( ( *length ) + 2 ) * sizeof ( char* ) );
|
|
|
|
retv[( *length )] = g_strdup ( buffer );
|
2014-07-20 06:29:27 -04:00
|
|
|
retv[( *length ) + 1] = NULL;
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-02-03 16:49:07 -05:00
|
|
|
// Filter out line-end.
|
2014-07-20 06:29:27 -04:00
|
|
|
if ( retv[( *length )][strlen ( buffer ) - 1] == '\n' ) {
|
|
|
|
retv[( *length )][strlen ( buffer ) - 1] = '\0';
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-07-20 06:29:27 -04:00
|
|
|
( *length )++;
|
2014-08-22 11:29:15 -04:00
|
|
|
// Stop when we hit 2³¹ entries.
|
2014-08-23 06:47:09 -04:00
|
|
|
if ( ( *length ) == INT_MAX ) {
|
2014-08-22 11:29:15 -04:00
|
|
|
return retv;
|
|
|
|
}
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2015-04-05 05:53:08 -04:00
|
|
|
struct range_pair
|
|
|
|
{
|
|
|
|
unsigned int start;
|
|
|
|
unsigned int stop;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct range_pair * urgent_list = NULL;
|
|
|
|
unsigned int num_urgent_list = 0;
|
|
|
|
struct range_pair * active_list = NULL;
|
|
|
|
unsigned int num_active_list = 0;
|
2015-04-04 05:10:41 -04:00
|
|
|
|
2015-04-05 05:53:08 -04:00
|
|
|
static void parse_pair ( char *input, struct range_pair *item )
|
|
|
|
{
|
|
|
|
int index = 0;
|
|
|
|
for ( char *token = strsep ( &input, "-" );
|
|
|
|
token != NULL;
|
|
|
|
token = strsep ( &input, "-" ) ) {
|
|
|
|
if ( index == 0 ) {
|
|
|
|
item->start = item->stop = (unsigned int) strtoul ( token, NULL, 10 );
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ( token[0] == '\0' ) {
|
|
|
|
item->stop = 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
item->stop = (unsigned int) strtoul ( token, NULL, 10 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_ranges ( char *input, struct range_pair **list, unsigned int *length )
|
|
|
|
{
|
|
|
|
char *endp;
|
|
|
|
for ( char *token = strtok_r ( input, ",", &endp );
|
|
|
|
token != NULL;
|
|
|
|
token = strtok_r ( NULL, ",", &endp ) ) {
|
|
|
|
// Make space.
|
|
|
|
*list = g_realloc ( ( *list ), ( ( *length ) + 1 ) * sizeof ( struct range_pair ) );
|
|
|
|
// Parse a single pair.
|
|
|
|
parse_pair ( token, &( ( *list )[*length] ) );
|
|
|
|
|
|
|
|
( *length )++;
|
|
|
|
}
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
|
2015-03-31 16:45:02 -04:00
|
|
|
static const char *get_display_data ( unsigned int index, void *data, G_GNUC_UNUSED int *state )
|
|
|
|
{
|
|
|
|
char **retv = (char * *) data;
|
2015-04-05 05:53:08 -04:00
|
|
|
for ( unsigned int i = 0; i < num_active_list; i++ ) {
|
|
|
|
if ( index >= active_list[i].start && index <= active_list[i].stop ) {
|
|
|
|
*state |= ACTIVE;
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
}
|
2015-04-05 05:53:08 -04:00
|
|
|
for ( unsigned int i = 0; i < num_urgent_list; i++ ) {
|
|
|
|
if ( index >= urgent_list[i].start && index <= urgent_list[i].stop ) {
|
|
|
|
*state |= URGENT;
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
}
|
2015-03-31 16:45:02 -04:00
|
|
|
return retv[index];
|
|
|
|
}
|
|
|
|
|
2015-05-11 17:20:34 -04:00
|
|
|
/**
|
|
|
|
* @param format The format string used. See below for possible syntax.
|
|
|
|
* @param string The selected entry.
|
|
|
|
* @param selected_line The selected line index.
|
2015-05-16 07:58:09 -04:00
|
|
|
* @param filter The entered filter.
|
2015-05-14 13:39:30 -04:00
|
|
|
*
|
2015-05-11 17:20:34 -04:00
|
|
|
* Function that outputs the selected line in the user-specified format.
|
|
|
|
* Currently the following formats are supported:
|
|
|
|
* * i: Print the index (0-(N-1))
|
2015-05-14 13:39:30 -04:00
|
|
|
* * d: Print the index (1-N)
|
2015-05-11 17:20:34 -04:00
|
|
|
* * s: Print input string.
|
2015-05-16 07:58:09 -04:00
|
|
|
* * q: Print quoted input string.
|
|
|
|
* * f: Print the entered filter.
|
|
|
|
* * F: Print the entered filter, quoted
|
2015-05-11 17:20:34 -04:00
|
|
|
*
|
|
|
|
* This functions outputs the formatted string to stdout, appends a newline (\n) character and
|
|
|
|
* calls flush on the file descriptor.
|
|
|
|
*/
|
2015-05-16 07:58:09 -04:00
|
|
|
static void dmenu_output_formatted_line ( const char *format, const char *string, int selected_line, const char *filter )
|
2015-05-10 06:08:08 -04:00
|
|
|
{
|
|
|
|
for ( int i = 0; format && format[i]; i++ ) {
|
|
|
|
if ( format[i] == 'i' ) {
|
|
|
|
fprintf ( stdout, "%d", selected_line );
|
|
|
|
}
|
2015-05-11 17:20:34 -04:00
|
|
|
else if ( format[i] == 'd' ) {
|
2015-05-14 13:39:30 -04:00
|
|
|
fprintf ( stdout, "%d", ( selected_line + 1 ) );
|
2015-05-11 17:20:34 -04:00
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else if ( format[i] == 's' ) {
|
|
|
|
fputs ( string, stdout );
|
|
|
|
}
|
2015-05-13 12:35:55 -04:00
|
|
|
else if ( format[i] == 'q' ) {
|
2015-05-10 06:08:08 -04:00
|
|
|
char *quote = g_shell_quote ( string );
|
|
|
|
fputs ( quote, stdout );
|
|
|
|
g_free ( quote );
|
|
|
|
}
|
2015-05-16 07:58:09 -04:00
|
|
|
else if ( format[i] == 'f' ) {
|
|
|
|
fputs ( filter, stdout );
|
|
|
|
}
|
|
|
|
else if ( format[i] == 'F' ) {
|
|
|
|
char *quote = g_shell_quote ( filter );
|
2015-05-13 12:35:55 -04:00
|
|
|
fputs ( quote, stdout );
|
|
|
|
g_free ( quote );
|
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else {
|
|
|
|
fputc ( format[i], stdout );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fputc ( '\n', stdout );
|
|
|
|
fflush ( stdout );
|
|
|
|
}
|
|
|
|
|
2014-08-05 03:07:41 -04:00
|
|
|
int dmenu_switcher_dialog ( char **input )
|
2014-01-29 18:47:23 -05:00
|
|
|
{
|
2015-03-11 13:05:39 -04:00
|
|
|
char *dmenu_prompt = "dmenu ";
|
2015-05-19 13:59:50 -04:00
|
|
|
int selected_line = -1;
|
2014-08-23 06:47:09 -04:00
|
|
|
int retv = FALSE;
|
|
|
|
int length = 0;
|
|
|
|
char **list = get_dmenu ( &length );
|
|
|
|
int restart = FALSE;
|
2015-05-23 14:06:06 -04:00
|
|
|
char *message = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
find_arg_str ( "-mesg", &message );
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2015-05-11 17:20:34 -04:00
|
|
|
// By default we print the unescaped line back.
|
2015-05-14 13:39:30 -04:00
|
|
|
char *format = "s";
|
2015-05-11 17:20:34 -04:00
|
|
|
// This is here for compatibility reason.
|
2015-05-14 13:39:30 -04:00
|
|
|
// Use -format 'i' instead.
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg ( "-i" ) >= 0 ) {
|
2015-05-14 13:39:30 -04:00
|
|
|
format = "i";
|
2015-03-11 13:05:39 -04:00
|
|
|
}
|
2015-05-11 17:20:34 -04:00
|
|
|
// Allow user to override the output format.
|
2015-05-10 06:08:08 -04:00
|
|
|
find_arg_str ( "-format", &format );
|
2015-03-11 13:05:39 -04:00
|
|
|
// Check prompt
|
2015-03-11 13:32:37 -04:00
|
|
|
find_arg_str ( "-p", &dmenu_prompt );
|
|
|
|
find_arg_int ( "-l", &selected_line );
|
2015-04-05 05:53:08 -04:00
|
|
|
// Urgent.
|
|
|
|
char *str = NULL;
|
|
|
|
find_arg_str ( "-u", &str );
|
|
|
|
if ( str != NULL ) {
|
|
|
|
parse_ranges ( str, &urgent_list, &num_urgent_list );
|
|
|
|
}
|
|
|
|
// Active
|
|
|
|
str = NULL;
|
|
|
|
find_arg_str ( "-a", &str );
|
|
|
|
if ( str != NULL ) {
|
|
|
|
parse_ranges ( str, &active_list, &num_active_list );
|
|
|
|
}
|
2015-03-11 13:05:39 -04:00
|
|
|
|
2015-05-07 15:07:15 -04:00
|
|
|
int only_selected = FALSE;
|
|
|
|
if ( find_arg ( "-only-match" ) >= 0 ) {
|
|
|
|
only_selected = TRUE;
|
|
|
|
if ( length == 0 ) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2015-05-16 07:58:09 -04:00
|
|
|
find_arg_str_alloc ( "-filter", input );
|
2015-05-07 15:07:15 -04:00
|
|
|
|
2015-05-18 16:38:51 -04:00
|
|
|
char *select = NULL;
|
|
|
|
find_arg_str ( "-select", &select );
|
2015-06-05 17:08:02 -04:00
|
|
|
if ( select != NULL ) {
|
2015-05-18 16:38:51 -04:00
|
|
|
char **tokens = tokenize ( select, config.case_sensitive );
|
|
|
|
int i = 0;
|
|
|
|
for ( i = 0; i < length; i++ ) {
|
|
|
|
if ( token_match ( tokens, list[i], config.case_sensitive, 0, NULL ) ) {
|
|
|
|
selected_line = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev ( tokens );
|
|
|
|
}
|
|
|
|
|
2014-08-01 17:29:01 -04:00
|
|
|
do {
|
2015-04-16 15:13:45 -04:00
|
|
|
int next_pos = selected_line;
|
|
|
|
int mretv = menu ( list, length, input, dmenu_prompt,
|
2015-05-23 14:06:06 -04:00
|
|
|
token_match, NULL, &selected_line, config.levenshtein_sort, get_display_data, list, &next_pos, message );
|
2015-05-07 15:07:15 -04:00
|
|
|
// Special behavior.
|
|
|
|
if ( only_selected ) {
|
2015-05-09 08:17:27 -04:00
|
|
|
/**
|
|
|
|
* Select item mode.
|
|
|
|
*/
|
2015-05-07 15:07:15 -04:00
|
|
|
restart = TRUE;
|
|
|
|
if ( ( mretv & ( MENU_OK | MENU_QUICK_SWITCH ) ) && list[selected_line] != NULL ) {
|
2015-05-16 07:58:09 -04:00
|
|
|
dmenu_output_formatted_line ( format, list[selected_line], selected_line, *input );
|
2015-05-07 15:07:15 -04:00
|
|
|
retv = TRUE;
|
|
|
|
if ( ( mretv & MENU_QUICK_SWITCH ) ) {
|
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
selected_line = next_pos - 1;
|
|
|
|
continue;
|
|
|
|
}
|
2014-08-01 17:29:01 -04:00
|
|
|
// We normally do not want to restart the loop.
|
|
|
|
restart = FALSE;
|
2015-05-09 08:17:27 -04:00
|
|
|
if ( ( mretv & ( MENU_OK | MENU_CUSTOM_INPUT ) ) && list[selected_line] != NULL ) {
|
2015-05-10 06:08:08 -04:00
|
|
|
if ( ( mretv & MENU_CUSTOM_INPUT ) ) {
|
2015-05-16 07:58:09 -04:00
|
|
|
dmenu_output_formatted_line ( format, *input, -1, *input );
|
2015-03-11 13:05:39 -04:00
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else{
|
2015-05-16 07:58:09 -04:00
|
|
|
dmenu_output_formatted_line ( format, list[selected_line], selected_line, *input );
|
2015-03-11 13:05:39 -04:00
|
|
|
}
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( ( mretv & MENU_SHIFT ) ) {
|
2014-08-01 17:29:01 -04:00
|
|
|
restart = TRUE;
|
|
|
|
// Move to next line.
|
2015-04-16 15:13:45 -04:00
|
|
|
selected_line = MIN ( next_pos, length - 1 );
|
2014-08-01 17:29:01 -04:00
|
|
|
}
|
2014-08-05 03:07:41 -04:00
|
|
|
retv = TRUE;
|
2015-05-09 08:17:27 -04:00
|
|
|
if ( ( mretv & MENU_QUICK_SWITCH ) ) {
|
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
2015-03-11 13:05:39 -04:00
|
|
|
}
|
2014-08-01 17:29:01 -04:00
|
|
|
}
|
2015-05-03 07:04:03 -04:00
|
|
|
else if ( ( mretv & MENU_QUICK_SWITCH ) ) {
|
2015-05-10 06:08:08 -04:00
|
|
|
if ( ( mretv & MENU_CUSTOM_INPUT ) ) {
|
2015-05-16 07:58:09 -04:00
|
|
|
dmenu_output_formatted_line ( format, *input, -1, *input );
|
2015-05-03 07:04:03 -04:00
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else{
|
2015-05-16 07:58:09 -04:00
|
|
|
dmenu_output_formatted_line ( format, list[selected_line], selected_line, *input );
|
2015-05-03 07:04:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
restart = FALSE;
|
2015-05-05 13:30:43 -04:00
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
2015-05-03 07:04:03 -04:00
|
|
|
}
|
2014-08-01 17:29:01 -04:00
|
|
|
} while ( restart );
|
2014-01-30 04:02:01 -05:00
|
|
|
|
2014-08-09 05:40:42 -04:00
|
|
|
g_strfreev ( list );
|
2015-04-05 05:53:08 -04:00
|
|
|
g_free ( urgent_list );
|
|
|
|
g_free ( active_list );
|
2014-08-09 05:40:42 -04:00
|
|
|
|
2014-01-29 18:47:23 -05:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|