X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2FmainWin%2Fsrc%2Finit_module.c;h=ed724a42439717446a443158760ae2d75339e9c6;hb=2061e03dd5e8aa09fbed5b08ae702fe2eb33be06;hp=2d86698b7093b0f5be481173ea835c37cd46ab57;hpb=fb87279eb8b98f90792165fcc0eee9981c930683;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/mainWin/src/init_module.c b/ltt/branches/poly/lttv/modules/gui/mainWin/src/init_module.c index 2d86698b..ed724a42 100644 --- a/ltt/branches/poly/lttv/modules/gui/mainWin/src/init_module.c +++ b/ltt/branches/poly/lttv/modules/gui/mainWin/src/init_module.c @@ -9,27 +9,46 @@ #include -#include -#include #include - +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "interface.h" #include "support.h" -#include "mainWindow.h" +#include #include "callbacks.h" /* global variable */ -systemView * gSysView; +//LttvTracesetStats * gTracesetContext = NULL; +//static LttvTraceset * traceset; +WindowCreationData gWinCreationData; -typedef view_constructor (* constructor)(); -constructor get_constructor = NULL; -typedef void (*call_Event_Selected_Hook)(void * call_data); -call_Event_Selected_Hook selected_hook = NULL; -GModule *gm; -view_constructor gConstructor = NULL; +/** Array containing instanced objects. */ +GSList * Main_Window_List = NULL ; -int Window_Creation_Hook(void *hook_data, void *call_data); +LttvHooks + *main_hooks; + +/* Initial trace from command line */ +LttvTrace *gInit_Trace = NULL; + +static char *a_trace; + +void lttv_trace_option(void *hook_data) +{ + LttTrace *trace; + + trace = ltt_trace_open(a_trace); + if(trace == NULL) g_critical("cannot open trace %s", a_trace); + gInit_Trace = lttv_trace_new(trace); +} /***************************************************************************** * Functions for module loading/unloading * @@ -40,37 +59,11 @@ int Window_Creation_Hook(void *hook_data, void *call_data); * This function initializes the GUI. */ -typedef struct _WindowCreationData { - int argc; - char ** argv; -} WindowCreationData; - -G_MODULE_EXPORT void init(LttvModule *self, int argc, char *argv[]) { - - LttvAttributeValue value; - WindowCreationData *Window_Creation_Data = g_new(WindowCreationData, 1); - - Window_Creation_Data->argc = argc; - Window_Creation_Data->argv = argv; - - - lttv_iattribute_find_by_path(LTTV_IATTRIBUTE(lttv_global_attributes()), - "/hooks/main/before", LTTV_POINTER, &value); - - lttv_hooks_add(*(value.v_pointer), Window_Creation_Hook, Window_Creation_Data); - -} - -int Window_Creation_Hook(void *hook_data, void *call_data) +static gboolean Window_Creation_Hook(void *hook_data, void *call_data) { - GModule *gm; - GtkWidget * ToolMenuTitle_menu, *insert_view; - GtkWidget *window1; - mainWindow * mw = g_new(mainWindow, 1); - gSysView = g_new(systemView, 1); - WindowCreationData *Window_Creation_Data = (WindowCreationData*)call_data; - - g_critical("GUI init()"); + WindowCreationData* Window_Creation_Data = (WindowCreationData*)hook_data; + + g_critical("GUI Window_Creation_Hook()"); #ifdef ENABLE_NLS bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); @@ -82,57 +75,109 @@ int Window_Creation_Hook(void *hook_data, void *call_data) add_pixmap_directory (PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps"); add_pixmap_directory ("pixmaps"); + add_pixmap_directory ("modules/gui/mainWin/pixmaps"); - /* - * The following code was added by Glade to create one of each component - * (except popup menus), just so that you see something after building - * the project. Delete any components that you don't want shown initially. - */ - window1 = create_MWindow (); - gtk_widget_show (window1); - - mw->MWindow = window1; - mw->SystemView = gSysView; - mw->Tab = NULL; - mw->CurrentTab = NULL; - // mw->Attributes = lttv_attributes_new(); - - //test - - gm = g_module_open("/home1/yangxx/poly/lttv/modules/libguiEvents.la",0); - printf("Main : the address of gm : %d\n", gm); - if(!g_module_symbol(gm, "get_constructor", (gpointer)&get_constructor)){ - g_error("can not get constructor\n"); - } - if(!g_module_symbol(gm, "call_Event_Selected_Hook", (gpointer)&selected_hook)){ - g_error("can not get selected hook\n"); - } - - gConstructor = get_constructor(); - ToolMenuTitle_menu = lookup_widget(mw->MWindow,"ToolMenuTitle_menu"); - insert_view = gtk_menu_item_new_with_mnemonic ("insert_view"); - gtk_widget_show (insert_view); - gtk_container_add (GTK_CONTAINER (ToolMenuTitle_menu), insert_view); - g_signal_connect ((gpointer) insert_view, "activate", - G_CALLBACK (insertViewTest), - NULL); - //end - - gSysView->EventDB = NULL; - gSysView->SystemInfo = NULL; - gSysView->Options = NULL; - gSysView->Window = mw; - gSysView->Next = NULL; - - g_object_set_data(G_OBJECT(window1), "systemView", (gpointer)gSysView); - g_object_set_data(G_OBJECT(window1), "mainWindow", (gpointer)mw); + constructMainWin(NULL, Window_Creation_Data, TRUE); gtk_main (); + + return FALSE; +} + + + + +G_MODULE_EXPORT void init(LttvModule *self, int argc, char *argv[]) { + + LttvAttributeValue value; + + // Global attributes only used for interaction with main() here. + LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes()); + + g_critical("GUI init()"); + + lttv_option_add("trace", 't', + "add a trace to the trace set to analyse", + "pathname of the directory containing the trace", + LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL); + + g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before", + LTTV_POINTER, &value)); + g_assert((main_hooks = *(value.v_pointer)) != NULL); + + gWinCreationData.argc = argc; + gWinCreationData.argv = argv; + + lttv_hooks_add(main_hooks, Window_Creation_Hook, &gWinCreationData); + } +void +mainWindow_free(mainWindow * mw) +{ + guint i, nb; + + if(mw){ + +g_critical("begin remove"); + lttv_hooks_destroy(mw->Traceset_Info->before_traceset); + lttv_hooks_destroy(mw->Traceset_Info->after_traceset); + lttv_hooks_destroy(mw->Traceset_Info->before_trace); + lttv_hooks_destroy(mw->Traceset_Info->after_trace); + lttv_hooks_destroy(mw->Traceset_Info->before_tracefile); + lttv_hooks_destroy(mw->Traceset_Info->after_tracefile); + lttv_hooks_destroy(mw->Traceset_Info->before_event); + lttv_hooks_destroy(mw->Traceset_Info->after_event); +g_critical("end remove"); + + if(mw->Traceset_Info->path != NULL) + g_free(mw->Traceset_Info->path); + if(mw->Traceset_Info->TracesetContext != NULL){ + lttv_context_fini(LTTV_TRACESET_CONTEXT(mw->Traceset_Info->TracesetContext)); + g_object_unref(mw->Traceset_Info->TracesetContext); + } + if(mw->Traceset_Info->traceset != NULL) { + nb = lttv_traceset_number(mw->Traceset_Info->traceset); + for(i = 0 ; i < nb ; i++) { + ltt_trace_close( + lttv_trace(lttv_traceset_get(mw->Traceset_Info->traceset, i))); + } + } + + lttv_traceset_destroy(mw->Traceset_Info->traceset); + + g_object_unref(mw->Attributes); + + g_free(mw->Traceset_Info); + mw->Traceset_Info = NULL; + + Main_Window_List = g_slist_remove(Main_Window_List, mw); + + g_hash_table_destroy(mw->hash_menu_item); + g_hash_table_destroy(mw->hash_toolbar_item); + + g_free(mw); + mw = NULL; + } +} + +void +mainWindow_Destructor(mainWindow * mw) +{ + if(GTK_IS_WIDGET(mw->MWindow)){ + gtk_widget_destroy(mw->MWindow); + // gtk_widget_destroy(mw->HelpContents); + // gtk_widget_destroy(mw->AboutBox); + mw = NULL; + } + //mainWindow_free called when the object mw in the widget is unref. + //mainWindow_free(mw); +} + + void destroy_walk(gpointer data, gpointer user_data) { - //GuiControlFlow_Destructor((ControlFlowData*)data); + mainWindow_Destructor((mainWindow*)data); } @@ -145,26 +190,18 @@ void destroy_walk(gpointer data, gpointer user_data) */ G_MODULE_EXPORT void destroy() { - WindowCreationData *Window_Creation_Data; - LttvAttributeValue value; - - g_critical("GUI destroy()"); - //int i; - - //ControlFlowData *Control_Flow_Data; - - - //g_slist_foreach(sControl_Flow_Data_List, destroy_walk, NULL ); - - lttv_iattribute_find_by_path(LTTV_IATTRIBUTE(lttv_global_attributes()), - "/hooks/main/before", LTTV_POINTER, &value); + LttvAttributeValue value; + LttvTrace *trace; - Window_Creation_Data = lttv_hooks_remove(*(value.v_pointer), - Window_Creation_Hook); + lttv_option_remove("trace"); - g_free(Window_Creation_Data); + lttv_hooks_remove_data(main_hooks, Window_Creation_Hook, &gWinCreationData); + g_critical("GUI destroy()"); + g_slist_foreach(Main_Window_List, destroy_walk, NULL ); + g_slist_free(Main_Window_List); + }