2009-12-01 02:53:03 +03: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 15:32:24 +03:00
# include "lib/cmdline/cmdline.h"
2009-12-01 02:53:03 +03:00
int main ( int argc , const char * argv [ ] )
{
const char * sequence = " " ;
poptContext pc ;
char * buff ;
TALLOC_CTX * ctx = talloc_stackframe ( ) ;
2021-01-13 15:32:24 +03:00
bool ok ;
2009-12-01 02:53:03 +03:00
struct poptOption long_options [ ] = {
POPT_AUTOHELP
POPT_COMMON_VERSION
POPT_TABLEEND
} ;
2015-03-21 22:00:06 +03:00
smb_init_locale ( ) ;
2009-12-01 02:53:03 +03:00
2021-01-13 15:32:24 +03: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 02:53:03 +03:00
poptSetOtherOptionHelp ( pc , " [OPTION...] <sequence-string> " ) ;
while ( poptGetNextOpt ( pc ) ! = - 1 ) ;
sequence = poptGetArg ( pc ) ;
if ( sequence = = NULL ) {
fprintf ( stderr , " ERROR: missing sequence string \n " ) ;
return 1 ;
}
2011-07-28 12:33:15 +04:00
2010-10-29 08:06:36 +04:00
lp_set_cmdline ( " log level " , " 0 " ) ;
2009-12-01 02:53:03 +03:00
while ( next_token_talloc ( ctx , & sequence , & buff , NULL ) ) {
printf ( " [%s] \n " , buff ) ;
}
2019-08-19 14:29:03 +03:00
poptFreeContext ( pc ) ;
2009-12-01 02:53:03 +03:00
talloc_free ( ctx ) ;
return 0 ;
}