2014-01-27 16:15:05 -05:00
|
|
|
/**
|
|
|
|
* simpleswitcher
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
|
|
|
* Copyright 2013-2014 Qball Cow <qball@gmpclient.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __QC_MODE__
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <X11/X.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "simpleswitcher.h"
|
|
|
|
#include "profile-dialog.h"
|
|
|
|
|
|
|
|
static inline int execshprofile( const char *profile )
|
|
|
|
{
|
|
|
|
return execlp( config.terminal_emulator, config.terminal_emulator, "-e","switch_profile.sh", profile, NULL );
|
|
|
|
}
|
|
|
|
// execute sub-process
|
|
|
|
static pid_t exec_profile( const char *cmd )
|
|
|
|
{
|
|
|
|
if ( !cmd || !cmd[0] ) return -1;
|
|
|
|
|
|
|
|
signal( SIGCHLD, catch_exit );
|
|
|
|
pid_t pid = fork();
|
|
|
|
|
|
|
|
if ( !pid ) {
|
|
|
|
setsid();
|
|
|
|
execshprofile( cmd );
|
|
|
|
exit( EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
|
|
|
|
return pid;
|
|
|
|
}
|
2014-02-03 16:49:07 -05:00
|
|
|
static inline char ** add_elements( char **retv, char *element, unsigned int *retv_index )
|
2014-01-27 16:15:05 -05:00
|
|
|
{
|
|
|
|
retv = realloc( retv, ( ( *retv_index )+2 )*sizeof( char* ) );
|
|
|
|
retv[( *retv_index )] = element;
|
|
|
|
retv[( *retv_index )+1] = NULL;
|
|
|
|
( *retv_index )++;
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char ** get_profile ( )
|
|
|
|
{
|
|
|
|
unsigned int retv_index = 0;
|
|
|
|
char *path;
|
|
|
|
char **retv = NULL;
|
|
|
|
|
|
|
|
if ( getenv( "HOME" ) == NULL ) return NULL;
|
|
|
|
|
|
|
|
const char *hd = getenv( "HOME" );
|
|
|
|
path = allocate( strlen( hd ) + strlen( ".switch_profile.conf" )+3 );
|
|
|
|
sprintf( path, "%s/%s", hd, ".switch_profile.conf" );
|
|
|
|
FILE *fd = fopen ( path, "r" );
|
|
|
|
|
|
|
|
if ( fd != NULL ) {
|
|
|
|
char buffer[1024];
|
|
|
|
char *element = NULL;
|
|
|
|
int enabled = 0;
|
|
|
|
|
|
|
|
while ( fgets( buffer,1024,fd ) != NULL ) {
|
|
|
|
buffer[strlen( buffer )-1] = '\0';
|
|
|
|
char *entry = index( buffer, '=' );
|
|
|
|
|
|
|
|
// skip
|
|
|
|
if ( entry == NULL ) {
|
|
|
|
if ( element != NULL && enabled ) {
|
|
|
|
retv = add_elements( retv, element, &retv_index );
|
|
|
|
}
|
|
|
|
|
|
|
|
element = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
*entry = '\0';
|
|
|
|
|
|
|
|
if ( element == NULL ) {
|
|
|
|
element = strdup( buffer );
|
|
|
|
enabled = strtol( entry+1, NULL, 10 );
|
|
|
|
} else {
|
|
|
|
if ( strncmp( buffer, element, strlen( element ) ) == 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// New entry? Store old one
|
|
|
|
if ( enabled ) {
|
|
|
|
retv = add_elements( retv, element, &retv_index );
|
|
|
|
}
|
|
|
|
|
|
|
|
element = strdup( buffer );
|
|
|
|
enabled = strtol( entry+1, NULL, 10 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( element != NULL && enabled ) {
|
|
|
|
retv = add_elements( retv, element, &retv_index );
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose( fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
free( path );
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwitcherMode profile_switcher_dialog ( char **input )
|
|
|
|
{
|
|
|
|
SwitcherMode retv = MODE_EXIT;
|
|
|
|
// act as a launcher
|
|
|
|
char **cmd_list = get_profile( );
|
|
|
|
|
|
|
|
if ( cmd_list == NULL ) {
|
2014-02-03 16:49:07 -05:00
|
|
|
unsigned int retv_index = 0;
|
|
|
|
cmd_list = add_elements( cmd_list, "No profiles found", &retv_index );
|
2014-01-27 16:15:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int shift=0;
|
2014-02-01 08:03:23 -05:00
|
|
|
int selected_line = 0;
|
|
|
|
int retvm = menu( cmd_list, input, "profile:", NULL, &shift,token_match, NULL, &selected_line );
|
2014-01-27 16:15:05 -05:00
|
|
|
|
2014-02-01 08:03:23 -05:00
|
|
|
if ( retvm == MENU_NEXT ) {
|
2014-01-27 16:15:05 -05:00
|
|
|
retv = NEXT_DIALOG;
|
2014-02-01 08:03:23 -05:00
|
|
|
} else if ( retvm == MENU_OK && cmd_list[selected_line] != NULL ) {
|
|
|
|
exec_profile( cmd_list[selected_line] );
|
2014-01-27 16:15:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for ( int i=0; cmd_list[i] != NULL; i++ ) {
|
|
|
|
free( cmd_list[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
free( cmd_list );
|
|
|
|
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
#endif //__QC_MODE__
|