2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* util.c - useful functions
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-01-26 18:00:47 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-09-12 14:29:51 +02:00
|
|
|
* Copyright © 2006 Pierre Habouzit <madcoder@debian.org>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2007-09-12 14:29:51 +02:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
2007-09-28 13:42:13 +02:00
|
|
|
#include <limits.h>
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
2008-03-09 17:10:23 +01:00
|
|
|
/** Print error and exit with EXIT_FAILURE code
|
2008-01-12 23:02:41 +01:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2008-03-09 17:10:23 +01:00
|
|
|
_eprint(int line, const char *fct, const char *fmt, ...)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2008-03-09 17:10:23 +01:00
|
|
|
fprintf(stderr, "E: awesome: %s:%d: ", fct, line);
|
2007-09-05 20:15:00 +02:00
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2008-03-09 17:10:23 +01:00
|
|
|
/** Print error message on stderr
|
2008-01-12 23:02:41 +01:00
|
|
|
*/
|
2007-12-13 02:37:30 +01:00
|
|
|
void
|
2008-03-09 17:10:23 +01:00
|
|
|
_warn(int line, const char *fct, const char *fmt, ...)
|
2007-12-13 02:37:30 +01:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2008-03-09 17:10:23 +01:00
|
|
|
fprintf(stderr, "W: awesome: %s:%d: ", fct, line);
|
2007-12-13 02:37:30 +01:00
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2008-01-12 23:02:41 +01:00
|
|
|
/** Compute a value from a string containing
|
|
|
|
* an absolute or a relative number. If relative,
|
|
|
|
* add it to current_value.
|
|
|
|
* \param arg the string with the number
|
|
|
|
* \param current_value value to add the number if it's relative
|
|
|
|
* \return new value
|
|
|
|
*/
|
2007-09-14 13:43:51 +02:00
|
|
|
double
|
|
|
|
compute_new_value_from_arg(const char *arg, double current_value)
|
|
|
|
{
|
|
|
|
double delta;
|
|
|
|
|
|
|
|
if(arg && sscanf(arg, "%lf", &delta) == 1)
|
|
|
|
{
|
|
|
|
if(arg[0] == '+' || arg[0] == '-')
|
|
|
|
current_value += delta;
|
|
|
|
else
|
|
|
|
current_value = delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
return current_value;
|
|
|
|
}
|
2007-09-24 16:42:04 +02:00
|
|
|
|
2007-10-12 17:10:36 +02:00
|
|
|
/** Lookup for a function pointer from its name
|
2008-05-23 16:53:37 +02:00
|
|
|
* in the given name_func_link_t list.
|
|
|
|
* \param funcname Function name.
|
|
|
|
* \param list Function and name link list.
|
|
|
|
* \return Function pointer.
|
2007-10-12 17:10:36 +02:00
|
|
|
*/
|
|
|
|
void *
|
2008-01-12 14:34:53 +01:00
|
|
|
name_func_lookup(const char *funcname, const name_func_link_t *list)
|
2007-10-12 17:10:36 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(funcname && list)
|
|
|
|
for(i = 0; list[i].name; i++)
|
|
|
|
if(!a_strcmp(funcname, list[i].name))
|
|
|
|
return list[i].func;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-23 16:53:37 +02:00
|
|
|
/** Lookup for a function name from its pointer
|
|
|
|
* in the given name_func_link_t list.
|
|
|
|
* \param funcp Function pointer.
|
|
|
|
* \param list Function and name link list.
|
|
|
|
* \return Name of the function.
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
name_func_rlookup(void * funcp, const name_func_link_t *list)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(funcp && list)
|
|
|
|
for(i = 0; list[i].name; i++)
|
|
|
|
if(funcp == list[i].func)
|
|
|
|
return list[i].name;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-04-11 11:19:23 +02:00
|
|
|
position_t
|
2008-03-14 14:27:56 +01:00
|
|
|
position_get_from_str(const char *pos)
|
|
|
|
{
|
2008-04-10 11:33:09 +02:00
|
|
|
if(!a_strcmp(pos, "top"))
|
2008-03-14 14:27:56 +01:00
|
|
|
return Top;
|
2008-04-10 11:33:09 +02:00
|
|
|
else if(!a_strcmp(pos, "bottom"))
|
2008-03-14 14:27:56 +01:00
|
|
|
return Bottom;
|
2008-04-10 11:33:09 +02:00
|
|
|
else if(!a_strcmp(pos, "right"))
|
2008-03-14 14:27:56 +01:00
|
|
|
return Right;
|
2008-04-10 11:33:09 +02:00
|
|
|
else if(!a_strcmp(pos, "left"))
|
2008-03-14 14:27:56 +01:00
|
|
|
return Left;
|
2008-04-10 11:33:09 +02:00
|
|
|
else if(!a_strcmp(pos, "auto"))
|
2008-03-14 17:18:48 +01:00
|
|
|
return Auto;
|
2008-03-14 14:27:56 +01:00
|
|
|
return Off;
|
|
|
|
}
|
|
|
|
|
2008-04-22 18:48:30 +02:00
|
|
|
char *
|
|
|
|
position_to_str(position_t p)
|
|
|
|
{
|
|
|
|
switch(p)
|
|
|
|
{
|
|
|
|
case Top:
|
|
|
|
return a_strdup("top");
|
|
|
|
case Bottom:
|
|
|
|
return a_strdup("bottom");
|
|
|
|
case Right:
|
|
|
|
return a_strdup("right");
|
|
|
|
case Left:
|
|
|
|
return a_strdup("left");
|
|
|
|
case Auto:
|
|
|
|
return a_strdup("auto");
|
2008-04-23 13:22:44 +02:00
|
|
|
default:
|
|
|
|
return a_strdup("off");
|
2008-04-22 18:48:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-19 21:24:23 +02:00
|
|
|
/** \brief safe limited strdup.
|
|
|
|
*
|
|
|
|
* Copies at most min(<tt>n-1</tt>, \c l) characters from \c src into a newly
|
|
|
|
* allocated buffer, always adding a final \c \\0, and returns that buffer.
|
|
|
|
*
|
|
|
|
* \param[in] src source string.
|
|
|
|
* \param[in] l maximum number of chars to copy.
|
|
|
|
*
|
|
|
|
* \return a newly allocated buffer containing the first \c l chars of \c src.
|
|
|
|
*/
|
|
|
|
char* a_strndup(const char* src, ssize_t l)
|
|
|
|
{
|
|
|
|
char* _tmpStr = p_new(char, l + 1);
|
|
|
|
if (_tmpStr)
|
|
|
|
{
|
|
|
|
a_strncpy(_tmpStr, l + 1, src, l);
|
|
|
|
_tmpStr[l] = 0;
|
|
|
|
}
|
|
|
|
return _tmpStr;
|
|
|
|
}
|
|
|
|
|
2008-04-11 11:19:53 +02:00
|
|
|
fuzzy_t
|
2008-04-09 20:20:48 +02:00
|
|
|
fuzzy_get_from_str(const char *str)
|
|
|
|
{
|
|
|
|
if(!a_strcmp(str, "true") || !a_strcmp(str, "yes"))
|
|
|
|
return Yes;
|
|
|
|
else if(!a_strcmp(str, "false") || !a_strcmp(str, "no"))
|
|
|
|
return No;
|
|
|
|
return Maybe;
|
|
|
|
}
|
|
|
|
|
2007-09-24 16:42:04 +02:00
|
|
|
/** \brief safe limited strcpy.
|
|
|
|
*
|
|
|
|
* Copies at most min(<tt>n-1</tt>, \c l) characters from \c src into \c dst,
|
|
|
|
* always adding a final \c \\0 in \c dst.
|
|
|
|
*
|
|
|
|
* \param[in] dst destination buffer.
|
|
|
|
* \param[in] n size of the buffer. Negative sizes are allowed.
|
|
|
|
* \param[in] src source string.
|
|
|
|
* \param[in] l maximum number of chars to copy.
|
|
|
|
*
|
|
|
|
* \return minimum of \c src \e length and \c l.
|
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
ssize_t
|
|
|
|
a_strncpy(char *dst, ssize_t n, const char *src, ssize_t l)
|
2007-09-24 16:42:04 +02:00
|
|
|
{
|
|
|
|
ssize_t len = MIN(a_strlen(src), l);
|
|
|
|
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
ssize_t dlen = MIN(n - 1, len);
|
|
|
|
memcpy(dst, src, dlen);
|
|
|
|
dst[dlen] = '\0';
|
|
|
|
}
|
|
|
|
|
2007-10-03 17:26:14 +02:00
|
|
|
return len;
|
|
|
|
}
|
2007-09-24 16:44:36 +02:00
|
|
|
|
|
|
|
/** \brief safe strcpy.
|
|
|
|
*
|
|
|
|
* Copies at most <tt>n-1</tt> characters from \c src into \c dst, always
|
|
|
|
* adding a final \c \\0 in \c dst.
|
|
|
|
*
|
|
|
|
* \param[in] dst destination buffer.
|
|
|
|
* \param[in] n size of the buffer. Negative sizes are allowed.
|
|
|
|
* \param[in] src source string.
|
|
|
|
* \return \c src \e length. If this value is \>= \c n then the copy was
|
|
|
|
* truncated.
|
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
ssize_t
|
|
|
|
a_strcpy(char *dst, ssize_t n, const char *src)
|
2007-09-24 16:44:36 +02:00
|
|
|
{
|
|
|
|
ssize_t len = a_strlen(src);
|
|
|
|
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
ssize_t dlen = MIN(n - 1, len);
|
|
|
|
memcpy(dst, src, dlen);
|
|
|
|
dst[dlen] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
/** Execute a command and replace the current process.
|
|
|
|
* \param cmd The command to execute.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
a_exec(const char *cmd)
|
|
|
|
{
|
|
|
|
char *args, *path;
|
|
|
|
|
|
|
|
/* Ignore the leading spaces if any */
|
|
|
|
while(cmd[0] && cmd[0] == ' ') cmd++;
|
|
|
|
|
|
|
|
/* Get the beginning of the arguments */
|
|
|
|
args = strchr(cmd, ' ');
|
|
|
|
if(args)
|
|
|
|
path = a_strndup(cmd, args - cmd);
|
|
|
|
else
|
|
|
|
path = a_strndup(cmd, a_strlen(cmd));
|
|
|
|
|
|
|
|
execlp(path, cmd, NULL);
|
|
|
|
|
|
|
|
p_delete(&path);
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|