Add support for module options
[lttv.git] / lttv / lttv / sync / sync_chain.h
diff --git a/lttv/lttv/sync/sync_chain.h b/lttv/lttv/sync/sync_chain.h
new file mode 100644 (file)
index 0000000..fa39b96
--- /dev/null
@@ -0,0 +1,77 @@
+/* This file is part of the Linux Trace Toolkit viewer
+ * Copyright (C) 2009 Benjamin Poirier <benjamin.poirier@polymtl.ca>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License Version 2 as
+ * published by the Free Software Foundation;
+ *
+ * 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., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#ifndef SYNC_CHAIN_H
+#define SYNC_CHAIN_H
+
+#include <glib.h>
+#include <sys/time.h>
+
+#include "event_processing.h"
+#include "event_matching.h"
+#include "event_analysis.h"
+
+typedef struct _SyncState
+{
+       unsigned int traceNb;
+       bool stats;
+       const char* graphs;
+
+       const ProcessingModule* processingModule;
+       void* processingData;
+       const MatchingModule* matchingModule;
+       void* matchingData;
+       const AnalysisModule* analysisModule;
+       void* analysisData;
+} SyncState;
+
+typedef struct
+{
+       const char* longName;
+       enum {
+               NO_ARG,
+               REQUIRED_ARG,
+               //OPTIONAL_ARG,
+               HAS_ARG_COUNT // This must be the last field
+       } hasArg;
+       union
+       {
+               bool present;
+               const char* arg;
+       };
+       const char* optionHelp;
+       const char* argHelp;
+} ModuleOption;
+
+
+extern GQueue processingModules;
+extern GQueue matchingModules;
+extern GQueue analysisModules;
+extern GQueue moduleOptions;
+
+
+void syncTraceset(LttvTracesetContext* const traceSetContext);
+
+char* changeToGraphDir(const char* const graphs);
+void timeDiff(struct timeval* const end, const struct timeval* const start);
+
+gint gcfCompareProcessing(gconstpointer a, gconstpointer b);
+gint gcfCompareMatching(gconstpointer a, gconstpointer b);
+gint gcfCompareAnalysis(gconstpointer a, gconstpointer b);
+
+#endif
This page took 0.023689 seconds and 4 git commands to generate.