Perform trace factor reduction as a separate step
[lttv.git] / lttv / lttv / sync / sync_chain.h
CommitLineData
70407e86 1/* This file is part of the Linux Trace Toolkit viewer
277e5b53 2 * Copyright (C) 2009, 2010 Benjamin Poirier <benjamin.poirier@polymtl.ca>
70407e86 3 *
277e5b53
BP
4 * This program is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 2.1 of the License, or (at
7 * your option) any later version.
70407e86 8 *
277e5b53
BP
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12 * License for more details.
70407e86 13 *
277e5b53
BP
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
70407e86
BP
16 */
17
2bd4b3e4
BP
18#ifndef SYNC_CHAIN_H
19#define SYNC_CHAIN_H
70407e86
BP
20
21#include <glib.h>
9a9ca632 22#include <sys/time.h>
70407e86
BP
23
24#include "event_processing.h"
25#include "event_matching.h"
26#include "event_analysis.h"
27
28typedef struct _SyncState
29{
30 unsigned int traceNb;
31 bool stats;
8d7d16dd
BP
32 FILE* graphsStream;
33 const char* graphsDir;
70407e86
BP
34
35 const ProcessingModule* processingModule;
36 void* processingData;
37 const MatchingModule* matchingModule;
38 void* matchingData;
39 const AnalysisModule* analysisModule;
40 void* analysisData;
41} SyncState;
42
2bd4b3e4
BP
43typedef struct
44{
b670bb7c 45 char shortName;
2bd4b3e4
BP
46 const char* longName;
47 enum {
48 NO_ARG,
49 REQUIRED_ARG,
49c335f1 50 OPTIONAL_ARG,
2bd4b3e4
BP
51 HAS_ARG_COUNT // This must be the last field
52 } hasArg;
49c335f1
BP
53 bool present;
54 // in the case of OPTIONAL_ARG, arg can be initialized to a default value.
55 // If an argument is present, arg will be modified
56 const char* arg;
2bd4b3e4
BP
57 const char* optionHelp;
58 const char* argHelp;
59} ModuleOption;
60
61
70407e86
BP
62extern GQueue processingModules;
63extern GQueue matchingModules;
64extern GQueue analysisModules;
2bd4b3e4 65extern GQueue moduleOptions;
70407e86 66
1ed11971 67void printStats(SyncState* const syncState);
70407e86 68
9a9ca632
BP
69void timeDiff(struct timeval* const end, const struct timeval* const start);
70
0a87ec9a
BP
71GArray* reduceFactors(AllFactors* allFactors);
72
9a9ca632
BP
73gint gcfCompareProcessing(gconstpointer a, gconstpointer b);
74gint gcfCompareMatching(gconstpointer a, gconstpointer b);
75gint gcfCompareAnalysis(gconstpointer a, gconstpointer b);
49c335f1 76void gfAppendAnalysisName(gpointer data, gpointer user_data);
08365995 77
70407e86 78#endif
This page took 0.027883 seconds and 4 git commands to generate.