2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) many different people.
|
2003-07-14 21:21:08 +00:00
|
|
|
* If you wrote this, please acknowledge your work.
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
2005-09-14 16:59:11 +00:00
|
|
|
#include "xregex.h"
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
char* FAST_FUNC regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2006-12-21 00:22:03 +00:00
|
|
|
int ret = regcomp(preg, regex, cflags);
|
|
|
|
if (ret) {
|
2001-03-16 22:47:14 +00:00
|
|
|
int errmsgsz = regerror(ret, preg, NULL, 0);
|
|
|
|
char *errmsg = xmalloc(errmsgsz);
|
|
|
|
regerror(ret, preg, errmsg, errmsgsz);
|
2006-12-21 13:24:58 +00:00
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC xregcomp(regex_t *preg, const char *regex, int cflags)
|
2006-12-21 13:24:58 +00:00
|
|
|
{
|
|
|
|
char *errmsg = regcomp_or_errmsg(preg, regex, cflags);
|
|
|
|
if (errmsg) {
|
2008-08-09 16:15:14 +00:00
|
|
|
bb_error_msg_and_die("bad regex '%s': %s", regex, errmsg);
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|
|
|
|
}
|