2009-12-01 00:53:03 +01:00
/*
Unix SMB / CIFS implementation .
test program for the next_token ( ) function
Copyright ( C ) 2009 Michael Adam
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 . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
/*
* Diagnostic output for " next_token() " .
*/
# include "includes.h"
2021-01-13 13:32:24 +01:00
# include "lib/cmdline/cmdline.h"
2009-12-01 00:53:03 +01:00
int main ( int argc , const char * argv [ ] )
{
const char * sequence = " " ;
poptContext pc ;
char * buff ;
TALLOC_CTX * ctx = talloc_stackframe ( ) ;
2021-09-10 07:14:40 +02:00
int opt ;
2021-01-13 13:32:24 +01:00
bool ok ;
2009-12-01 00:53:03 +01:00
struct poptOption long_options [ ] = {
POPT_AUTOHELP
POPT_COMMON_VERSION
POPT_TABLEEND
} ;
2015-03-21 20:00:06 +01:00
smb_init_locale ( ) ;
2009-12-01 00:53:03 +01:00
2021-01-13 13:32:24 +01:00
ok = samba_cmdline_init ( ctx ,
SAMBA_CMDLINE_CONFIG_CLIENT ,
false /* require_smbconf */ ) ;
if ( ! ok ) {
DBG_ERR ( " Failed to init cmdline parser! \n " ) ;
TALLOC_FREE ( ctx ) ;
exit ( 1 ) ;
}
pc = samba_popt_get_context ( getprogname ( ) ,
argc ,
argv ,
long_options ,
POPT_CONTEXT_KEEP_FIRST ) ;
if ( pc = = NULL ) {
DBG_ERR ( " Failed to setup popt context! \n " ) ;
TALLOC_FREE ( ctx ) ;
exit ( 1 ) ;
}
2009-12-01 00:53:03 +01:00
poptSetOtherOptionHelp ( pc , " [OPTION...] <sequence-string> " ) ;
2021-09-10 07:14:40 +02:00
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
case POPT_ERROR_BADOPT :
fprintf ( stderr , " \n Invalid option %s: %s \n \n " ,
poptBadOption ( pc , 0 ) , poptStrerror ( opt ) ) ;
poptPrintUsage ( pc , stderr , 0 ) ;
exit ( 1 ) ;
}
}
2009-12-01 00:53:03 +01:00
sequence = poptGetArg ( pc ) ;
if ( sequence = = NULL ) {
fprintf ( stderr , " ERROR: missing sequence string \n " ) ;
return 1 ;
}
2011-07-28 10:33:15 +02:00
2010-10-29 15:06:36 +11:00
lp_set_cmdline ( " log level " , " 0 " ) ;
2009-12-01 00:53:03 +01:00
while ( next_token_talloc ( ctx , & sequence , & buff , NULL ) ) {
printf ( " [%s] \n " , buff ) ;
}
2019-08-19 13:29:03 +02:00
poptFreeContext ( pc ) ;
2009-12-01 00:53:03 +01:00
talloc_free ( ctx ) ;
return 0 ;
}