Nilorea Library
C utilities for networking, threading, graphics
ex_common.c

Nilorea Library common api test.

Nilorea Library common api test

Author
Castagnier Mickael
Version
1.0
Date
03/01/2019
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include "nilorea/n_log.h"
#include "nilorea/n_str.h"
#ifndef __windows__
#include <sys/wait.h>
#endif
void usage(void)
{
fprintf( stderr, " -v version\n"
" -V log level: LOG_INFO, LOG_NOTICE, LOG_ERR, LOG_DEBUG\n"
" -h help\n" );
}
void process_args( int argc, char **argv )
{
int getoptret = 0,
log_level = LOG_DEBUG ; /* default log level */
/* Arguments optionnels */
/* -v version
* -V log level
* -h help
*/
while( ( getoptret = getopt( argc, argv, "hvV:" ) ) != EOF)
{
switch( getoptret )
{
case 'v' :
fprintf( stderr, "Date de compilation : %s a %s.\n", __DATE__, __TIME__ );
exit( 1 );
case 'V' :
if( !strncmp( "LOG_NULL", optarg, 5 ) )
{
log_level = LOG_NULL ;
}
else
{
if( !strncmp( "LOG_NOTICE", optarg, 6 ) )
{
log_level = LOG_NOTICE;
}
else
{
if( !strncmp( "LOG_INFO", optarg, 7 ) )
{
log_level = LOG_INFO;
}
else
{
if( !strncmp( "LOG_ERR", optarg, 5 ) )
{
log_level = LOG_ERR;
}
else
{
if( !strncmp( "LOG_DEBUG", optarg, 5 ) )
{
log_level = LOG_DEBUG;
}
else
{
fprintf( stderr, "%s n'est pas un niveau de log valide.\n", optarg );
exit( -1 );
}
}
}
}
}
break;
default :
case '?' :
{
if( optopt == 'V' )
{
fprintf( stderr, "\n Missing log level\n" );
}
else if( optopt == 'p' )
{
fprintf( stderr, "\n Missing port\n" );
}
else if( optopt != 's' )
{
fprintf( stderr, "\n Unknow missing option %c\n", optopt );
}
usage();
exit( 1 );
}
case 'h' :
{
usage();
exit( 1 );
}
}
}
set_log_level( log_level );
} /* void process_args( ... ) */
FORCE_INLINE void inlined_func( void )
{
n_log( LOG_DEBUG, "Inlined func" );
}
int main(int argc, char **argv)
{
/* processing args and set log_level */
process_args( argc, argv );
inlined_func();
n_log( LOG_INFO, "TRUE,true values: %d,%d / FALSE,false value: %d,%d", TRUE, true, FALSE, false );
n_log( LOG_INFO, "_str(\"TEST\")=\"%s\" , _str(NULL)=\"%s\"", _str( "TEST" ), _str( NULL ) );
n_log( LOG_INFO, "_strw(\"TEST\")=\"%s\" , _strw(NULL)=\"%s\"", _str( "TEST" ), _str( NULL ) );
N_STR *nstr = char_to_nstr( "TEST" );
n_log( LOG_INFO, "_nstr(nstrpointer)=\"%s\"", _nstr( nstr ) );
n_log( LOG_INFO, "_nstrp(nstrpointer)=\"%s\"", _nstrp( nstr ) );
free_nstr( &nstr );
n_log( LOG_INFO, "_nstr(nstrpointer_freed)=\"%s\"", _nstr( nstr ) );
n_log( LOG_INFO, "_nstrp(nstrpointer_freed)=\"%s\"", _nstrp( nstr ) );
char *data = NULL ;
__n_assert( data, n_log( LOG_INFO, "data is NULL" ) );
Malloc( data, char, 1024 );
__n_assert( data, n_log( LOG_INFO, "data is NULL" ) );
Free( data );
Malloc( data, char, 1024 );
Realloc( data, char, 2048 );
Free( data );
Malloc( data, char, 1024 );
Reallocz( data, char, 1024, 2048 );
FreeNoLog( data );
Alloca( data, 2048 );
//Free( data ); alloca should not be free else it's double freeing on exit
n_log( LOG_INFO, "next_odd(10):%d , next_odd(11):%d", next_odd( 10 ), next_odd( 11 ) );
n_log( LOG_INFO, "next_even(10):%d , next_even(11):%d", next_even( 10 ), next_even( 11 ) );
ifzero (0) endif ;
ifzero (1) endif ;
ifnull (data) endif ;
ifnull (NULL) endif ;
iffalse (FALSE) endif ;
iftrue (TRUE) endif ;
error:
if( get_error() )
{
n_log( LOG_INFO , "got an error while processing test" );
}
else
{
n_log( LOG_INFO , "All tests for checkerror() are OK" );
}
if( file_exist( argv[ 0 ] ) )
{
n_log( LOG_INFO, "%s exists !", argv[ 0 ] );
}
char *dir = NULL, *name = NULL ;
dir = get_prog_dir();
name = get_prog_name();
n_log( LOG_INFO, "From %s/%s", dir, name );
Free( dir );
Free( name );
N_STR *out = NULL ;
int ret = -1 ;
if( n_popen( "ls -ltr", 2048, (void *)&out, &ret ) == TRUE )
{
n_log( LOG_INFO, "ls returned %d : %s", ret, _nstr( out ) );
}
else
{
n_log( LOG_ERR, "popen s returned an error" );
}
free_nstr( &out );
char hidden_str[47]="";
N_HIDE_STR(hidden_str,'T', 'h', 'i', 's', ' ', 's', 't', 'r', 'i', 'n', 'g', ' ', 'w', 'i', 'l', 'l', ' ', 'b', 'e', ' ', 'h', 'i', 'd', 'd', 'e', 'n', ' ', 'i', 'n', ' ', 't', 'h', 'e', ' ', 'f', 'i', 'n', 'a', 'l', ' ', 'b', 'i', 'n', 'a', 'r', 'y','\0');
printf("hidden str:%s\n" , hidden_str);
#ifndef __windows__
n_log( LOG_INFO, "before system_nb( sleep 3 )" );
int pid=system_nb( "sleep 3", NULL, NULL );
n_log( LOG_INFO, "after system_nb( sleep 3 )" );
n_log( LOG_INFO, "wait for nb sys call" );
wait( &pid );
n_log( LOG_INFO, "done" );
#endif
n_abort( "Testing abort before exit" );
n_log( LOG_INFO, "abort done" );
exit( 0 );
}
#define FreeNoLog(__ptr)
Free Handler without log.
Definition: n_common.h:268
char * get_prog_name(void)
get current program name
Definition: n_common.c:145
#define get_error()
pop up errors if any
Definition: n_common.h:321
void N_HIDE_STR(char *buf,...)
store a hidden version of a string
Definition: n_common.c:371
#define Malloc(__ptr, __struct, __size)
Malloc Handler to get errors and set to 0.
Definition: n_common.h:183
#define __n_assert(__ptr, __ret)
macro to assert things
Definition: n_common.h:276
#define _str(__PTR)
define true
Definition: n_common.h:172
#define ifzero
error checker type if( 0 != toto )
Definition: n_common.h:303
pid_t system_nb(const char *command, int *infp, int *outfp)
Non blocking system call.
Definition: n_common.c:293
#define iffalse
error checker type if( toto == FALSE )
Definition: n_common.h:306
#define Reallocz(__ptr, __struct, __old_size, __size)
Realloc + zero new memory zone Handler to get errors.
Definition: n_common.h:236
#define next_odd(__val)
next odd helper
Definition: n_common.h:289
#define Alloca(__ptr, __size)
Malloca Handler to get errors and set to 0.
Definition: n_common.h:198
int n_popen(char *cmd, int read_buf_size, void **nstr_output, int *ret)
launch a command abd return output and status
Definition: n_common.c:185
#define endif
close a ifwhatever block
Definition: n_common.h:318
#define ifnull
error checker type if( !toto )
Definition: n_common.h:300
#define _nstrp(__PTR)
N_STR or NULL pointer for testing purposes.
Definition: n_common.h:180
#define next_even(__val)
next odd helper
Definition: n_common.h:292
char * get_prog_dir(void)
get current program running directory
Definition: n_common.c:109
#define FORCE_INLINE
FORCE_INLINE portable macro.
Definition: n_common.h:141
#define iftrue
error checker type if( toto == FALSE )
Definition: n_common.h:309
#define checkerror()
check for errors
Definition: n_common.h:312
void n_abort(char const *format,...)
abort program with a text
Definition: n_common.c:38
int n_daemonize(void)
Daemonize program.
Definition: n_common.c:236
#define init_error_check()
init error checking in a function
Definition: n_common.h:296
#define Realloc(__ptr, __struct, __size)
Realloc Handler to get errors.
Definition: n_common.h:217
int file_exist(const char *filename)
test if file exist and if it's readable
Definition: n_common.c:92
#define Free(__ptr)
Free Handler to get errors.
Definition: n_common.h:256
#define _nstr(__PTR)
N_STR or "NULL" string for logging purposes.
Definition: n_common.h:178
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
Definition: n_log.h:74
#define LOG_DEBUG
debug-level messages
Definition: n_log.h:66
#define LOG_ERR
error conditions
Definition: n_log.h:58
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
Definition: n_log.c:97
#define LOG_NOTICE
normal but significant condition
Definition: n_log.h:62
#define LOG_NULL
no log output
Definition: n_log.h:27
#define LOG_INFO
informational
Definition: n_log.h:64
#define free_nstr(__ptr)
free a N_STR structure and set the pointer to NULL
Definition: n_str.h:222
N_STR * char_to_nstr(const char *src)
Convert a char into a N_STR, short version.
Definition: n_str.c:273
A box including a string and his lenght.
Definition: n_str.h:173
Common headers and low-level hugly functions & define.
Generic log system.
N_STR and string function declaration.