rofi/source/helper.c

665 lines
20 KiB
C
Raw Normal View History

2015-02-12 21:34:06 +00:00
/**
* rofi
*
* MIT/X11 License
* Copyright (c) 2012 Sean Pringle <sean.pringle@gmail.com>
2015-12-31 23:27:00 +00:00
* Modified 2013-2016 Qball Cow <qball@gmpclient.org>
2015-02-12 21:34:06 +00: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.
*
*/
#include <config.h>
#include <stdio.h>
2014-11-15 15:26:55 +00:00
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <sys/types.h>
#include <sys/file.h>
2015-07-04 13:36:11 +00:00
#include <sys/stat.h>
2015-11-27 12:01:25 +00:00
#include <pwd.h>
#include <ctype.h>
2016-02-27 19:45:47 +00:00
#include <xcb/xcb.h>
#include <pango/pango.h>
#include <pango/pango-fontmap.h>
#include <pango/pangocairo.h>
#include "helper.h"
2016-01-07 15:01:56 +00:00
#include "settings.h"
#include "x11-helper.h"
#include "rofi.h"
2016-02-08 08:03:11 +00:00
#include "view.h"
const char *const monitor_position_entries[] = {
"on focused monitor",
"on focused window",
"at mouse pointer",
"on monitor with focused window",
"on monitor that has mouse pointer"
};
2016-02-28 14:32:53 +00:00
static int stored_argc = 0;
static char **stored_argv = NULL;
2015-03-11 17:32:37 +00:00
void cmd_set_arguments ( int argc, char **argv )
{
stored_argc = argc;
stored_argv = argv;
}
/**
2015-03-05 19:26:52 +00:00
* @param info To Match information on.
* @param res The string being generated.
* @param data User data
*
* Replace the entries. This function gets called by g_regex_replace_eval.
*
* @returns TRUE to stop replacement, FALSE to continue
*/
2015-09-19 10:57:48 +00:00
static gboolean helper_eval_cb ( const GMatchInfo *info, GString *res, gpointer data )
{
2015-01-15 16:59:59 +00:00
gchar *match;
// Get the match
match = g_match_info_fetch ( info, 0 );
if ( match != NULL ) {
// Lookup the match, so we can replace it.
2015-01-15 16:59:59 +00:00
gchar *r = g_hash_table_lookup ( (GHashTable *) data, match );
if ( r != NULL ) {
// Append the replacement to the string.
g_string_append ( res, r );
}
// Free match.
g_free ( match );
}
// Continue replacement.
return FALSE;
}
int helper_parse_setup ( char * string, char ***output, int *length, ... )
{
GError *error = NULL;
GHashTable *h;
h = g_hash_table_new ( g_str_hash, g_str_equal );
// By default, we insert terminal and ssh-client
g_hash_table_insert ( h, "{terminal}", config.terminal_emulator );
g_hash_table_insert ( h, "{ssh-client}", config.ssh_client );
// Add list from variable arguments.
va_list ap;
va_start ( ap, length );
while ( 1 ) {
char * key = va_arg ( ap, char * );
if ( key == NULL ) {
break;
}
char *value = va_arg ( ap, char * );
if ( value == NULL ) {
break;
}
g_hash_table_insert ( h, key, value );
}
va_end ( ap );
// Replace hits within {-\w+}.
GRegex *reg = g_regex_new ( "{[-\\w]+}", 0, 0, NULL );
2015-09-19 10:57:48 +00:00
char *res = g_regex_replace_eval ( reg, string, -1, 0, 0, helper_eval_cb, h, NULL );
// Free regex.
g_regex_unref ( reg );
// Destroy key-value storage.
g_hash_table_destroy ( h );
// Parse the string into shell arguments.
if ( g_shell_parse_argv ( res, length, output, &error ) ) {
g_free ( res );
return TRUE;
}
g_free ( res );
// Throw error if shell parsing fails.
if ( error ) {
2015-09-19 10:57:48 +00:00
char *msg = g_strdup_printf ( "Failed to parse: '%s'\nError: '%s'", string, error->message );
2016-02-08 08:03:11 +00:00
rofi_view_error_dialog ( msg, FALSE );
g_free ( msg );
// print error.
g_error_free ( error );
}
return FALSE;
}
2014-11-15 15:26:55 +00:00
2016-05-22 15:47:34 +00:00
void tokenize_free ( GRegex ** tokens )
2015-01-12 13:13:46 +00:00
{
2016-05-21 08:37:23 +00:00
for ( size_t i = 0; tokens && tokens[i]; i++ ) {
g_regex_unref ( (GRegex *) tokens[i] );
2015-01-12 13:13:46 +00:00
}
2016-05-21 08:37:23 +00:00
g_free ( tokens );
}
2015-01-12 13:13:46 +00:00
2016-05-21 08:37:23 +00:00
static gchar *glob_to_regex ( const char *input )
{
gchar *r = g_regex_escape_string ( input, -1 );
size_t str_l = strlen ( r );
for ( size_t i = 0; i < str_l; i++ ) {
if ( r[i] == '\\' ) {
if ( r[i + 1] == '*' ) {
r[i] = '.';
}
else if ( r[i + 1] == '?' ) {
r[i + 1] = 'S';
}
i++;
}
}
return r;
2015-01-12 13:13:46 +00:00
}
static gchar *fuzzy_to_regex ( const char * input )
{
GString *str = g_string_new ( "" );
gchar *r = g_regex_escape_string ( input, -1 );
gchar *iter;
int first = 1;
for ( iter = r; iter && *iter != '\0'; iter = g_utf8_next_char ( iter ) ) {
if ( first ) {
g_string_append ( str, "(" );
}
else {
g_string_append ( str, ".*(" );
}
g_string_append_unichar ( str, g_utf8_get_char ( iter ) );
g_string_append ( str, ")" );
first = 0;
}
g_free ( r );
char *retv = str->str;
g_string_free ( str, FALSE );
return retv;
}
2016-05-21 08:37:23 +00:00
static GRegex * create_regex ( const char *input, int case_sensitive )
2015-11-17 15:10:14 +00:00
{
2016-11-15 07:24:06 +00:00
// Macro for quickly generating regex for matching.
2016-06-16 20:23:55 +00:00
#define R( s ) g_regex_new ( s, G_REGEX_OPTIMIZE | ( ( case_sensitive ) ? 0 : G_REGEX_CASELESS ), 0, NULL )
2016-06-19 16:02:49 +00:00
GRegex * retv = NULL;
gchar *r;
switch ( config.matching_method )
{
case MM_GLOB:
r = glob_to_regex ( input );
2016-05-21 08:37:23 +00:00
retv = R ( r );
g_free ( r );
break;
case MM_REGEX:
2016-05-21 08:37:23 +00:00
retv = R ( input );
if ( retv == NULL ) {
r = g_regex_escape_string ( input, -1 );
2016-05-21 08:37:23 +00:00
retv = R ( r );
g_free ( r );
2015-11-17 15:10:14 +00:00
}
break;
case MM_FUZZY:
r = fuzzy_to_regex ( input );
retv = R ( r );
g_free ( r );
break;
default:
r = g_regex_escape_string ( input, -1 );
2016-05-21 08:37:23 +00:00
retv = R ( r );
g_free ( r );
break;
2015-11-17 15:10:14 +00:00
}
2016-05-21 08:37:23 +00:00
return retv;
2015-11-17 15:10:14 +00:00
}
2016-05-22 15:47:34 +00:00
GRegex **tokenize ( const char *input, int case_sensitive )
2014-11-15 15:26:55 +00:00
{
2016-06-16 20:23:55 +00:00
if ( input == NULL ) {
return NULL;
}
size_t len = strlen ( input );
if ( len == 0 ) {
2014-11-15 15:26:55 +00:00
return NULL;
}
char *saveptr = NULL, *token;
GRegex **retv = NULL;
if ( !config.tokenize ) {
2016-05-22 15:47:34 +00:00
retv = g_malloc0 ( sizeof ( GRegex* ) * 2 );
retv[0] = (GRegex *) create_regex ( input, case_sensitive );
return retv;
}
2014-11-15 15:26:55 +00:00
// First entry is always full (modified) stringtext.
int num_tokens = 0;
2014-11-15 15:26:55 +00:00
// Copy the string, 'strtok_r' modifies it.
char *str = g_strdup ( input );
// Iterate over tokens.
// strtok should still be valid for utf8.
const char * const sep = " ";
for ( token = strtok_r ( str, sep, &saveptr ); token != NULL; token = strtok_r ( NULL, sep, &saveptr ) ) {
2016-05-22 15:47:34 +00:00
retv = g_realloc ( retv, sizeof ( GRegex* ) * ( num_tokens + 2 ) );
retv[num_tokens] = (GRegex *) create_regex ( token, case_sensitive );
2014-11-15 15:26:55 +00:00
retv[num_tokens + 1] = NULL;
num_tokens++;
}
// Free str.
g_free ( str );
return retv;
}
// cli arg handling
2015-03-11 17:32:37 +00:00
int find_arg ( const char * const key )
2014-11-15 15:26:55 +00:00
{
int i;
2015-03-11 17:32:37 +00:00
for ( i = 0; i < stored_argc && strcasecmp ( stored_argv[i], key ); i++ ) {
2014-11-15 15:26:55 +00:00
;
}
2015-03-11 17:32:37 +00:00
return i < stored_argc ? i : -1;
2014-11-15 15:26:55 +00:00
}
2015-03-11 17:32:37 +00:00
int find_arg_str ( const char * const key, char** val )
2014-11-15 15:26:55 +00:00
{
2015-03-11 17:32:37 +00:00
int i = find_arg ( key );
2014-11-15 15:26:55 +00:00
2015-03-11 17:32:37 +00:00
if ( val != NULL && i > 0 && i < stored_argc - 1 ) {
*val = stored_argv[i + 1];
2014-11-15 15:26:55 +00:00
return TRUE;
}
return FALSE;
}
2015-03-11 17:32:37 +00:00
int find_arg_int ( const char * const key, int *val )
2014-11-15 15:26:55 +00:00
{
2015-03-11 17:32:37 +00:00
int i = find_arg ( key );
2014-11-15 15:26:55 +00:00
2015-03-11 17:32:37 +00:00
if ( val != NULL && i > 0 && i < ( stored_argc - 1 ) ) {
*val = strtol ( stored_argv[i + 1], NULL, 10 );
2014-11-15 15:26:55 +00:00
return TRUE;
}
return FALSE;
}
2015-03-11 17:32:37 +00:00
int find_arg_uint ( const char * const key, unsigned int *val )
2014-11-15 15:26:55 +00:00
{
2015-03-11 17:32:37 +00:00
int i = find_arg ( key );
2014-11-15 15:26:55 +00:00
2015-03-11 17:32:37 +00:00
if ( val != NULL && i > 0 && i < ( stored_argc - 1 ) ) {
*val = strtoul ( stored_argv[i + 1], NULL, 10 );
2014-11-15 15:26:55 +00:00
return TRUE;
}
return FALSE;
}
char helper_parse_char ( const char *arg )
{
2016-10-28 21:28:49 +00:00
const size_t len = strlen ( arg );
// If the length is 1, it is not escaped.
if ( len == 1 ) {
2015-12-02 16:46:17 +00:00
return arg[0];
}
// If the length is 2 and the first character is '\', we unescape it.
2015-12-02 16:46:17 +00:00
if ( len == 2 && arg[0] == '\\' ) {
2016-10-28 21:28:49 +00:00
switch ( arg[1] )
{
// New line
2016-10-28 21:28:49 +00:00
case 'n': return '\n';
// Bell
2016-10-28 21:28:49 +00:00
case 'a': return '\a';
// Backspace
2016-10-28 21:28:49 +00:00
case 'b': return '\b';
// Tab
2016-10-28 21:28:49 +00:00
case 't': return '\t';
// Vertical tab
2016-10-28 21:28:49 +00:00
case 'v': return '\v';
// Form feed
2016-10-28 21:28:49 +00:00
case 'f': return '\f';
// Carriage return
2016-10-28 21:28:49 +00:00
case 'r': return '\r';
// Forward slash
2016-10-28 21:28:49 +00:00
case '\\': return '\\';
// 0 line.
case '0': return '\0';
default:
break;
2015-09-20 18:05:04 +00:00
}
}
2015-12-02 16:46:17 +00:00
if ( len > 2 && arg[0] == '\\' && arg[1] == 'x' ) {
return (char) strtol ( &arg[2], NULL, 16 );
}
2015-12-02 16:46:17 +00:00
fprintf ( stderr, "Failed to parse character string: \"%s\"\n", arg );
// for now default to newline.
return '\n';
}
2015-03-11 17:32:37 +00:00
int find_arg_char ( const char * const key, char *val )
2014-11-15 15:26:55 +00:00
{
2015-03-11 17:32:37 +00:00
int i = find_arg ( key );
2014-11-15 15:26:55 +00:00
2015-03-11 17:32:37 +00:00
if ( val != NULL && i > 0 && i < ( stored_argc - 1 ) ) {
*val = helper_parse_char ( stored_argv[i + 1] );
2014-11-15 15:26:55 +00:00
return TRUE;
}
return FALSE;
}
2016-05-22 15:47:34 +00:00
PangoAttrList *token_match_get_pango_attr ( GRegex **tokens, const char *input, PangoAttrList *retv )
{
// Do a tokenized match.
if ( tokens ) {
for ( int j = 0; tokens[j]; j++ ) {
GMatchInfo *gmi = NULL;
g_regex_match ( (GRegex *) tokens[j], input, G_REGEX_MATCH_PARTIAL, &gmi );
while ( g_match_info_matches ( gmi ) ) {
int count = g_match_info_get_match_count ( gmi );
for ( int index = ( count > 1 ) ? 1 : 0; index < count; index++ ) {
int start, end;
g_match_info_fetch_pos ( gmi, index, &start, &end );
PangoAttribute *pa = pango_attr_underline_new ( PANGO_UNDERLINE_SINGLE );
PangoAttribute *pa2 = pango_attr_weight_new ( PANGO_WEIGHT_BOLD );
pa2->start_index = pa->start_index = start;
pa2->end_index = pa->end_index = end;
pango_attr_list_insert ( retv, pa );
pango_attr_list_insert ( retv, pa2 );
}
g_match_info_next ( gmi, NULL );
}
g_match_info_free ( gmi );
}
}
return retv;
}
2016-08-23 22:39:56 +00:00
int token_match ( GRegex * const *tokens, const char *input )
{
2016-10-28 21:28:49 +00:00
int match = ( tokens != NULL );
2016-05-22 15:47:34 +00:00
// Do a tokenized match.
2016-10-28 21:28:49 +00:00
for ( int j = 0; match && tokens[j]; j++ ) {
match = g_regex_match ( (const GRegex *) tokens[j], input, 0, NULL );
2016-05-22 15:47:34 +00:00
}
return match;
}
2015-01-05 20:53:50 +00:00
2015-03-27 19:28:53 +00:00
int execute_generator ( const char * cmd )
2015-01-05 20:53:50 +00:00
{
char **args = NULL;
int argv = 0;
helper_parse_setup ( config.run_command, &args, &argv, "{cmd}", cmd, NULL );
int fd = -1;
GError *error = NULL;
2015-09-19 10:57:48 +00:00
g_spawn_async_with_pipes ( NULL, args, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL, &fd, NULL, &error );
2015-01-05 20:53:50 +00:00
if ( error != NULL ) {
2015-09-19 10:57:48 +00:00
char *msg = g_strdup_printf ( "Failed to execute: '%s'\nError: '%s'", cmd, error->message );
fputs ( msg, stderr );
fputs ( "\n", stderr );
rofi_view_error_dialog ( msg, FALSE );
2015-01-05 20:53:50 +00:00
g_free ( msg );
// print error.
g_error_free ( error );
fd = -1;
}
g_strfreev ( args );
return fd;
}
int create_pid_file ( const char *pidfile )
{
if ( pidfile == NULL ) {
return -1;
}
int fd = g_open ( pidfile, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR );
if ( fd < 0 ) {
2016-11-14 15:58:43 +00:00
fprintf ( stderr, "Failed to create pid file: '%s'.\n", pidfile );
return -1;
}
// Set it to close the File Descriptor on exit.
int flags = fcntl ( fd, F_GETFD, NULL );
flags = flags | FD_CLOEXEC;
if ( fcntl ( fd, F_SETFD, flags, NULL ) < 0 ) {
fprintf ( stderr, "Failed to set CLOEXEC on pidfile.\n" );
remove_pid_file ( fd );
return -1;
}
// Try to get exclusive write lock on FD
int retv = flock ( fd, LOCK_EX | LOCK_NB );
if ( retv != 0 ) {
fprintf ( stderr, "Failed to set lock on pidfile: Rofi already running?\n" );
fprintf ( stderr, "Got error: %d %s\n", retv, strerror ( errno ) );
remove_pid_file ( fd );
return -1;
}
if ( ftruncate ( fd, (off_t) 0 ) == 0 ) {
// Write pid, not needed, but for completeness sake.
char buffer[64];
int length = snprintf ( buffer, 64, "%i", getpid () );
ssize_t l = 0;
while ( l < length ) {
l += write ( fd, &buffer[l], length - l );
}
}
return fd;
}
void remove_pid_file ( int fd )
{
if ( fd >= 0 ) {
if ( close ( fd ) ) {
fprintf ( stderr, "Failed to close pidfile: '%s'\n", strerror ( errno ) );
}
}
}
2015-02-03 07:21:59 +00:00
/**
* 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.
*/
2016-03-01 17:11:55 +00:00
int config_sanity_check ( void )
2015-02-03 07:21:59 +00:00
{
2015-07-28 20:22:18 +00:00
int found_error = FALSE;
2015-09-19 10:21:30 +00:00
GString *msg = g_string_new (
"<big><b>The configuration failed to validate:</b></big>\n" );
if ( config.matching ) {
if ( g_strcmp0 ( config.matching, "regex" ) == 0 ) {
config.matching_method = MM_REGEX;
}
else if ( g_strcmp0 ( config.matching, "glob" ) == 0 ) {
config.matching_method = MM_GLOB;
}
else if ( g_strcmp0 ( config.matching, "fuzzy" ) == 0 ) {
config.matching_method = MM_FUZZY;
}
else if ( g_strcmp0 ( config.matching, "normal" ) == 0 ) {
config.matching_method = MM_NORMAL;;
}
else {
g_string_append_printf ( msg, "\t<b>config.matching</b>=%s is not a valid matching strategy.\nValid options are: glob, regex, fuzzy or normal.\n",
config.matching );
found_error = 1;
}
}
2015-02-03 07:21:59 +00:00
if ( config.element_height < 1 ) {
2015-09-19 10:57:48 +00:00
g_string_append_printf ( msg, "\t<b>config.element_height</b>=%d is invalid. An element needs to be atleast 1 line high.\n",
config.element_height );
2015-07-28 20:22:18 +00:00
config.element_height = 1;
found_error = TRUE;
2015-02-03 07:21:59 +00:00
}
if ( config.menu_columns == 0 ) {
2015-09-19 10:57:48 +00:00
g_string_append_printf ( msg, "\t<b>config.menu_columns</b>=%d is invalid. You need at least one visible column.\n",
config.menu_columns );
2015-07-28 20:22:18 +00:00
config.menu_columns = 1;
found_error = TRUE;
2015-02-03 07:21:59 +00:00
}
if ( config.menu_width == 0 ) {
g_string_append_printf ( msg, "<b>config.menu_width</b>=0 is invalid. You cannot have a window with no width." );
2015-07-28 20:22:18 +00:00
config.menu_columns = 50;
found_error = TRUE;
2015-02-03 07:21:59 +00:00
}
if ( !( config.location >= WL_CENTER && config.location <= WL_WEST ) ) {
2015-09-19 10:57:48 +00:00
g_string_append_printf ( msg, "\t<b>config.location</b>=%d is invalid. Value should be between %d and %d.\n",
config.location, WL_CENTER, WL_WEST );
2015-07-28 20:22:18 +00:00
config.location = WL_CENTER;
found_error = 1;
}
// Check size
{
workarea mon;
2016-10-14 14:46:54 +00:00
if ( !monitor_active ( &mon ) ) {
const char *name = config.monitor;
if ( name && name[0] == '-' ) {
int index = name[1] - '0';
if ( index < 5 && index > 0 ) {
name = monitor_position_entries[index - 1];
}
}
g_string_append_printf ( msg, "\t<b>config.monitor</b>=%s Could not find monitor.\n", name );
found_error = TRUE;
}
}
if ( config.menu_font ) {
PangoFontDescription *pfd = pango_font_description_from_string ( config.menu_font );
const char *fam = pango_font_description_get_family ( pfd );
int size = pango_font_description_get_size ( pfd );
if ( fam == NULL || size == 0 ) {
g_string_append_printf ( msg, "Pango failed to parse font: '%s'\n", config.menu_font );
g_string_append_printf ( msg, "Got font family: <b>%s</b> at size <b>%d</b>\n", fam ? fam : "{unknown}", size );
config.menu_font = NULL;
found_error = TRUE;
}
pango_font_description_free ( pfd );
}
if ( g_strcmp0 ( config.monitor, "-3" ) == 0 ) {
// On -3, set to location 1.
config.location = 1;
config.fullscreen = 0;
}
2015-07-28 20:22:18 +00:00
if ( found_error ) {
g_string_append ( msg, "Please update your configuration." );
rofi_view_error_dialog ( msg->str, TRUE );
2016-02-19 18:50:48 +00:00
return TRUE;
2015-02-03 07:21:59 +00:00
}
2015-07-28 20:22:18 +00:00
g_string_free ( msg, TRUE );
2016-02-19 18:50:48 +00:00
return FALSE;
2015-02-03 07:21:59 +00:00
}
2015-11-27 12:01:25 +00:00
char *rofi_expand_path ( const char *input )
{
char **str = g_strsplit ( input, G_DIR_SEPARATOR_S, -1 );
for ( unsigned int i = 0; str && str[i]; i++ ) {
// Replace ~ with current user homedir.
if ( str[i][0] == '~' && str[i][1] == '\0' ) {
g_free ( str[i] );
str[i] = g_strdup ( g_get_home_dir () );
}
// If other user, ask getpwnam.
else if ( str[i][0] == '~' ) {
struct passwd *p = getpwnam ( &( str[i][1] ) );
if ( p != NULL ) {
g_free ( str[i] );
str[i] = g_strdup ( p->pw_dir );
}
}
2015-11-28 11:59:10 +00:00
else if ( i == 0 ) {
char * s = str[i];
if ( input[0] == G_DIR_SEPARATOR ) {
str[i] = g_strdup_printf ( "%s%s", G_DIR_SEPARATOR_S, s );
g_free ( s );
}
}
2015-11-27 12:01:25 +00:00
}
char *retv = g_build_filenamev ( str );
g_strfreev ( str );
return retv;
}
#define MIN3( a, b, c ) ( ( a ) < ( b ) ? ( ( a ) < ( c ) ? ( a ) : ( c ) ) : ( ( b ) < ( c ) ? ( b ) : ( c ) ) )
unsigned int levenshtein ( const char *needle, const char *haystack )
{
2016-10-28 21:28:49 +00:00
const size_t needlelen = g_utf8_strlen ( needle, -1 );
const size_t haystacklen = g_utf8_strlen ( haystack, -1 );
unsigned int column[needlelen + 1];
2016-10-28 21:28:49 +00:00
for ( unsigned int y = 0; y <= needlelen; y++ ) {
column[y] = y;
}
2016-10-28 21:28:49 +00:00
for ( unsigned int x = 1; x <= haystacklen; x++ ) {
const char *needles = needle;
column[0] = x;
gunichar haystackc = g_utf8_get_char ( haystack );
if ( !config.case_sensitive ) {
haystackc = g_unichar_tolower ( haystackc );
}
2016-10-28 21:28:49 +00:00
for ( unsigned int y = 1, lastdiag = x - 1; y <= needlelen; y++ ) {
gunichar needlec = g_utf8_get_char ( needles );
if ( !config.case_sensitive ) {
needlec = g_unichar_tolower ( needlec );
}
2016-10-28 21:28:49 +00:00
unsigned int olddiag = column[y];
column[y] = MIN3 ( column[y] + 1, column[y - 1] + 1, lastdiag + ( needlec == haystackc ? 0 : 1 ) );
lastdiag = olddiag;
needles = g_utf8_next_char ( needles );
}
haystack = g_utf8_next_char ( haystack );
}
return column[needlelen];
}
char * rofi_latin_to_utf8_strdup ( const char *input, gssize length )
{
gsize slength = 0;
return g_convert_with_fallback ( input, length, "UTF-8", "latin1", "\uFFFD", NULL, &slength, NULL );
}
char * rofi_force_utf8 ( gchar *start, ssize_t length )
{
if ( start == NULL ) {
return NULL;
}
const char *data = start;
const char *end;
GString *string;
if ( g_utf8_validate ( data, length, &end ) ) {
return g_memdup ( start, length + 1 );
}
string = g_string_sized_new ( length + 16 );
do {
/* Valid part of the string */
g_string_append_len ( string, data, end - data );
/* Replacement character */
g_string_append ( string, "\uFFFD" );
length -= ( end - data ) + 1;
2016-04-10 12:30:13 +00:00
data = end + 1;
} while ( !g_utf8_validate ( data, length, &end ) );
if ( length ) {
g_string_append_len ( string, data, length );
}
return g_string_free ( string, FALSE );
}