]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blob - log2asc.c
Added support for comments in logfiles.
[sojka/can-utils.git] / log2asc.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * log2asc.c - convert compact CAN frame logfile to ASC logfile
7  *
8  * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of Volkswagen nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * Alternatively, provided that this notice is retained in full, this
24  * software may be distributed under the terms of the GNU General
25  * Public License ("GPL") version 2, in which case the provisions of the
26  * GPL apply INSTEAD OF those given above.
27  *
28  * The provided data structures and external interfaces from this code
29  * are not restricted to be used by modules with a GPL compatible license.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
42  * DAMAGE.
43  *
44  * Send feedback to <socketcan-users@lists.berlios.de>
45  *
46  */
47
48 #include <stdio.h>
49 #include <string.h>
50 #include <time.h>
51 #include <libgen.h>
52 #include <unistd.h>
53
54 #include <net/if.h>
55 #include <linux/can.h>
56
57 #include "lib.h"
58
59 #define BUFSZ 400 /* for one line in the logfile */
60
61 extern int optind, opterr, optopt;
62
63 void print_usage(char *prg)
64 {
65         fprintf(stderr, "Usage: %s [can-interfaces]\n", prg);
66         fprintf(stderr, "Options: -I <infile>  (default stdin)\n");
67         fprintf(stderr, "         -O <outfile> (default stdout)\n");
68         fprintf(stderr, "         -4 (reduce decimal place to 4 digits)\n");
69         fprintf(stderr, "         -n (set newline to cr/lf - default lf)\n");
70 }
71
72 int main(int argc, char **argv)
73 {
74         static char buf[BUFSZ], device[BUFSZ], ascframe[BUFSZ], id[10];
75
76         struct can_frame cf;
77         static struct timeval tv, start_tv;
78         FILE *infile = stdin;
79         FILE *outfile = stdout;
80         static int maxdev, devno, i, crlf, d4, opt;
81
82         while ((opt = getopt(argc, argv, "I:O:4n")) != -1) {
83                 switch (opt) {
84                 case 'I':
85                         infile = fopen(optarg, "r");
86                         if (!infile) {
87                                 perror("infile");
88                                 return 1;
89                         }
90                         break;
91
92                 case 'O':
93                         outfile = fopen(optarg, "w");
94                         if (!outfile) {
95                                 perror("outfile");
96                                 return 1;
97                         }
98                         break;
99
100                 case 'n':
101                         crlf = 1;
102                         break;
103
104                 case '4':
105                         d4 = 1;
106                         break;
107
108                 default:
109                         fprintf(stderr, "Unknown option %c\n", opt);
110                         print_usage(basename(argv[0]));
111                         return 1;
112                         break;
113                 }
114         }
115
116         maxdev = argc - optind; /* find real number of CAN devices */
117
118         if (!maxdev) {
119                 fprintf(stderr, "no CAN interfaces defined!\n");
120                 print_usage(basename(argv[0]));
121                 return 1;
122         }
123         
124         //printf("Found %d CAN devices!\n", maxdev);
125
126         while (fgets(buf, BUFSZ-1, infile)) {
127
128                 if (strlen(buf) >= BUFSZ-2) {
129                         fprintf(stderr, "line too long for input buffer\n");
130                         return 1;
131                 }
132
133                 /* check for a comment line */
134                 if (buf[0] != '(')
135                         continue;
136
137                 if (sscanf(buf, "(%ld.%ld) %s %s", &tv.tv_sec, &tv.tv_usec,
138                            device, ascframe) != 4) {
139                         fprintf(stderr, "incorrect line format in logfile\n");
140                         return 1;
141                 }
142
143                 if (!start_tv.tv_sec) { /* print banner */
144                         start_tv = tv;
145                         fprintf(outfile, "date %s", ctime(&start_tv.tv_sec));
146                         fprintf(outfile, "base hex  timestamps absolute%s",
147                                 (crlf)?"\r\n":"\n");
148                         fprintf(outfile, "no internal events logged%s",
149                                 (crlf)?"\r\n":"\n");
150                 }
151
152                 for (i=0, devno=0; i<maxdev; i++) {
153                         if (!strcmp(device, argv[optind+i])) {
154                                 devno = i+1; /* start with channel '1' */
155                                 break;
156                         }
157                 }
158
159                 if (devno) { /* only convert for selected CAN devices */
160                         if (parse_canframe(ascframe, &cf))
161                                 return 1;
162
163                         tv.tv_sec  = tv.tv_sec - start_tv.tv_sec;
164                         tv.tv_usec = tv.tv_usec - start_tv.tv_usec;
165                         if (tv.tv_usec < 0)
166                                 tv.tv_sec--, tv.tv_usec += 1000000;
167                         if (tv.tv_sec < 0)
168                                 tv.tv_sec = tv.tv_usec = 0;
169
170                         if (d4)
171                                 fprintf(outfile, "%4ld.%04ld ", tv.tv_sec, tv.tv_usec/100);
172                         else
173                                 fprintf(outfile, "%4ld.%06ld ", tv.tv_sec, tv.tv_usec);
174
175                         fprintf(outfile, "%-2d ", devno); /* channel number left aligned */
176
177                         if (cf.can_id & CAN_ERR_FLAG)
178                                 fprintf(outfile, "ErrorFrame");
179                         else {
180                                 sprintf(id, "%X%c", cf.can_id & CAN_EFF_MASK,
181                                         (cf.can_id & CAN_EFF_FLAG)?'x':' ');
182                                 fprintf(outfile, "%-15s Rx   ", id);
183                 
184                                 if (cf.can_id & CAN_RTR_FLAG)
185                                         fprintf(outfile, "r"); /* RTR frame */
186                                 else {
187                                         fprintf(outfile, "d %d", cf.can_dlc); /* data frame */
188                     
189                                         for (i = 0; i < cf.can_dlc; i++) {
190                                                 fprintf(outfile, " %02X", cf.data[i]);
191                                         }
192                                 }
193                         }
194                         if (crlf)
195                                 fprintf(outfile, "\r");
196                         fprintf(outfile, "\n");
197                 }
198         }
199         fflush(outfile);
200
201         return 0;
202 }