lttd first write (partial)
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 9 Jun 2005 20:55:36 +0000 (20:55 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 9 Jun 2005 20:55:36 +0000 (20:55 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@943 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttd/Makefile.am
ltt/branches/poly/lttd/lttd.c [new file with mode: 0644]

index 4e82854dd24118b72545803c08c15f8490f869ae..ed620e77ee6f3b2b0fabbe69611d366792494f03 100644 (file)
@@ -1,3 +1,7 @@
 # Empty TraceDaemon Makefile.am. Insert a real one here.
 
 
+bin_PROGRAMS = lttd
+
+lttd_SOURCES = lttd.c
+
diff --git a/ltt/branches/poly/lttd/lttd.c b/ltt/branches/poly/lttd/lttd.c
new file mode 100644 (file)
index 0000000..d4c198b
--- /dev/null
@@ -0,0 +1,255 @@
+/* lttd
+ *
+ * Linux Trace Toolkit Daemon
+ *
+ * This is a simple daemon that reads a few relayfs channels and save them in a
+ * trace.
+ *
+ *
+ * Copyright 2005 -
+ *     Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
+ */
+
+#include <stdio.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <dirent.h>
+#include <string.h>
+
+
+enum {
+       GET_SUBBUF,
+       PUT_SUBBUF,
+       GET_N_BUBBUFS,
+       GET_SUBBUF_SIZE
+};
+
+struct fd_pair {
+       int channel;
+       int trace;
+};
+
+struct channel_trace_fd {
+       struct fd_pair *pair;
+       int num_pairs;
+};
+
+static char *trace_name = NULL;
+static char *channel_name = NULL;
+static int     daemon_mode = 0;
+
+
+/* Args :
+ *
+ * -t directory                Directory name of the trace to write to. Will be created.
+ * -c directory                Root directory of the relayfs trace channels.
+ * -d                          Run in background (daemon).
+ */
+void show_arguments(void)
+{
+       printf("Please use the following arguments :\n");
+       printf("\n");
+       printf("-t directory  Directory name of the trace to write to.\n"
+                                "              It will be created.\n");
+       printf("-c directory  Root directory of the relayfs trace channels.\n");
+       printf("-d            Run in background (daemon).\n");
+       printf("\n");
+}
+
+
+/* parse_arguments
+ *
+ * Parses the command line arguments.
+ *
+ * Returns 1 if the arguments were correct, but doesn't ask for program
+ * continuation. Returns -1 if the arguments are incorrect, or 0 if OK.
+ */
+int parse_arguments(int argc, char **argv)
+{
+       int ret = 0;
+       int argn = 1;
+       
+       if(argc == 2) {
+               if(strcmp(argv[1], "-h") == 0) {
+                       return 1;
+               }
+       }
+
+       while(argn < argc-1) {
+
+               switch(argv[argn][0]) {
+                       case '-':
+                               switch(argv[argn][1]) {
+                                       case 't':
+                                               trace_name = argv[argn+1];
+                                               argn++;
+                                               break;
+                                       case 'c':
+                                               channel_name = argv[argn+1];
+                                               argn++;
+                                               break;
+                                       case 'd':
+                                               daemon_mode = 1;
+                                               break;
+                                       default:
+                                               printf("Invalid argument '%s'.\n", argv[argn]);
+                                               printf("\n");
+                                               ret = -1;
+                               }
+                               break;
+                       default:
+                               printf("Invalid argument '%s'.\n", argv[argn]);
+                               printf("\n");
+                               ret = -1;
+               }
+               argn++;
+       }
+       
+       if(trace_name == NULL) {
+               printf("Please specify a trace name.\n");
+               printf("\n");
+               ret = -1;
+       }
+       
+       if(channel_name == NULL) {
+               printf("Please specify a channel name.\n");
+               printf("\n");
+               ret = -1;
+       }
+       
+       return ret;
+}
+
+void show_info(void)
+{
+       printf("Linux Trace Toolkit Trace Daemon\n");
+       printf("\n");
+       printf("Reading from relayfs directory : %s\n", channel_name);
+       printf("Writing to trace directory : %s\n", trace_name);
+       printf("\n");
+}
+
+
+int open_channel_trace_pairs(char *subchannel_name, char *subtrace_name,
+               struct channel_trace_fd *fd_pairs)
+{
+       DIR *channel_dir = opendir(subchannel_name);
+       struct dirent *entry;
+       struct stat stat_buf;
+       int ret;
+       char path_channel[PATH_MAX];
+       int path_channel_len;
+       char *path_channel_ptr;
+       char path_trace[PATH_MAX];
+       int path_trace_len;
+       char *path_trace_ptr;
+
+       if(channel_dir == NULL) {
+               perror(subchannel_name);
+               return ENOENT;
+       }
+
+       //FIXME : check if the directory already exist, and ask the user if he wants
+       //to append to the traces.
+       printf("Creating trace subdirectory %s\n", subtrace_name);
+       ret = mkdir(subtrace_name, S_IRWXU|S_IRWXG|S_IRWXO);
+       if(ret == -1) {
+               perror(subtrace_name);
+               return -1;
+       }
+
+       strncpy(path_channel, subchannel_name, PATH_MAX-1);
+       path_channel_len = strlen(path_channel);
+       path_channel[path_channel_len] = '/';
+       path_channel_len++;
+       path_channel_ptr = path_channel + path_channel_len;
+
+       strncpy(path_trace, subtrace_name, PATH_MAX-1);
+       path_trace_len = strlen(path_trace);
+       path_trace[path_trace_len] = '/';
+       path_trace_len++;
+       path_trace_ptr = path_trace + path_trace_len;
+       
+       while((entry = readdir(channel_dir)) != NULL) {
+
+               if(entry->d_name[0] == '.') continue;
+               
+               strncpy(path_channel_ptr, entry->d_name, PATH_MAX - path_channel_len);
+               strncpy(path_trace_ptr, entry->d_name, PATH_MAX - path_trace_len);
+               
+               ret = stat(path_channel, &stat_buf);
+               if(ret == -1) {
+                       perror(path_channel);
+                       continue;
+               }
+               
+               printf("Channel file : %s\n", path_channel);
+               
+               if(S_ISDIR(stat_buf.st_mode)) {
+
+                       printf("Entering channel subdirectory...\n");
+                       ret = open_channel_trace_pairs(path_channel, path_trace, fd_pairs);
+                       if(ret < 0) continue;
+               }
+               
+       }
+       
+       closedir(channel_dir);
+
+       return 0;
+}
+
+
+int read_channels(struct channel_trace_fd *fd_pairs)
+{
+       return 0;
+}
+
+
+void close_channel_trace_pairs(struct channel_trace_fd *fd_pairs)
+{
+
+}
+
+int main(int argc, char ** argv)
+{
+       int ret;
+       pid_t pid;
+       struct channel_trace_fd fd_pairs = { NULL, 0 };
+       
+       ret = parse_arguments(argc, argv);
+
+       if(ret != 0) show_arguments();
+       if(ret < 0) return EINVAL;
+       if(ret > 0) return 0;
+
+       show_info();
+
+       if(daemon_mode) {
+               pid = fork();
+               
+               if(pid > 0) {
+                       /* parent */
+                       return 0;
+               } else if(pid < 0) {
+                       /* error */
+                       printf("An error occured while forking.\n");
+                       return -1;
+               }
+               /* else, we are the child, continue... */
+       }
+
+       if(ret = open_channel_trace_pairs(channel_name, trace_name, &fd_pairs))
+               goto end_main;
+
+       ret = read_channels(&fd_pairs);
+
+       close_channel_trace_pairs(&fd_pairs);
+
+end_main:
+
+       return ret;
+}
This page took 0.02593 seconds and 4 git commands to generate.