%{ // Svc_Conf.y,v 4.45 2003/02/20 17:04:18 ossama Exp #include "ace/Svc_Conf.h" #if (ACE_USES_CLASSIC_SVC_CONF == 1) #include "ace/ARGV.h" #include "ace/Module.h" #include "ace/Stream.h" #include "ace/Service_Types.h" ACE_RCSID (ace, Svc_Conf_y, "Svc_Conf.y,v 4.45 2003/02/20 17:04:18 ossama Exp") // Prototypes. static ACE_Module_Type *ace_get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type, int & yyerrno); static ACE_Module_Type *ace_get_module (ACE_Static_Node *str_rec, const ACE_TCHAR *svc_name, int & yyerrno); #define YYDEBUG_LEXER_TEXT (yytext[yyleng] = '\0', yytext) // Force the pretty debugging code to compile. // #define YYDEBUG 1 %} %token ACE_DYNAMIC ACE_STATIC ACE_SUSPEND ACE_RESUME ACE_REMOVE ACE_USTREAM %token ACE_MODULE_T ACE_STREAM_T ACE_SVC_OBJ_T ACE_ACTIVE ACE_INACTIVE %token ACE_PATHNAME ACE_IDENT ACE_STRING %start svc_config_entries %type ACE_IDENT ACE_STRING ACE_PATHNAME pathname parameters_opt %type type status %type dynamic static suspend resume remove module_list stream %type stream_modules module svc_config_entry %type stream_ops %type svc_location %type svc_initializer // Generate a pure (reentrant) parser -- GNU Bison only %pure_parser %% svc_config_entries : svc_config_entries svc_config_entry { if ($2 != 0) { $2->apply (ACE_SVC_CONF_PARAM->yyerrno); delete $2; } ACE_SVC_CONF_PARAM->obstack.release (); } | svc_config_entries error { ACE_SVC_CONF_PARAM->obstack.release (); } | /* EMPTY */ ; svc_config_entry : dynamic | static | suspend | resume | remove | stream ; dynamic : ACE_DYNAMIC svc_location parameters_opt { if ($2 != 0) $$ = new ACE_Dynamic_Node ($2, $3); else $$ = 0; } ; static : ACE_STATIC ACE_IDENT parameters_opt { $$ = new ACE_Static_Node ($2, $3); } ; suspend : ACE_SUSPEND ACE_IDENT { $$ = new ACE_Suspend_Node ($2); } ; resume : ACE_RESUME ACE_IDENT { $$ = new ACE_Resume_Node ($2); } ; remove : ACE_REMOVE ACE_IDENT { $$ = new ACE_Remove_Node ($2); } ; stream : ACE_USTREAM stream_ops stream_modules { $$ = new ACE_Stream_Node ($2, $3); } | ACE_USTREAM ACE_IDENT { $$ = new ACE_Static_Node ($2); } stream_modules { $$ = new ACE_Dummy_Node ($3, $4); } ; stream_ops : dynamic { } | static { } ; stream_modules : '{' { // Initialize left context... $$ = $0; } module_list '}' { $$ = $3; } | /* EMPTY */ { $$ = 0; } ; module_list : module_list module { if ($2 != 0) { $2->link ($1); $$ = $2; } } | /* EMPTY */ { $$ = 0; } ; module : dynamic { ACE_Static_Node *svc_type = $1; if (svc_type != 0) { ACE_Static_Node *module = $-1; ACE_ARGV args (svc_type->parameters ()); ACE_Module_Type *mt = ace_get_module (module, svc_type, ACE_SVC_CONF_PARAM->yyerrno); ACE_Stream_Type *st = ACE_dynamic_cast (ACE_Stream_Type *, ACE_const_cast (ACE_Service_Type_Impl *, module->record ()->type ())); if (mt->init (args.argc (), args.argv ()) == -1 || st->push (mt) == -1) { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("dynamic initialization failed for Module %s\n"), svc_type->name ())); ACE_SVC_CONF_PARAM->yyerrno++; } } } | static { ACE_Module_Type *mt = ace_get_module ($-1, $1->name (), ACE_SVC_CONF_PARAM->yyerrno); if (((ACE_Stream_Type *) ($-1)->record ()->type ())->push (mt) == -1) { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("Problem with static\n"))); ACE_SVC_CONF_PARAM->yyerrno++; } } | suspend { ACE_Module_Type *mt = ace_get_module ($-1, $1->name (), ACE_SVC_CONF_PARAM->yyerrno); if (mt != 0) mt->suspend (); } | resume { ACE_Module_Type *mt = ace_get_module ($-1, $1->name (), ACE_SVC_CONF_PARAM->yyerrno); if (mt != 0) mt->resume (); } | remove { ACE_Static_Node *stream = $-1; ACE_Static_Node *module = $1; ACE_Module_Type *mt = ace_get_module (stream, module->name (), ACE_SVC_CONF_PARAM->yyerrno); ACE_Stream_Type *st = ACE_dynamic_cast (ACE_Stream_Type *, ACE_const_cast (ACE_Service_Type_Impl *, stream->record ()->type ())); if (mt != 0 && st->remove (mt) == -1) { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("cannot remove Module_Type %s from STREAM_Type %s\n"), module->name (), stream->name ())); ACE_SVC_CONF_PARAM->yyerrno++; } } ; svc_location : ACE_IDENT type svc_initializer status { u_int flags = ACE_Service_Type::DELETE_THIS | ($3->dispose () == 0 ? 0 : ACE_Service_Type::DELETE_OBJ); ACE_Service_Object_Exterminator gobbler = 0; void *sym = $3->symbol (ACE_SVC_CONF_PARAM->yyerrno, &gobbler); if (sym != 0) { ACE_Service_Type_Impl *stp = ACE_Service_Config::create_service_type_impl ($1, $2, sym, flags, gobbler); if (stp == 0) ++ACE_SVC_CONF_PARAM->yyerrno; $$ = new ACE_Service_Type ($1, stp, $3->dll (), $4); } else { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("Unable to find service: %s\n"), $1)); ++ACE_SVC_CONF_PARAM->yyerrno; $$ = 0; } delete $3; } ; status : ACE_ACTIVE { $$ = 1; } | ACE_INACTIVE { $$ = 0; } | /* EMPTY */ { $$ = 1; } ; svc_initializer : pathname ':' ACE_IDENT { $$ = new ACE_Object_Node ($1, $3); } | pathname ':' ACE_IDENT '(' ')' { $$ = new ACE_Function_Node ($1, $3); } | ':' ACE_IDENT '(' ')' { $$ = new ACE_Static_Function_Node ($2); } ; type : ACE_MODULE_T '*' { $$ = ACE_MODULE_T; } | ACE_SVC_OBJ_T '*' { $$ = ACE_SVC_OBJ_T; } | ACE_STREAM_T '*' { $$ = ACE_STREAM_T; } ; parameters_opt : ACE_STRING | /* EMPTY */ { $$ = 0; } ; pathname : ACE_PATHNAME | ACE_IDENT | ACE_STRING ; %% // Prints the error string to standard output. Cleans up the error // messages. void yyerror (int yyerrno, int yylineno, const ACE_TCHAR *s) { #if defined (ACE_NLOGGING) ACE_UNUSED_ARG (yyerrno); ACE_UNUSED_ARG (yylineno); ACE_UNUSED_ARG (s); #endif /* ACE_NLOGGING */ ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("[error %d] on line %d: %s\n"), yyerrno, yylineno, s)); } // Note that SRC_REC represents left context, which is the STREAM * // record. static ACE_Module_Type * ace_get_module (ACE_Static_Node *str_rec, const ACE_TCHAR *svc_name, int & yyerrno) { const ACE_Service_Type *sr = str_rec->record (); const ACE_Service_Type_Impl *type = sr->type (); ACE_Stream_Type *st = sr == 0 ? 0 : ACE_dynamic_cast (ACE_Stream_Type *, ACE_const_cast (ACE_Service_Type_Impl *, type)); ACE_Module_Type *mt = st == 0 ? 0 : st->find (svc_name); if (sr == 0 || st == 0 || mt == 0) { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("cannot locate Module_Type %s in STREAM_Type %s\n"), svc_name, str_rec->name ())); yyerrno++; } return mt; } static ACE_Module_Type * ace_get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type, int & yyerrno) { const ACE_Service_Type *sr = str_rec->record (); const ACE_Service_Type_Impl *type = sr->type (); ACE_Stream_Type *st = sr == 0 ? 0 : (ACE_Stream_Type *) type; const ACE_Service_Type *sv = svc_type->record (); type = sv->type (); ACE_Module_Type *mt = (ACE_Module_Type *) type; const ACE_TCHAR *module_type_name = svc_type->name (); if (sr == 0 || st == 0 || mt == 0) { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("cannot locate Module_Type %s or STREAM_Type %s\n"), module_type_name, str_rec->name ())); yyerrno++; } // Make sure that the Module has the same name as the // Module_Type object from the svc.conf file. ACE_Module *mp = (ACE_Module *) mt->object (); if (ACE_OS::strcmp (mp->name (), module_type_name) != 0) { ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("warning: assigning Module_Type name %s to Module %s since names differ\n"), module_type_name, mp->name ())); mp->name (module_type_name); } return mt; } #if defined (DEBUGGING) // Main driver program. int main (int argc, char *argv[]) { ACE_Svc_Conf_Param param (stdin); // Try to reopen any filename argument to use YYIN. if (argc > 1 && (yyin = freopen (argv[1], "r", stdin)) == 0) (void) ACE_OS::fprintf (stderr, ACE_LIB_TEXT ("usage: %s [file]\n"), argv[0]), ACE_OS::exit (1); return ::yyparse (¶m); } #endif /* DEBUGGING */ #endif /* ACE_USES_CLASSIC_SVC_CONF == 1 */