35 #include <sys/types.h> 55 const char *orig_locale;
56 char origlocalformat[200] =
"", localformat[200] =
"";
63 int varies = 0, all_successful = 1, count = 0, count_fail = 0;
69 "Usage: test locale\n" 70 " Test thread safety of locale functions.\n";
81 if (!(localedir = opendir(
82 #
if defined(__FreeBSD__) || defined(__OpenBSD__) || defined( __NetBSD__ ) || defined(
__APPLE__)
88 ast_cli(a->
fd,
"No locales seem to exist on this platform.\n");
94 orig_locale = setlocale(LC_ALL,
NULL);
98 ast_strftime(origlocalformat,
sizeof(origlocalformat),
"%c", &atm);
100 while ((dent = readdir(localedir))) {
104 if (dent->d_name[0] ==
'.') {
108 setlocale(LC_ALL, dent->d_name);
109 ast_strftime(localformat,
sizeof(localformat),
"%c", &atm);
111 locallen = strlen(localformat) + 1;
112 namelen = strlen(dent->d_name) + 1;
115 if (!(tl =
ast_calloc(1,
sizeof(*tl) + locallen + namelen))) {
120 tl->localformat = tl->name + namelen;
126 if (!varies && strcmp(
AST_LIST_FIRST(&locales)->localformat, localformat)) {
131 setlocale(LC_ALL, orig_locale);
136 if (!strcmp(origlocalformat, localformat)) {
137 ast_cli(a->
fd,
"WARNING: the locales on your system don't differ. Install more locales if you want this test to mean something.\n");
145 ast_strftime(localformat,
sizeof(localformat),
"%c", &atm);
146 if (strcmp(localformat, tl->localformat)) {
147 ast_cli(a->
fd,
"WARNING: locale test fails for locale %s\n", tl->name);
157 if (all_successful) {
158 ast_cli(a->
fd,
"All %d locale tests successful\n", count);
159 }
else if (count_fail == count && count > 0) {
160 ast_cli(a->
fd,
"No locale tests successful out of %d tries\n", count);
161 }
else if (count > 0) {
162 ast_cli(a->
fd,
"Partial failure (%d/%d) for a %.0f%% failure rate\n", count_fail, count, count_fail * 100.0 / count);
164 ast_cli(a->
fd,
"No locales tested. Install more locales.\n");
#define AST_CLI_DEFINE(fn, txt,...)
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Asterisk main include file. File version handling, generic pbx functions.
#define AST_LIST_FIRST(head)
Returns the first entry contained in a list.
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
Unregister multiple commands.
descriptor for a cli entry.
struct ast_tm * ast_localtime(const struct timeval *timep, struct ast_tm *p_tm, const char *zone)
Timezone-independent version of localtime_r(3).
#define ast_cli_register_multiple(e, len)
Register multiple commands.
struct timeval ast_tvnow(void)
Returns current timeval. Meant to replace calls to gettimeofday().
void ast_cli(int fd, const char *fmt,...)
int args
This gets set in ast_cli_register()
Custom localtime functions for multiple timezones.
static char * handle_cli_test_locales(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static int unload_module(void)
A set of macros to manage forward-linked lists.
#define AST_LIST_REMOVE_HEAD(head, field)
Removes and returns the head entry from a list.
AST_LIST_HEAD_NOLOCK(contactliststruct, contact)
#define AST_LIST_INSERT_TAIL(head, elm, field)
Appends a list entry to the tail of a list.
#define AST_LIST_ENTRY(type)
Declare a forward link structure inside a list entry.
#define AST_LIST_HEAD_SET_NOLOCK(head, entry)
Initializes a list head structure with a specified first entry.
#define ast_calloc(num, len)
A wrapper for calloc()
const char * ast_setlocale(const char *locale)
Set the thread-local representation of the current locale.
int ast_strftime(char *buf, size_t len, const char *format, const struct ast_tm *tm)
Special version of strftime(3) that handles fractions of a second. Takes the same arguments as strfti...
Standard Command Line Interface.
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
static int load_module(void)
#define ASTERISK_GPL_KEY
The text the key() function should return.
Asterisk module definitions.
static struct ast_cli_entry cli_locales[]