genevent fix : warnings
[lttv.git] / genevent-new / genevent.c
CommitLineData
92d82357 1/******************************************************************************
2 * Genevent
3 *
4 * Event generator. XML to logging C code converter.
5 *
6 * Program parameters :
7 * ./genevent name.xml
8 *
9 * Will generate ltt-facility-name.h, ltt-facility-id-name.h
10 * ltt-facility-loader-name.c, ltt-facility-loader-name.h
11 * in the current directory.
12 *
13 * Supports :
14 * - C Alignment
15 * - C types : struct, union, enum, basic types.
16 * - Architectures : LP32, ILP32, ILP64, LLP64, LP64.
17 *
18 * Additionnal structures supported :
19 * - embedded variable size strings
20 * - embedded variable size arrays
21 * - embedded variable size sequences
22 *
23 * Notes :
24 * (1)
25 * enums are limited to integer type, as this is what is used in C. Note,
26 * however, that ISO/IEC 9899:TC2 specify that the type of enum can be char,
27 * unsigned int or int. This is implementation defined (compiler). That's why we
28 * add a check for sizeof enum.
29 *
30 * (2)
31 * Because of archtecture defined type sizes, we need to ask for ltt_align
32 * (which gives the alignment) by passing basic types, not their actual sizes.
33 * It's up to ltt_align to determine sizes of types.
34 *
35 * Note that, from
36 * http://www.usenix.org/publications/login/standards/10.data.html
37 * (Andrew Josey <a.josey@opengroup.org>) :
38 *
39 * Data Type LP32 ILP32 ILP64 LLP64 LP64
40 * char 8 8 8 8 8
41 * short 16 16 16 16 16
42 * int32 32
43 * int 16 32 64 32 32
44 * long 32 32 64 32 64
45 * long long (int64) 64
46 * pointer 32 32 64 64 64
47 *
48 * With these constraints :
49 * sizeof(char) <= sizeof(short) <= sizeof(int)
50 * <= sizeof(long) = sizeof(size_t)
51 *
52 * and therefore sizeof(long) <= sizeof(pointer) <= sizeof(size_t)
53 *
54 * Which means we only have to remember which is the biggest type in a structure
55 * to know the structure's alignment.
56 */
57
2d2d14a7 58#define _GNU_SOURCE
59#include <limits.h>
60#include <stdlib.h>
92d82357 61#include <errno.h>
62#include <sys/types.h>
63#include <sys/stat.h>
64#include <fcntl.h>
65#include <stdio.h>
66#include <string.h>
67#include <unistd.h>
2d2d14a7 68#include <assert.h>
92d82357 69
70#include "genevent.h"
71#include "parser.h"
72
73
74#define TRUE 1
75#define FALSE (!TRUE)
76
2d2d14a7 77/* Debugging printf */
78#ifdef DEBUG
79#define dprintf(...) \
80 do {\
81 printf(__FILE__ ",%u,%s: ",\
82 __LINE__, __func__);\
83 printf(__VA_ARGS__);\
84 } while(0)
85#else
86#define dprintf(...)
87#endif
88
92d82357 89/* Code printing */
90
2d2d14a7 91void print_tabs(unsigned int tabs, FILE *fd)
92{
93 for(unsigned int i = 0; i<tabs;i++)
94 fprintf(fd, "\t");
95}
96
2d2d14a7 97/* print type.
98 *
99 * Copied from construct_types_and_fields in LTTV facility.c */
100
101int print_type(type_descriptor_t * td, FILE *fd, unsigned int tabs,
102 char *nest_name, char *field_name)
103{
104 char basename[PATH_MAX];
105 unsigned int basename_len = 0;
106
107 strcpy(basename, nest_name);
108 basename_len = strlen(basename);
109
110 /* For a named type, we use the type_name directly */
111 if(td->type_name != NULL) {
112 strncpy(basename, td->type_name, PATH_MAX);
113 basename_len = strlen(basename);
114 } else {
115 /* For a unnamed type, there must be a field name */
7b175edc 116 if((basename_len != 0)
117 && (basename[basename_len-1] != '_')
118 && (field_name[0] != '\0')) {
2d2d14a7 119 strncat(basename, "_", PATH_MAX - basename_len);
120 basename_len = strlen(basename);
121 }
122 strncat(basename, field_name, PATH_MAX - basename_len);
123 }
124
125 switch(td->type) {
126 case INT_FIXED:
127 fprintf(fd, "%s", intOutputTypes[getSizeindex(td->size)]);
128 break;
129 case UINT_FIXED:
130 fprintf(fd, "%s", uintOutputTypes[getSizeindex(td->size)]);
131 break;
132 case CHAR:
133 fprintf(fd, "signed char");
134 break;
135 case UCHAR:
136 fprintf(fd, "unsigned char");
137 break;
138 case SHORT:
139 fprintf(fd, "short");
140 break;
141 case USHORT:
142 fprintf(fd, "unsigned short");
143 break;
144 case INT:
145 fprintf(fd, "int");
146 break;
147 case UINT:
148 fprintf(fd, "unsigned int");
149 break;
150 case FLOAT:
151 fprintf(fd, "%s", floatOutputTypes[getSizeindex(td->size)]);
152 break;
153 case POINTER:
458989d8 154 fprintf(fd, "const void *");
2d2d14a7 155 break;
156 case LONG:
157 fprintf(fd, "long");
158 break;
159 case ULONG:
160 fprintf(fd, "unsigned long");
161 break;
162 case SIZE_T:
163 fprintf(fd, "size_t");
164 break;
165 case SSIZE_T:
166 fprintf(fd, "ssize_t");
167 break;
168 case OFF_T:
169 fprintf(fd, "off_t");
170 break;
171 case STRING:
3d9b9b0c 172 fprintf(fd, "const char *");
2d2d14a7 173 break;
174 case ENUM:
175 fprintf(fd, "enum lttng_%s", basename);
176 break;
177 case ARRAY:
178 fprintf(fd, "lttng_array_%s", basename);
179 break;
180 case SEQUENCE:
181 fprintf(fd, "lttng_sequence_%s", basename);
182 break;
183 case STRUCT:
184 fprintf(fd, "struct lttng_%s", basename);
185 break;
186 case UNION:
187 fprintf(fd, "union lttng_%s", basename);
188 break;
189 default:
190 printf("print_type : unknown type\n");
191 return 1;
192 }
193
194 return 0;
195}
196
7e97b039 197/* Print logging function argument */
198int print_arg(type_descriptor_t * td, FILE *fd, unsigned int tabs,
199 char *nest_name, char *field_name)
200{
201 char basename[PATH_MAX];
202 unsigned int basename_len = 0;
203
204 strcpy(basename, nest_name);
205 basename_len = strlen(basename);
206
207 /* For a named type, we use the type_name directly */
208 if(td->type_name != NULL) {
209 strncpy(basename, td->type_name, PATH_MAX);
210 basename_len = strlen(basename);
211 } else {
212 /* For a unnamed type, there must be a field name */
213 if((basename_len != 0)
214 && (basename[basename_len-1] != '_')
215 && (field_name[0] != '\0')) {
216 strncat(basename, "_", PATH_MAX - basename_len);
217 basename_len = strlen(basename);
218 }
219 strncat(basename, field_name, PATH_MAX - basename_len);
220 }
221
222 print_tabs(tabs, fd);
223
224 switch(td->type) {
225 case INT_FIXED:
226 fprintf(fd, "%s", intOutputTypes[getSizeindex(td->size)]);
227 fprintf(fd, " %s", field_name);
228 break;
229 case UINT_FIXED:
230 fprintf(fd, "%s", uintOutputTypes[getSizeindex(td->size)]);
231 fprintf(fd, " %s", field_name);
232 break;
233 case CHAR:
234 fprintf(fd, "signed char");
235 fprintf(fd, " %s", field_name);
236 break;
237 case UCHAR:
238 fprintf(fd, "unsigned char");
239 fprintf(fd, " %s", field_name);
240 break;
241 case SHORT:
242 fprintf(fd, "short");
243 fprintf(fd, " %s", field_name);
244 break;
245 case USHORT:
246 fprintf(fd, "unsigned short");
247 fprintf(fd, " %s", field_name);
248 break;
249 case INT:
250 fprintf(fd, "int");
251 fprintf(fd, " %s", field_name);
252 break;
253 case UINT:
254 fprintf(fd, "unsigned int");
255 fprintf(fd, " %s", field_name);
256 break;
257 case FLOAT:
258 fprintf(fd, "%s", floatOutputTypes[getSizeindex(td->size)]);
259 fprintf(fd, " %s", field_name);
260 break;
261 case POINTER:
458989d8 262 fprintf(fd, "const void *");
7e97b039 263 fprintf(fd, " %s", field_name);
264 break;
265 case LONG:
266 fprintf(fd, "long");
267 fprintf(fd, " %s", field_name);
268 break;
269 case ULONG:
270 fprintf(fd, "unsigned long");
271 fprintf(fd, " %s", field_name);
272 break;
273 case SIZE_T:
274 fprintf(fd, "size_t");
275 fprintf(fd, " %s", field_name);
276 break;
277 case SSIZE_T:
278 fprintf(fd, "ssize_t");
279 fprintf(fd, " %s", field_name);
280 break;
281 case OFF_T:
282 fprintf(fd, "off_t");
283 fprintf(fd, " %s", field_name);
284 break;
285 case STRING:
3d9b9b0c 286 fprintf(fd, "const char *");
7e97b039 287 fprintf(fd, " %s", field_name);
288 break;
289 case ENUM:
290 fprintf(fd, "enum lttng_%s", basename);
291 fprintf(fd, " %s", field_name);
292 break;
293 case ARRAY:
294 fprintf(fd, "lttng_array_%s", basename);
295 fprintf(fd, " %s", field_name);
296 break;
297 case SEQUENCE:
298 fprintf(fd, "lttng_sequence_%s *", basename);
299 fprintf(fd, " %s", field_name);
300 break;
301 case STRUCT:
302 fprintf(fd, "struct lttng_%s *", basename);
303 fprintf(fd, " %s", field_name);
304 break;
305 case UNION:
306 fprintf(fd, "union lttng_%s *", basename);
307 fprintf(fd, " %s", field_name);
308 break;
309 default:
310 printf("print_type : unknown type\n");
311 return 1;
312 }
313
314 return 0;
315}
316
317
a3e6ce64 318/* Does the type has a fixed size ? (as know from the compiler)
319 *
320 * 1 : fixed size
321 * 0 : variable length
322 */
323int has_type_fixed_size(type_descriptor_t *td)
324{
325 switch(td->type) {
326 case INT_FIXED:
327 case UINT_FIXED:
328 case CHAR:
329 case UCHAR:
330 case SHORT:
331 case USHORT:
332 case INT:
333 case UINT:
334 case FLOAT:
335 case POINTER:
336 case LONG:
337 case ULONG:
338 case SIZE_T:
339 case SSIZE_T:
340 case OFF_T:
341 case ENUM:
342 case UNION: /* The union must have fixed size children. Must be checked by
343 the parser */
344 return 1;
345 break;
346 case STRING:
347 case SEQUENCE:
348 return 0;
349 break;
350 case STRUCT:
351 {
352 int has_type_fixed = 0;
353 for(unsigned int i=0;i<td->fields.position;i++){
354 field_t *field = (field_t*)(td->fields.array[i]);
355 type_descriptor_t *type = field->type;
356
357 has_type_fixed = has_type_fixed_size(type);
358 if(!has_type_fixed) return 0;
359 }
360 return 1;
361 }
362 break;
363 case ARRAY:
364 assert(td->size >= 0);
2e415130 365 return has_type_fixed_size(((field_t*)td->fields.array[0])->type);
366 break;
367 case NONE:
368 printf("There is a type defined to NONE : bad.\n");
369 assert(0);
a3e6ce64 370 break;
371 }
2e415130 372 return 0; //make gcc happy.
a3e6ce64 373}
374
375
376
377
378
2d2d14a7 379/* print type declaration.
380 *
381 * Copied from construct_types_and_fields in LTTV facility.c */
382
383int print_type_declaration(type_descriptor_t * td, FILE *fd, unsigned int tabs,
384 char *nest_name, char *field_name)
385{
386 char basename[PATH_MAX];
387 unsigned int basename_len = 0;
388
7b175edc 389 strncpy(basename, nest_name, PATH_MAX);
2d2d14a7 390 basename_len = strlen(basename);
391
392 /* For a named type, we use the type_name directly */
393 if(td->type_name != NULL) {
394 strncpy(basename, td->type_name, PATH_MAX);
395 basename_len = strlen(basename);
396 } else {
7b175edc 397 /* For a unnamed type, there must be a field name, except for
398 * the array. */
399 if((basename_len != 0)
400 && (basename[basename_len-1] != '_'
401 && (field_name[0] != '\0'))) {
2d2d14a7 402 strncat(basename, "_", PATH_MAX - basename_len);
403 basename_len = strlen(basename);
404 }
405 strncat(basename, field_name, PATH_MAX - basename_len);
2d2d14a7 406 }
407
408 switch(td->type) {
409 case ENUM:
410 fprintf(fd, "enum lttng_%s", basename);
411 fprintf(fd, " {\n");
412 for(unsigned int i=0;i<td->labels.position;i++){
413 print_tabs(1, fd);
414 fprintf(fd, "LTTNG_%s", ((char*)(td->labels.array[i])));
415 fprintf(fd, ",\n");
416 }
417 fprintf(fd, "};\n");
418 fprintf(fd, "\n");
419 break;
420
421 case ARRAY:
7b175edc 422 dprintf("%s\n", basename);
2d2d14a7 423 assert(td->size >= 0);
a67cd958 424 if(((field_t*)td->fields.array[0])->type->type_name == NULL) {
2d2d14a7 425 /* Not a named nested type : we must print its declaration first */
a67cd958 426 if(print_type_declaration(((field_t*)td->fields.array[0])->type,
2d2d14a7 427 fd, 0, basename, "")) return 1;
428 }
2e415130 429 fprintf(fd, "#define LTTNG_ARRAY_SIZE_%s %zu\n", basename,
2d2d14a7 430 td->size);
7e97b039 431 fprintf(fd, "typedef ");
a67cd958 432 if(print_type(((field_t*)td->fields.array[0])->type,
433 fd, tabs, basename, "")) return 1;
2d2d14a7 434 fprintf(fd, " lttng_array_%s[LTTNG_ARRAY_SIZE_%s];\n", basename,
435 basename);
436 fprintf(fd, "\n");
437 break;
438 case SEQUENCE:
a67cd958 439 /* We assume that the sequence length type does not need to be declared.
440 */
441 if(((field_t*)td->fields.array[1])->type->type_name == NULL) {
2d2d14a7 442 /* Not a named nested type : we must print its declaration first */
a67cd958 443 if(print_type_declaration(((field_t*)td->fields.array[1])->type,
2d2d14a7 444 fd, 0, basename, "")) return 1;
445 }
446 fprintf(fd, "typedef struct lttng_sequence_%s lttng_sequence_%s;\n",
447 basename,
448 basename);
449 fprintf(fd, "struct lttng_sequence_%s", basename);
450 fprintf(fd, " {\n");
451 print_tabs(1, fd);
a3e6ce64 452 if(print_type(((field_t*)td->fields.array[0])->type,
453 fd, tabs, basename, "")) return 1;
40c18b13 454 fprintf(fd, " len;\n");
2d2d14a7 455 print_tabs(1, fd);
8c9e9076 456 fprintf(fd, "const ");
a67cd958 457 if(print_type(((field_t*)td->fields.array[1])->type,
458 fd, tabs, basename, "")) return 1;
2d2d14a7 459 fprintf(fd, " *array;\n");
d428224c 460 fprintf(fd, "};\n"); /* We do not LTT_ALIGN, because we never copy
461 it to the buffer directly. */
2d2d14a7 462 fprintf(fd, "\n");
463 break;
464
465 case STRUCT:
466 for(unsigned int i=0;i<td->fields.position;i++){
467 field_t *field = (field_t*)(td->fields.array[i]);
468 type_descriptor_t *type = field->type;
469 if(type->type_name == NULL) {
470 /* Not a named nested type : we must print its declaration first */
471 if(print_type_declaration(type,
472 fd, 0, basename, field->name)) return 1;
473 }
474 }
475 fprintf(fd, "struct lttng_%s", basename);
476 fprintf(fd, " {\n");
477 for(unsigned int i=0;i<td->fields.position;i++){
478 field_t *field = (field_t*)(td->fields.array[i]);
479 type_descriptor_t *type = field->type;
480 print_tabs(1, fd);
47299663 481 if(print_type(type, fd, tabs, basename, field->name)) return 1;
2d2d14a7 482 fprintf(fd, " ");
483 fprintf(fd, "%s", field->name);
484 fprintf(fd, ";\n");
485 }
d428224c 486 fprintf(fd, "} LTT_ALIGN;\n");
2d2d14a7 487 fprintf(fd, "\n");
488 break;
489 case UNION:
2d2d14a7 490 for(unsigned int i=0;i<td->fields.position;i++){
491 field_t *field = (field_t*)(td->fields.array[i]);
492 type_descriptor_t *type = field->type;
493 if(type->type_name == NULL) {
494 /* Not a named nested type : we must print its declaration first */
47299663 495 if(print_type_declaration(type,
496 fd, 0, basename, field->name)) return 1;
2d2d14a7 497 }
498 }
499 fprintf(fd, "union lttng_%s", basename);
500 fprintf(fd, " {\n");
501 for(unsigned i=0;i<td->fields.position;i++){
502 field_t *field = (field_t*)(td->fields.array[i]);
503 type_descriptor_t *type = field->type;
504 print_tabs(1, fd);
47299663 505 if(print_type(type, fd, tabs, basename, field->name)) return 1;
2d2d14a7 506 fprintf(fd, " ");
507 fprintf(fd, "%s", field->name);
508 fprintf(fd, ";\n");
509 }
d428224c 510 fprintf(fd, "} LTT_ALIGN;\n");
2d2d14a7 511 fprintf(fd, "\n");
512 break;
513 default:
514 dprintf("print_type_declaration : unknown type or nothing to declare.\n");
515 break;
516 }
517
518 return 0;
519}
520
a67cd958 521
a3e6ce64 522/* print type alignment.
523 *
524 * Copied from construct_types_and_fields in LTTV facility.c
525 *
526 * basename is the name which identifies the type (along with a prefix
527 * (possibly)). */
a67cd958 528
a3e6ce64 529int print_type_alignment(type_descriptor_t * td, FILE *fd, unsigned int tabs,
3261899d 530 char *nest_name, char *field_name, char *obj_prefix)
a67cd958 531{
a3e6ce64 532 char basename[PATH_MAX];
533 unsigned int basename_len = 0;
534
535 strncpy(basename, nest_name, PATH_MAX);
536 basename_len = strlen(basename);
537
538 /* For a named type, we use the type_name directly */
539 if(td->type_name != NULL) {
540 strncpy(basename, td->type_name, PATH_MAX);
541 basename_len = strlen(basename);
a67cd958 542 } else {
a3e6ce64 543 /* For a unnamed type, there must be a field name, except for
544 * the array. */
545 if((basename_len != 0)
546 && (basename[basename_len-1] != '_'
34c1d1b5 547 && field_name != NULL
a3e6ce64 548 && (field_name[0] != '\0'))) {
549 strncat(basename, "_", PATH_MAX - basename_len);
550 basename_len = strlen(basename);
a67cd958 551 }
34c1d1b5 552 if(field_name != NULL)
553 strncat(basename, field_name, PATH_MAX - basename_len);
a67cd958 554 }
a3e6ce64 555
3d9b9b0c 556 if(field_name[0] == '\0') {
557 /* We are in a write function : it's the obj that we must align. */
558 switch(td->type) {
559 case SEQUENCE:
3261899d 560 fprintf(fd, "lttng_get_alignment_sequence_%s(%s)", basename,
561 obj_prefix);
3d9b9b0c 562 break;
563 case STRUCT:
3261899d 564 fprintf(fd, "lttng_get_alignment_struct_%s(%s)", basename,
565 obj_prefix);
3d9b9b0c 566 break;
567 case UNION:
3261899d 568 fprintf(fd, "lttng_get_alignment_union_%s(%s)", basename,
569 obj_prefix);
3d9b9b0c 570 break;
571 case ARRAY:
3261899d 572 fprintf(fd, "lttng_get_alignment_array_%s(%s)", basename,
573 obj_prefix);
a2ff13ed 574 case STRING:
575 fprintf(fd, "sizeof(char)");
3d9b9b0c 576 break;
577 default:
578 printf("error : type unexpected\n");
579 return 1;
580 break;
581 }
582 } else {
583
584 switch(td->type) {
585 case INT_FIXED:
586 case UINT_FIXED:
587 case CHAR:
588 case UCHAR:
589 case SHORT:
590 case USHORT:
591 case INT:
592 case UINT:
593 case FLOAT:
594 case POINTER:
595 case LONG:
596 case ULONG:
597 case SIZE_T:
598 case SSIZE_T:
599 case OFF_T:
600 case ENUM:
601 fprintf(fd, "sizeof(");
602 if(print_type(td, fd, 0, basename, "")) return 1;
603 fprintf(fd, ")");
604 break;
605 case STRING:
606 fprintf(fd, "sizeof(char)");
607 break;
608 case SEQUENCE:
3261899d 609 fprintf(fd, "lttng_get_alignment_sequence_%s(&%s%s)", basename,
610 obj_prefix, field_name);
3d9b9b0c 611 break;
612 case STRUCT:
3261899d 613 fprintf(fd, "lttng_get_alignment_struct_%s(&%s%s)", basename,
614 obj_prefix, field_name);
3d9b9b0c 615 break;
616 case UNION:
3261899d 617 fprintf(fd, "lttng_get_alignment_union_%s(&%s%s)", basename,
618 obj_prefix, field_name);
3d9b9b0c 619 break;
620 case ARRAY:
3261899d 621 fprintf(fd, "lttng_get_alignment_array_%s(%s%s)", basename,
622 obj_prefix, field_name);
3d9b9b0c 623 break;
624 case NONE:
625 printf("error : type NONE unexpected\n");
626 return 1;
627 break;
628 }
a3e6ce64 629 }
3d9b9b0c 630
a3e6ce64 631 return 0;
a67cd958 632}
633
a3e6ce64 634/* print type write.
635 *
636 * Copied from construct_types_and_fields in LTTV facility.c
637 *
638 * basename is the name which identifies the type (along with a prefix
639 * (possibly)). */
a67cd958 640
a3e6ce64 641int print_type_write(type_descriptor_t * td, FILE *fd, unsigned int tabs,
458989d8 642 char *nest_name, char *field_name, char *obj_prefix, int get_ptr)
a67cd958 643{
a67cd958 644 char basename[PATH_MAX];
645 unsigned int basename_len = 0;
458989d8 646 char get_ptr_char[2] = "";
a3e6ce64 647
648 strncpy(basename, nest_name, PATH_MAX);
a67cd958 649 basename_len = strlen(basename);
650
651 /* For a named type, we use the type_name directly */
652 if(td->type_name != NULL) {
653 strncpy(basename, td->type_name, PATH_MAX);
654 basename_len = strlen(basename);
655 } else {
a3e6ce64 656 /* For a unnamed type, there must be a field name, except for
657 * the array. */
a67cd958 658 if((basename_len != 0)
a3e6ce64 659 && (basename[basename_len-1] != '_'
660 && (field_name[0] != '\0'))) {
a67cd958 661 strncat(basename, "_", PATH_MAX - basename_len);
662 basename_len = strlen(basename);
663 }
664 strncat(basename, field_name, PATH_MAX - basename_len);
665 }
666
458989d8 667 if(get_ptr) {
668 strcpy(get_ptr_char, "&");
669 }
670
a67cd958 671 switch(td->type) {
672 case INT_FIXED:
673 case UINT_FIXED:
674 case CHAR:
675 case UCHAR:
676 case SHORT:
677 case USHORT:
678 case INT:
679 case UINT:
680 case FLOAT:
681 case POINTER:
682 case LONG:
683 case ULONG:
684 case SIZE_T:
685 case SSIZE_T:
686 case OFF_T:
687 case ENUM:
a67cd958 688 print_tabs(tabs, fd);
a3e6ce64 689 fprintf(fd, "size = ");
690 fprintf(fd, "sizeof(");
2e415130 691 if(print_type(td, fd, 0, basename, "")) return 1;
a67cd958 692 fprintf(fd, ");\n");
a67cd958 693 print_tabs(tabs, fd);
30d72138 694 fprintf(fd, "size += ltt_align(*to+*len, size) + size;\n");
a3e6ce64 695 print_tabs(tabs, fd);
696 fprintf(fd, "*len += size;");
a67cd958 697 break;
698 case STRING:
a67cd958 699 print_tabs(tabs, fd);
3261899d 700 fprintf(fd,
701 "lttng_write_string_%s(buffer, to_base, to, from, len, %s%s);\n",
702 basename, obj_prefix, field_name);
a3e6ce64 703 break;
704 case SEQUENCE:
705 print_tabs(tabs, fd);
3261899d 706 fprintf(fd,
458989d8 707 "lttng_write_sequence_%s(buffer, to_base, to, from, len, %s%s%s);",
708 basename, get_ptr_char, obj_prefix, field_name);
a3e6ce64 709 break;
710 case STRUCT:
711 print_tabs(tabs, fd);
3261899d 712 fprintf(fd,
458989d8 713 "lttng_write_struct_%s(buffer, to_base, to, from, len, %s%s%s);",
714 basename, get_ptr_char, obj_prefix, field_name);
a3e6ce64 715 break;
716 case UNION:
717 print_tabs(tabs, fd);
3261899d 718 fprintf(fd,
458989d8 719 "lttng_write_union_%s(buffer, to_base, to, from, len, %s%s%s);",
720 basename, get_ptr_char, obj_prefix, field_name);
a67cd958 721 break;
722 case ARRAY:
a67cd958 723 print_tabs(tabs, fd);
3261899d 724 fprintf(fd,
a2ff13ed 725 "lttng_write_array_%s(buffer, to_base, to, from, len, %s%s);",
3261899d 726 basename, obj_prefix, field_name);
a3e6ce64 727 break;
2e415130 728 case NONE:
729 printf("Error : type NONE unexpected\n");
730 return 1;
731 break;
a3e6ce64 732 }
a67cd958 733
a3e6ce64 734 return 0;
735}
a67cd958 736
63c831c5 737/* print need local vars ?.
738 *
739 * Copied from print_type_write
740 *
741 * Does the type_write call needs local size and from variables ?
742 * return value : 1 yes, 0 no.
743 */
744
745int has_type_local(type_descriptor_t * td)
746{
747 switch(td->type) {
748 case INT_FIXED:
749 case UINT_FIXED:
750 case CHAR:
751 case UCHAR:
752 case SHORT:
753 case USHORT:
754 case INT:
755 case UINT:
756 case FLOAT:
757 case POINTER:
758 case LONG:
759 case ULONG:
760 case SIZE_T:
761 case SSIZE_T:
762 case OFF_T:
763 case ENUM:
764 return 1;
765 break;
766 case STRING:
767 case SEQUENCE:
768 case STRUCT:
769 case UNION:
770 case ARRAY:
771 return 0;
772 break;
773 case NONE:
774 printf("Error : type NONE unexpected\n");
775 return 1;
776 break;
777 }
778
779 return 0;
780}
781
a67cd958 782
a67cd958 783
a3e6ce64 784/* print type alignment function.
785 *
786 * Copied from construct_types_and_fields in LTTV facility.c
787 *
788 * basename is the name which identifies the type (along with a prefix
789 * (possibly)). */
790
791int print_type_alignment_fct(type_descriptor_t * td, FILE *fd,
792 unsigned int tabs,
793 char *nest_name, char *field_name)
794{
795 char basename[PATH_MAX];
796 unsigned int basename_len = 0;
797
798 strncpy(basename, nest_name, PATH_MAX);
799 basename_len = strlen(basename);
800
801 /* For a named type, we use the type_name directly */
802 if(td->type_name != NULL) {
803 strncpy(basename, td->type_name, PATH_MAX);
804 basename_len = strlen(basename);
805 } else {
806 /* For a unnamed type, there must be a field name, except for
807 * the array. */
808 if((basename_len != 0)
809 && (basename[basename_len-1] != '_'
810 && (field_name[0] != '\0'))) {
811 strncat(basename, "_", PATH_MAX - basename_len);
812 basename_len = strlen(basename);
813 }
814 strncat(basename, field_name, PATH_MAX - basename_len);
815 }
816
817 switch(td->type) {
818 case SEQUENCE:
819 /* Function header */
820 fprintf(fd, "static inline size_t lttng_get_alignment_sequence_%s(\n",
821 basename);
822 print_tabs(2, fd);
2e415130 823 if(print_type(td, fd, 0, basename, "")) return 1;
a3e6ce64 824 fprintf(fd, " *obj)\n");
825 fprintf(fd, "{\n");
826 print_tabs(1, fd);
827 fprintf(fd, "size_t align=0, localign;");
828 fprintf(fd, "\n");
829 print_tabs(1, fd);
830 fprintf(fd, "localign = ");
831 if(print_type_alignment(((field_t*)td->fields.array[0])->type,
3261899d 832 fd, 0, basename, "len", "obj->")) return 1;
a3e6ce64 833 fprintf(fd, ";\n");
834 print_tabs(1, fd);
835 fprintf(fd, "align = max(align, localign);\n");
836 fprintf(fd, "\n");
837 print_tabs(1, fd);
838 fprintf(fd, "localign = ");
839 if(print_type_alignment(((field_t*)td->fields.array[1])->type,
3261899d 840 fd, 0, basename, "array[0]", "obj->")) return 1;
a3e6ce64 841 fprintf(fd, ";\n");
842 print_tabs(1, fd);
843 fprintf(fd, "align = max(align, localign);\n");
844 fprintf(fd, "\n");
845 print_tabs(1, fd);
846 fprintf(fd, "return align;\n");
847 break;
848 case STRUCT:
849 /* Function header */
850 fprintf(fd, "static inline size_t lttng_get_alignment_struct_%s(\n",
851 basename);
852 print_tabs(2, fd);
2e415130 853 if(print_type(td, fd, 0, basename, "")) return 1;
a3e6ce64 854 fprintf(fd, " *obj)\n");
855 fprintf(fd, "{\n");
856 print_tabs(1, fd);
857 fprintf(fd, "size_t align=0, localign;");
858 fprintf(fd, "\n");
859 for(unsigned int i=0;i<td->fields.position;i++){
860 field_t *field = (field_t*)(td->fields.array[i]);
861 type_descriptor_t *type = field->type;
862 print_tabs(1, fd);
863 fprintf(fd, "localign = ");
3261899d 864 if(print_type_alignment(type, fd, 0, basename, field->name, "obj->"))
865 return 1;
a3e6ce64 866 fprintf(fd, ";\n");
867 print_tabs(1, fd);
868 fprintf(fd, "align = max(align, localign);\n");
869 fprintf(fd, "\n");
870 }
871 print_tabs(1, fd);
872 fprintf(fd, "return align;\n");
873
a67cd958 874 break;
a3e6ce64 875 case UNION:
876 /* Function header */
877 fprintf(fd, "static inline size_t lttng_get_alignment_union_%s(\n",
878 basename);
879 print_tabs(2, fd);
2e415130 880 if(print_type(td, fd, 0, basename, "")) return 1;
a3e6ce64 881 fprintf(fd, " *obj)\n");
882 fprintf(fd, "{\n");
883 print_tabs(1, fd);
884 fprintf(fd, "size_t align=0, localign;");
885 fprintf(fd, "\n");
886 for(unsigned int i=0;i<td->fields.position;i++){
887 field_t *field = (field_t*)(td->fields.array[i]);
888 type_descriptor_t *type = field->type;
889 print_tabs(1, fd);
890 fprintf(fd, "localign = ");
3261899d 891 if(print_type_alignment(type, fd, 0, basename, field->name, "obj->"))
892 return 1;
a3e6ce64 893 fprintf(fd, ";\n");
894 print_tabs(1, fd);
895 fprintf(fd, "align = max(align, localign);\n");
896 fprintf(fd, "\n");
897 }
898 print_tabs(1, fd);
899 fprintf(fd, "return align;\n");
900
901 break;
902 case ARRAY:
903 /* Function header */
904 fprintf(fd, "static inline size_t lttng_get_alignment_array_%s(\n",
905 basename);
906 print_tabs(2, fd);
2e415130 907 if(print_type(td, fd, 0, basename, "")) return 1;
a3e6ce64 908 fprintf(fd, " obj)\n");
909 fprintf(fd, "{\n");
910 print_tabs(1, fd);
911 fprintf(fd, "return \n");
912 if(print_type_alignment(((field_t*)td->fields.array[0])->type,
3261899d 913 fd, 0, basename, "", "obj[0]"))
914 return 1;
a3e6ce64 915 fprintf(fd, ";\n");
916 break;
917 default:
71e09db9 918 dprintf("print_type_alignment_fct : type has no alignment function.\n");
34c1d1b5 919 return 0;
a3e6ce64 920 break;
921 }
922
923
924 /* Function footer */
925 fprintf(fd, "}\n");
926 fprintf(fd, "\n");
927
2e415130 928 return 0;
a3e6ce64 929}
930
931/* print type write function.
932 *
933 * Copied from construct_types_and_fields in LTTV facility.c
934 *
935 * basename is the name which identifies the type (along with a prefix
936 * (possibly)). */
937
938int print_type_write_fct(type_descriptor_t * td, FILE *fd, unsigned int tabs,
939 char *nest_name, char *field_name)
940{
941 char basename[PATH_MAX];
942 unsigned int basename_len = 0;
943
944 strncpy(basename, nest_name, PATH_MAX);
945 basename_len = strlen(basename);
946
947 /* For a named type, we use the type_name directly */
948 if(td->type_name != NULL) {
949 strncpy(basename, td->type_name, PATH_MAX);
950 basename_len = strlen(basename);
951 } else {
952 /* For a unnamed type, there must be a field name, except for
953 * the array. */
954 if((basename_len != 0)
955 && (basename[basename_len-1] != '_'
956 && (field_name[0] != '\0'))) {
957 strncat(basename, "_", PATH_MAX - basename_len);
958 basename_len = strlen(basename);
959 }
960 strncat(basename, field_name, PATH_MAX - basename_len);
961 }
962
34c1d1b5 963 switch(td->type) {
964 case SEQUENCE:
965 case STRUCT:
966 case UNION:
967 case ARRAY:
a2ff13ed 968 case STRING:
34c1d1b5 969 break;
970 default:
71e09db9 971 dprintf("print_type_write_fct : type has no write function.\n");
34c1d1b5 972 return 0;
973 break;
974 }
975
a3e6ce64 976 /* Print header */
977 switch(td->type) {
a67cd958 978 case SEQUENCE:
34c1d1b5 979 fprintf(fd, "static inline void lttng_write_sequence_%s(\n",
a3e6ce64 980 basename);
a67cd958 981 break;
a3e6ce64 982 case STRUCT:
6e27ba88 983 fprintf(fd, "static inline void lttng_write_struct_%s(\n", basename);
a67cd958 984 break;
a3e6ce64 985 case UNION:
6e27ba88 986 fprintf(fd, "static inline void lttng_write_union_%s(\n", basename);
a3e6ce64 987 break;
988 case ARRAY:
6e27ba88 989 fprintf(fd, "static inline void lttng_write_array_%s(\n", basename);
a3e6ce64 990 break;
a2ff13ed 991 case STRING:
992 fprintf(fd, "static inline void lttng_write_string_%s(\n", basename);
993 break;
a3e6ce64 994 default:
995 printf("print_type_write_fct : type has no write function.\n");
a67cd958 996 break;
a67cd958 997 }
998
a3e6ce64 999 print_tabs(2, fd);
1000 fprintf(fd, "void *buffer,\n");
1001 print_tabs(2, fd);
1002 fprintf(fd, "size_t *to_base,\n");
1003 print_tabs(2, fd);
1004 fprintf(fd, "size_t *to,\n");
1005 print_tabs(2, fd);
458989d8 1006 fprintf(fd, "const void **from,\n");
a3e6ce64 1007 print_tabs(2, fd);
1008 fprintf(fd, "size_t *len,\n");
1009 print_tabs(2, fd);
2e415130 1010 if(print_type(td, fd, 0, basename, "")) return 1;
a3e6ce64 1011
1012 switch(td->type) {
1013 case SEQUENCE:
1014 fprintf(fd, " *obj)\n");
1015 break;
1016 case STRUCT:
1017 fprintf(fd, " *obj)\n");
1018 break;
1019 case UNION:
1020 fprintf(fd, " *obj)\n");
1021 break;
1022 case ARRAY:
1023 fprintf(fd, " obj)\n");
1024 break;
a2ff13ed 1025 case STRING:
1026 fprintf(fd, " obj)\n");
1027 break;
a3e6ce64 1028 default:
1029 printf("print_type_write_fct : type has no write function.\n");
1030 break;
1031 }
1032
1033 fprintf(fd, "{\n");
1034 print_tabs(1, fd);
1035 fprintf(fd, "size_t align, size;\n");
1036 fprintf(fd, "\n");
1037
1038 switch(td->type) {
1039 case SEQUENCE:
1040 case STRING:
1041 print_tabs(1, fd);
1042 fprintf(fd, "/* Flush pending memcpy */\n");
1043 print_tabs(1, fd);
1044 fprintf(fd, "if(*len != 0) {\n");
1045 print_tabs(2, fd);
1046 fprintf(fd, "if(buffer != NULL)\n");
1047 print_tabs(3, fd);
1048 fprintf(fd, "memcpy(buffer+*to_base+*to, *from, *len);\n");
1049 print_tabs(1, fd);
1050 fprintf(fd, "}\n");
1051 print_tabs(1, fd);
1052 fprintf(fd, "*to += *len;\n");
1053 print_tabs(1, fd);
1054 fprintf(fd, "*len = 0;\n");
1055 fprintf(fd, "\n");
1056 break;
1057 case STRUCT:
1058 case UNION:
1059 case ARRAY:
1060 break;
1061 default:
1062 printf("print_type_write_fct : type has no write function.\n");
1063 break;
1064 }
1065
1066 print_tabs(1, fd);
34c1d1b5 1067 fprintf(fd, "align = ");
0231ef76 1068 if(print_type_alignment(td, fd, 0, basename, "", "obj")) return 1;
a3e6ce64 1069 fprintf(fd, ";\n");
1070 fprintf(fd, "\n");
1071 print_tabs(1, fd);
1072 fprintf(fd, "if(*len == 0) {\n");
1073 print_tabs(2, fd);
1074 fprintf(fd, "*to += ltt_align(*to, align); /* align output */\n");
1075 print_tabs(1, fd);
1076 fprintf(fd, "} else {\n");
1077 print_tabs(2, fd);
1078 fprintf(fd, "*len += ltt_align(*to+*len, align); /* alignment, ok to do a memcpy of it */\n");
1079 print_tabs(1, fd);
1080 fprintf(fd, "}\n");
1081 fprintf(fd, "\n");
1082
1083 /* First, check if the type has a fixed size. If it is the case, then the size
1084 * to write is know by the compiler : simply use a sizeof() */
1085 if(has_type_fixed_size(td)) {
1086 print_tabs(1, fd);
1087 fprintf(fd, "/* Contains only fixed size fields : use compiler sizeof() */\n");
1088 fprintf(fd, "\n");
1089 print_tabs(1, fd);
3d9b9b0c 1090 fprintf(fd, "size = sizeof(");
2e415130 1091 if(print_type(td, fd, 0, basename, field_name)) return 1;
a3e6ce64 1092 fprintf(fd, ");\n");
3d9b9b0c 1093 print_tabs(1, fd);
1094 fprintf(fd, "*len += size;\n");
a3e6ce64 1095 } else {
1096 /* The type contains nested variable size subtypes :
1097 * we must write field by field. */
1098 print_tabs(1, fd);
1099 fprintf(fd, "/* Contains variable sized fields : must explode the structure */\n");
1100 fprintf(fd, "\n");
1101
1102 switch(td->type) {
1103 case SEQUENCE:
1104 print_tabs(1, fd);
1105 fprintf(fd, "/* Copy members */\n");
3261899d 1106// print_tabs(1, fd);
1107// fprintf(fd, "size = sizeof(\n");
a3e6ce64 1108 if(print_type_write(((field_t*)td->fields.array[0])->type,
458989d8 1109 fd, 1, basename, "len", "obj->", 1)) return 1;
3261899d 1110 fprintf(fd, "\n");
1111// fprintf(fd, ");\n");
1112// print_tabs(1, fd);
1113// fprintf(fd, "*to += ltt_align(*to, size);\n");
a3e6ce64 1114 print_tabs(1, fd);
1115 fprintf(fd, "if(buffer != NULL)\n");
1116 print_tabs(2, fd);
1117 fprintf(fd, "memcpy(buffer+*to_base+*to, &obj->len, size);\n");
1118 print_tabs(1, fd);
1119 fprintf(fd, "*to += size;\n");
1120 fprintf(fd, "\n");
1121
1122 /* Write the child : varlen child or not ? */
1123 if(has_type_fixed_size(((field_t*)td->fields.array[1])->type)) {
1124 /* Fixed size len child : use a multiplication of its size */
3261899d 1125// print_tabs(1, fd);
1126// fprintf(fd, "size = sizeof(\n");
a3e6ce64 1127 if(print_type_write(((field_t*)td->fields.array[1])->type,
458989d8 1128 fd, 1, basename, "array[0]", "obj->", 1)) return 1;
3261899d 1129// fprintf(fd, ");\n");
1130// print_tabs(1, fd);
a3e6ce64 1131 fprintf(fd, "*to += ltt_align(*to, size);\n");
1132 print_tabs(1, fd);
1133 fprintf(fd, "size = obj->len * size;\n");
1134 print_tabs(1, fd);
1135 fprintf(fd, "if(buffer != NULL)\n");
1136 print_tabs(2, fd);
1137 fprintf(fd, "memcpy(buffer+*to_base+*to, obj->array, size);\n");
1138 print_tabs(1, fd);
1139 fprintf(fd, "*to += size;\n");
1140 fprintf(fd, "\n");
1141 } else {
1142 print_tabs(1, fd);
1143 fprintf(fd, "/* Variable length child : iter. */\n");
1144 print_tabs(1, fd);
1145 fprintf(fd, "for(unsigned int i=0; i<obj->len; i++) {\n");
1146 if(print_type_write(((field_t*)td->fields.array[1])->type,
458989d8 1147 fd, 2, basename, "array[i]", "obj->", 1)) return 1;
a3e6ce64 1148 print_tabs(1, fd);
1149 fprintf(fd, "}\n");
1150 }
1151 fprintf(fd, "\n");
1152 print_tabs(1, fd);
1153 fprintf(fd, "/* Realign the *to_base on arch size, set *to to 0 */\n");
1154 print_tabs(1, fd);
1155 fprintf(fd, "*to = ltt_align(*to, sizeof(void *));\n");
1156 print_tabs(1, fd);
1157 fprintf(fd, "*to_base = *to_base+*to;\n");
1158 print_tabs(1, fd);
1159 fprintf(fd, "*to = 0;\n");
1160 fprintf(fd, "\n");
a2ff13ed 1161 print_tabs(1, fd);
a3e6ce64 1162 fprintf(fd, "/* Put source *from just after the C sequence */\n");
1163 print_tabs(1, fd);
1164 fprintf(fd, "*from = obj+1;\n");
1165 break;
1166 case STRING:
a2ff13ed 1167 print_tabs(1, fd);
caabcb43 1168 fprintf(fd, "size = strlen(obj) + 1; /* Include final NULL char. */\n");
a3e6ce64 1169 print_tabs(1, fd);
1170 fprintf(fd, "if(buffer != NULL)\n");
1171 print_tabs(2, fd);
1172 fprintf(fd, "memcpy(buffer+*to_base+*to, obj, size);\n");
1173 print_tabs(1, fd);
1174 fprintf(fd, "*to += size;\n");
1175 fprintf(fd, "\n");
1176 print_tabs(1, fd);
1177 fprintf(fd, "/* Realign the *to_base on arch size, set *to to 0 */\n");
1178 print_tabs(1, fd);
1179 fprintf(fd, "*to = ltt_align(*to, sizeof(void *));\n");
1180 print_tabs(1, fd);
1181 fprintf(fd, "*to_base = *to_base+*to;\n");
1182 print_tabs(1, fd);
1183 fprintf(fd, "*to = 0;\n");
1184 fprintf(fd, "\n");
a3e6ce64 1185 print_tabs(1, fd);
a2ff13ed 1186 fprintf(fd, "/* Put source *from just after the C string */\n");
1187 print_tabs(1, fd);
1188 fprintf(fd, "*from += size;\n");
a3e6ce64 1189 break;
1190 case STRUCT:
1191 for(unsigned int i=0;i<td->fields.position;i++){
1192 field_t *field = (field_t*)(td->fields.array[i]);
1193 type_descriptor_t *type = field->type;
1194 if(print_type_write(type,
458989d8 1195 fd, 1, basename, field->name, "obj->", 1)) return 1;
a3e6ce64 1196 fprintf(fd, "\n");
1197 }
1198 break;
1199 case UNION:
1200 printf("ERROR : A union CANNOT contain a variable size child.\n");
1201 return 1;
1202 break;
1203 case ARRAY:
1204 /* Write the child : varlen child or not ? */
1205 if(has_type_fixed_size(((field_t*)td->fields.array[0])->type)) {
1206 /* Error : if an array has a variable size, then its child must also
1207 * have a variable size. */
1208 assert(0);
1209 } else {
1210 print_tabs(1, fd);
1211 fprintf(fd, "/* Variable length child : iter. */\n");
1212 print_tabs(1, fd);
1213 fprintf(fd, "for(unsigned int i=0; i<LTTNG_ARRAY_SIZE_%s; i++) {\n", basename);
3261899d 1214 if(print_type_write(((field_t*)td->fields.array[0])->type,
458989d8 1215 fd, 2, basename, "", "obj->array[i]", 1)) return 1;
a3e6ce64 1216 print_tabs(1, fd);
1217 fprintf(fd, "}\n");
1218 }
1219 break;
1220 default:
1221 printf("print_type_write_fct : type has no write function.\n");
1222 break;
1223 }
1224
1225
1226 }
1227
1228
1229 /* Function footer */
1230 fprintf(fd, "}\n");
1231 fprintf(fd, "\n");
a67cd958 1232 return 0;
1233}
1234
1235
1236
47299663 1237/* Print the logging function of an event. This is the core of genevent */
a3e6ce64 1238int print_event_logging_function(char *basename, facility_t *fac,
1239 event_t *event, FILE *fd)
47299663 1240{
1241 fprintf(fd, "static inline void trace_%s(\n", basename);
3d9b9b0c 1242 int has_argument = 0;
63c831c5 1243 int has_type_fixed = 0;
3d9b9b0c 1244
1245 /* Does it support per trace tracing ? */
1246 if(event->per_trace) {
1247 print_tabs(2, fd);
1248 fprintf(fd, "struct ltt_trace_struct *dest_trace");
1249 has_argument = 1;
1250 }
1251
1252 /* Does it support per tracefile tracing ? */
1253 if(event->per_tracefile) {
1254 if(has_argument) {
1255 fprintf(fd, ",");
1256 fprintf(fd, "\n");
1257 }
1258 fprintf(fd, "unsigned int tracefile_index");
1259 has_argument = 1;
1260 }
1261
47299663 1262 for(unsigned int j = 0; j < event->fields.position; j++) {
1263 /* For each field, print the function argument */
1264 field_t *f = (field_t*)event->fields.array[j];
1265 type_descriptor_t *t = f->type;
3d9b9b0c 1266 if(has_argument) {
47299663 1267 fprintf(fd, ",");
1268 fprintf(fd, "\n");
1269 }
3d9b9b0c 1270 if(print_arg(t, fd, 2, basename, f->name)) return 1;
1271 has_argument = 1;
47299663 1272 }
3d9b9b0c 1273 if(!has_argument) {
47299663 1274 print_tabs(2, fd);
1275 fprintf(fd, "void");
1276 }
1277 fprintf(fd,")\n");
71e09db9 1278 fprintf(fd,
1279 "#if (!defined(CONFIG_LTT) || !defined(CONFIG_LTT_FACILITY_%s))\n",
1280 fac->capname);
47299663 1281 fprintf(fd, "{\n");
1282 fprintf(fd, "}\n");
1283 fprintf(fd,"#else\n");
1284 fprintf(fd, "{\n");
7e97b039 1285 /* Print the function variables */
a67cd958 1286 print_tabs(1, fd);
a3e6ce64 1287 fprintf(fd, "unsigned int index;\n");
1288 print_tabs(1, fd);
1289 fprintf(fd, "struct ltt_channel_struct *channel;\n");
1290 print_tabs(1, fd);
1291 fprintf(fd, "struct ltt_trace_struct *trace;\n");
1292 print_tabs(1, fd);
1293 fprintf(fd, "struct rchan_buf *relayfs_buf;\n");
1294 print_tabs(1, fd);
1295 fprintf(fd, "void *buffer = NULL;\n");
1296 print_tabs(1, fd);
458989d8 1297 fprintf(fd, "size_t real_to_base = 0; /* The buffer is allocated on arch_size alignment */\n");
1298 print_tabs(1, fd);
1299 fprintf(fd, "size_t *to_base = &real_to_base;\n");
a3e6ce64 1300 print_tabs(1, fd);
458989d8 1301 fprintf(fd, "size_t real_to = 0;\n");
a3e6ce64 1302 print_tabs(1, fd);
458989d8 1303 fprintf(fd, "size_t *to = &real_to;\n");
a3e6ce64 1304 print_tabs(1, fd);
458989d8 1305 fprintf(fd, "size_t real_len = 0;\n");
1306 print_tabs(1, fd);
1307 fprintf(fd, "size_t *len = &real_len;\n");
30d72138 1308 print_tabs(1, fd);
6e27ba88 1309 fprintf(fd, "size_t reserve_size;\n");
1310 print_tabs(1, fd);
a3e6ce64 1311 fprintf(fd, "size_t slot_size;\n");
30d72138 1312 print_tabs(1, fd);
63c831c5 1313
ac963fe3 1314 if(event->fields.position > 0) {
63c831c5 1315 for(unsigned int i=0;i<event->fields.position;i++){
1316 /* Search for at least one child with fixed size. It means
1317 * we need local variables.*/
1318 field_t *field = (field_t*)(event->fields.array[i]);
1319 type_descriptor_t *type = field->type;
1320 has_type_fixed = has_type_local(type);
1321 if(has_type_fixed) break;
1322 }
1323
1324 if(has_type_fixed) {
1325 fprintf(fd, "size_t size;\n");
1326 print_tabs(1, fd);
1327 }
1328
ac963fe3 1329 fprintf(fd, "const void *real_from;\n");
1330 print_tabs(1, fd);
1331 fprintf(fd, "const void **from = &real_from;\n");
1332 print_tabs(1, fd);
1333 }
a3e6ce64 1334 fprintf(fd, "cycles_t tsc;\n");
30d72138 1335 print_tabs(1, fd);
458989d8 1336 fprintf(fd, "size_t before_hdr_pad, after_hdr_pad, header_size;\n");
a3e6ce64 1337 fprintf(fd, "\n");
7e97b039 1338
a3e6ce64 1339 print_tabs(1, fd);
1340 fprintf(fd, "if(ltt_traces.num_active_traces == 0) return;\n");
1341 fprintf(fd, "\n");
1342
a67cd958 1343 /* Calculate event variable len + event data alignment offset.
7e97b039 1344 * Assume that the padding for alignment starts at a void*
a67cd958 1345 * address.
1346 * This excludes the header size and alignment. */
1347
a3e6ce64 1348 print_tabs(1, fd);
1349 fprintf(fd, "/* For each field, calculate the field size. */\n");
1350 print_tabs(1, fd);
458989d8 1351 fprintf(fd, "/* size = *to_base + *to + *len */\n");
a3e6ce64 1352 print_tabs(1, fd);
30d72138 1353 fprintf(fd, "/* Assume that the padding for alignment starts at a\n");
a3e6ce64 1354 print_tabs(1, fd);
30d72138 1355 fprintf(fd, " * sizeof(void *) address. */\n");
a3e6ce64 1356 fprintf(fd, "\n");
a67cd958 1357
a3e6ce64 1358 for(unsigned int i=0;i<event->fields.position;i++){
2e415130 1359 field_t *field = (field_t*)(event->fields.array[i]);
a3e6ce64 1360 type_descriptor_t *type = field->type;
458989d8 1361 /* Set from */
1362 print_tabs(1, fd);
1363 switch(type->type) {
1364 case SEQUENCE:
1365 case UNION:
1366 case ARRAY:
1367 case STRUCT:
1368 case STRING:
1369 fprintf(fd, "*from = %s;\n", field->name);
1370 break;
1371 default:
1372 fprintf(fd, "*from = &%s;\n", field->name);
1373 break;
1374 }
1375
a3e6ce64 1376 if(print_type_write(type,
458989d8 1377 fd, 1, basename, field->name, "", 0)) return 1;
a3e6ce64 1378 fprintf(fd, "\n");
a67cd958 1379 }
6e27ba88 1380 print_tabs(1, fd);
458989d8 1381 fprintf(fd, "reserve_size = *to_base + *to + *len;\n");
6e27ba88 1382 print_tabs(1, fd);
458989d8 1383 fprintf(fd, "*to_base = *to = *len = 0;\n");
30d72138 1384 fprintf(fd, "\n");
47299663 1385
7e97b039 1386 /* Take locks : make sure the trace does not vanish while we write on
1387 * it. A simple preemption disabling is enough (using rcu traces). */
a3e6ce64 1388 print_tabs(1, fd);
1389 fprintf(fd, "preempt_disable();\n");
1390 print_tabs(1, fd);
1391 fprintf(fd, "ltt_nesting[smp_processor_id()]++;\n");
1392
1393 /* Get facility index */
1394
1395 if(event->per_tracefile) {
1396 print_tabs(1, fd);
1397 fprintf(fd, "index = tracefile_index;\n");
1398 } else {
1399 print_tabs(1, fd);
1400 fprintf(fd,
1401 "index = ltt_get_index_from_facility(ltt_facility_%s_%X,\n"\
458989d8 1402 "\t\t\t\t\t\tevent_%s_%s);\n",
1403 fac->name, fac->checksum, fac->name, event->name);
a3e6ce64 1404 }
1405 fprintf(fd,"\n");
1406
7e97b039 1407
1408 /* For each trace */
a3e6ce64 1409 print_tabs(1, fd);
1410 fprintf(fd, "list_for_each_entry_rcu(trace, &ltt_traces.head, list) {\n");
1411 print_tabs(2, fd);
1412 fprintf(fd, "if(!trace->active) continue;\n\n");
1413
1414 if(event->per_trace) {
1415 print_tabs(2, fd);
1416 fprintf(fd, "if(dest_trace != trace) continue;\n\n");
1417 }
1418
1419 print_tabs(2, fd);
2e415130 1420 fprintf(fd, "channel = ltt_get_channel_from_index(trace, index);\n");
a3e6ce64 1421 print_tabs(2, fd);
458989d8 1422 fprintf(fd, "relayfs_buf = channel->rchan->buf[smp_processor_id()];\n");
a3e6ce64 1423 fprintf(fd, "\n");
1424
7e97b039 1425
1426 /* Relay reserve */
a3e6ce64 1427 /* If error, increment event lost counter (done by ltt_reserve_slot) and
1428 * return */
1429 print_tabs(2, fd);
1430 fprintf(fd, "slot_size = 0;\n");
1431 print_tabs(2, fd);
30d72138 1432 fprintf(fd, "buffer = ltt_reserve_slot(trace, relayfs_buf,\n");
1433 print_tabs(3, fd);
6e27ba88 1434 fprintf(fd, "reserve_size, &slot_size, &tsc,\n");
30d72138 1435 print_tabs(3, fd);
458989d8 1436 fprintf(fd, "&before_hdr_pad, &after_hdr_pad, &header_size);\n");
a3e6ce64 1437 /* If error, return */
1438 print_tabs(2, fd);
1439 fprintf(fd, "if(!buffer) return;\n\n");
458989d8 1440 /* Write event header */
1441 print_tabs(2, fd);
1442 fprintf(fd, "ltt_write_event_header(trace, channel, buffer,\n");
1443 print_tabs(3, fd);
1444 fprintf(fd, "ltt_facility_%s_%X, event_%s_%s,\n", fac->name, fac->checksum,
1445 fac->name, event->name);
1446 print_tabs(3, fd);
1447 fprintf(fd, "reserve_size, before_hdr_pad, tsc);\n");
1448 print_tabs(2, fd);
1449 fprintf(fd, "*to_base += before_hdr_pad + after_hdr_pad + header_size;\n");
7e97b039 1450
a3e6ce64 1451 /* write data : assume stack alignment is the same as struct alignment. */
1452
1453 for(unsigned int i=0;i<event->fields.position;i++){
2e415130 1454 field_t *field = (field_t*)(event->fields.array[i]);
a3e6ce64 1455 type_descriptor_t *type = field->type;
1456
1457 /* Set from */
30d72138 1458 print_tabs(2, fd);
1459 switch(type->type) {
1460 case SEQUENCE:
1461 case UNION:
1462 case ARRAY:
1463 case STRUCT:
1464 case STRING:
458989d8 1465 fprintf(fd, "*from = %s;\n", field->name);
30d72138 1466 break;
1467 default:
458989d8 1468 fprintf(fd, "*from = &%s;\n", field->name);
30d72138 1469 break;
1470 }
1471
a3e6ce64 1472
1473 if(print_type_write(type,
458989d8 1474 fd, 2, basename, field->name, "", 0)) return 1;
a3e6ce64 1475 fprintf(fd, "\n");
7e97b039 1476
a3e6ce64 1477 /* Don't forget to flush pending memcpy */
1478 print_tabs(2, fd);
1479 fprintf(fd, "/* Flush pending memcpy */\n");
1480 print_tabs(2, fd);
1481 fprintf(fd, "if(len != 0) {\n");
1482 print_tabs(3, fd);
458989d8 1483 fprintf(fd, "memcpy(buffer+*to_base+*to, *from, *len);\n");
a3e6ce64 1484 print_tabs(3, fd);
458989d8 1485 fprintf(fd, "*to += *len;\n");
a3e6ce64 1486 //print_tabs(3, fd);
1487 //fprintf(fd, "from += len;\n");
1488 print_tabs(3, fd);
458989d8 1489 fprintf(fd, "*len = 0;\n");
a3e6ce64 1490 print_tabs(2, fd);
1491 fprintf(fd, "}\n");
1492 fprintf(fd, "\n");
1493 }
1494
1495
7e97b039 1496 /* commit */
a3e6ce64 1497 print_tabs(2, fd);
1498 fprintf(fd, "ltt_commit_slot(relayfs_buf, buffer, slot_size);\n\n");
7e97b039 1499
a3e6ce64 1500 print_tabs(1, fd);
1501 fprintf(fd, "}\n\n");
1502
7e97b039 1503 /* Release locks */
a3e6ce64 1504 print_tabs(1, fd);
1505 fprintf(fd, "ltt_nesting[smp_processor_id()]--;\n");
1506 print_tabs(1, fd);
1507 fprintf(fd, "preempt_enable_no_resched();\n");
2d2d14a7 1508
47299663 1509 fprintf(fd, "}\n");
71e09db9 1510 fprintf(fd, "#endif //(!defined(CONFIG_LTT) || !defined(CONFIG_LTT_FACILITY_%s))\n\n",
1511 fac->capname);
47299663 1512 return 0;
1513}
2d2d14a7 1514
1515
1516/* ltt-facility-name.h : main logging header.
1517 * log_header */
1518
1519void print_log_header_head(facility_t *fac, FILE *fd)
1520{
1521 fprintf(fd, "#ifndef _LTT_FACILITY_%s_H_\n", fac->capname);
1522 fprintf(fd, "#define _LTT_FACILITY_%s_H_\n\n", fac->capname);
3d9b9b0c 1523 fprintf(fd, "#include <linux/types.h>\n");
1524 fprintf(fd, "#include <linux/ltt/ltt-facility-id-%s.h>\n", fac->name);
1525 fprintf(fd, "#include <linux/ltt-core.h>\n");
47299663 1526 fprintf(fd, "\n");
2d2d14a7 1527}
1528
1529
1530
2d2d14a7 1531int print_log_header_types(facility_t *fac, FILE *fd)
1532{
1533 sequence_t *types = &fac->named_types.values;
1534 fprintf(fd, "/* Named types */\n");
1535 fprintf(fd, "\n");
1536
1537 for(unsigned int i = 0; i < types->position; i++) {
1538 /* For each named type, print the definition */
458989d8 1539 if(print_type_declaration(types->array[i], fd,
1540 0, "", "")) return 1;
34c1d1b5 1541 /* Print also the align function */
458989d8 1542 if(print_type_alignment_fct(types->array[i], fd,
1543 0, "", "")) return 1;
34c1d1b5 1544 /* Print also the write function */
458989d8 1545 if(print_type_write_fct(types->array[i], fd,
1546 0, "", "")) return 1;
2d2d14a7 1547 }
1548 return 0;
1549}
1550
1551int print_log_header_events(facility_t *fac, FILE *fd)
1552{
47299663 1553 sequence_t *events = &fac->events;
1554 char basename[PATH_MAX];
1555 unsigned int facname_len;
1556
1557 strncpy(basename, fac->name, PATH_MAX);
1558 facname_len = strlen(basename);
1559 strncat(basename, "_", PATH_MAX-facname_len);
1560 facname_len = strlen(basename);
1561
1562 for(unsigned int i = 0; i < events->position; i++) {
1563 event_t *event = (event_t*)events->array[i];
1564 strncpy(&basename[facname_len], event->name, PATH_MAX-facname_len);
1565
1566 /* For each event, print structure, and then logging function */
1567 fprintf(fd, "/* Event %s structures */\n",
1568 event->name);
1569 for(unsigned int j = 0; j < event->fields.position; j++) {
1570 /* For each unnamed type, print the definition */
1571 field_t *f = (field_t*)event->fields.array[j];
1572 type_descriptor_t *t = f->type;
34c1d1b5 1573 if(t->type_name == NULL) {
47299663 1574 if((print_type_declaration(t, fd, 0, basename, f->name))) return 1;
34c1d1b5 1575 /* Print also the align function */
1576 if((print_type_alignment_fct(t, fd, 0, basename, f->name))) return 1;
1577 /* Print also the write function */
1578 if((print_type_write_fct(t, fd, 0, basename, f->name))) return 1;
1579 }
47299663 1580 }
34c1d1b5 1581
47299663 1582 fprintf(fd, "\n");
2d2d14a7 1583
47299663 1584 fprintf(fd, "/* Event %s logging function */\n",
1585 event->name);
1586
a3e6ce64 1587 if(print_event_logging_function(basename, fac, event, fd)) return 1;
47299663 1588
1589 fprintf(fd, "\n");
1590 }
1591
2d2d14a7 1592 return 0;
1593}
1594
1595
1596void print_log_header_tail(facility_t *fac, FILE *fd)
1597{
1598 fprintf(fd, "#endif //_LTT_FACILITY_%s_H_\n",fac->capname);
1599}
1600
1601int print_log_header(facility_t *fac)
1602{
1603 char filename[PATH_MAX];
1604 unsigned int filename_size = 0;
1605 FILE *fd;
1606 dprintf("%s\n", fac->name);
1607
1608 strcpy(filename, "ltt-facility-");
1609 filename_size = strlen(filename);
1610
1611 strncat(filename, fac->name, PATH_MAX - filename_size);
1612 filename_size = strlen(filename);
1613
1614 strncat(filename, ".h", PATH_MAX - filename_size);
1615 filename_size = strlen(filename);
1616
1617
1618 fd = fopen(filename, "w");
1619 if(fd == NULL) {
1620 printf("Error opening file %s for writing : %s\n",
1621 filename, strerror(errno));
1622 return errno;
1623 }
1624
1625 /* Print file head */
1626 print_log_header_head(fac, fd);
1627
1628 /* print named types in declaration order */
1629 if(print_log_header_types(fac, fd)) return 1;
1630
1631 /* Print events */
1632 if(print_log_header_events(fac, fd)) return 1;
1633
1634 /* Print file tail */
1635 print_log_header_tail(fac, fd);
1636
1637
1638 fclose(fd);
1639
1640 return 0;
1641}
1642
1643
1644/* ltt-facility-id-name.h : facility id.
1645 * log_id_header */
1646int print_id_header(facility_t *fac)
1647{
1648 char filename[PATH_MAX];
1649 unsigned int filename_size = 0;
1650 FILE *fd;
71e09db9 1651 char basename[PATH_MAX];
1652 char basename_len = 0;
1653
2d2d14a7 1654 dprintf("%s\n", fac->name);
1655
1656 strcpy(filename, "ltt-facility-id-");
1657 filename_size = strlen(filename);
1658
1659 strncat(filename, fac->name, PATH_MAX - filename_size);
1660 filename_size = strlen(filename);
1661
1662 strncat(filename, ".h", PATH_MAX - filename_size);
1663 filename_size = strlen(filename);
1664
1665
1666 fd = fopen(filename, "w");
1667 if(fd == NULL) {
1668 printf("Error opening file %s for writing : %s\n",
1669 filename, strerror(errno));
1670 return errno;
1671 }
1672
71e09db9 1673 fprintf(fd, "#ifndef _LTT_FACILITY_ID_%s_H_\n",fac->capname);
1674 fprintf(fd, "#define _LTT_FACILITY_ID_%s_H_\n\n",fac->capname);
1675 fprintf(fd, "#ifdef CONFIG_LTT\n");
1676
1677 fprintf(fd,"#include <linux/ltt-facilities.h>\n\n");
1678
1679 fprintf(fd,"/**** facility handle ****/\n\n");
1680 fprintf(fd,"extern ltt_facility_t ltt_facility_%s_%X;\n",
1681 fac->name, fac->checksum);
1682 fprintf(fd,"extern ltt_facility_t ltt_facility_%s;\n\n\n",fac->name);
1683
1684 strncpy(basename, fac->name, PATH_MAX);
1685 basename_len = strlen(basename);
1686 strncat(basename, "_", PATH_MAX - basename_len);
1687 basename_len++;
1688
1689 fprintf(fd,"/**** event index ****/\n\n");
1690 fprintf(fd,"enum %s_event {\n",fac->name);
1691
1692 for(unsigned int i = 0; i < fac->events.position; i++) {
1693 event_t *event = (event_t*)fac->events.array[i];
1694 strncpy(basename+basename_len, event->name, PATH_MAX-basename_len);
1695 print_tabs(1, fd);
1696 fprintf(fd, "event_%s,\n", basename);
1697 }
1698 print_tabs(1, fd);
1699 fprintf(fd, "facility_%s_num_events\n", fac->name);
1700 fprintf(fd, "};\n");
1701 fprintf(fd, "\n");
1702
1703
1704 fprintf(fd, "#endif //CONFIG_LTT\n");
1705 fprintf(fd, "#endif //_LTT_FACILITY_ID_%s_H_\n",fac->capname);
1706
1707
2d2d14a7 1708 fclose(fd);
1709
1710 return 0;
1711}
1712
1713
1714/* ltt-facility-loader-name.h : facility specific loader info.
1715 * loader_header */
1716int print_loader_header(facility_t *fac)
1717{
1718 char filename[PATH_MAX];
1719 unsigned int filename_size = 0;
1720 FILE *fd;
1721 dprintf("%s\n", fac->name);
1722
1723 strcpy(filename, "ltt-facility-loader-");
1724 filename_size = strlen(filename);
1725
1726 strncat(filename, fac->name, PATH_MAX - filename_size);
1727 filename_size = strlen(filename);
1728
1729 strncat(filename, ".h", PATH_MAX - filename_size);
1730 filename_size = strlen(filename);
1731
1732
1733 fd = fopen(filename, "w");
1734 if(fd == NULL) {
1735 printf("Error opening file %s for writing : %s\n",
1736 filename, strerror(errno));
1737 return errno;
1738 }
1739
71e09db9 1740 fprintf(fd, "#ifndef _LTT_FACILITY_LOADER_%s_H_\n", fac->capname);
1741 fprintf(fd, "#define _LTT_FACILITY_LOADER_%s_H_\n\n", fac->capname);
1742 fprintf(fd, "#ifdef CONFIG_LTT\n\n");
1743 fprintf(fd,"#include <linux/ltt-facilities.h>\n");
1744 fprintf(fd,"#include <linux/ltt/ltt-facility-id-%s.h>\n\n",
1745 fac->name);
1746 fprintf(fd,"ltt_facility_t\tltt_facility_%s;\n", fac->name);
1747 fprintf(fd,"ltt_facility_t\tltt_facility_%s_%X;\n\n",
1748 fac->name, fac->checksum);
1749
1750 fprintf(fd,"#define LTT_FACILITY_SYMBOL\t\t\t\t\t\t\tltt_facility_%s\n",
1751 fac->name);
1752 fprintf(fd,"#define LTT_FACILITY_CHECKSUM_SYMBOL\t\tltt_facility_%s_%X\n",
1753 fac->name, fac->checksum);
1754 fprintf(fd,"#define LTT_FACILITY_CHECKSUM\t\t\t\t\t\t0x%X\n", fac->checksum);
1755 fprintf(fd,"#define LTT_FACILITY_NAME\t\t\t\t\t\t\t\t\"%s\"\n", fac->name);
1756 fprintf(fd,"#define LTT_FACILITY_NUM_EVENTS\t\t\t\t\tfacility_%s_num_events\n\n",
1757 fac->name);
1758 fprintf(fd, "#endif //CONFIG_LTT\n\n");
1759 fprintf(fd, "#endif //_LTT_FACILITY_LOADER_%s_H_\n", fac->capname);
1760
2d2d14a7 1761 fclose(fd);
1762
1763 return 0;
1764}
1765
1766/* ltt-facility-loader-name.c : generic faciilty loader
1767 * loader_c */
1768int print_loader_c(facility_t *fac)
1769{
1770 char filename[PATH_MAX];
1771 unsigned int filename_size = 0;
1772 FILE *fd;
1773 dprintf("%s\n", fac->name);
1774
1775 strcpy(filename, "ltt-facility-loader-");
1776 filename_size = strlen(filename);
1777
1778 strncat(filename, fac->name, PATH_MAX - filename_size);
1779 filename_size = strlen(filename);
1780
1781 strncat(filename, ".c", PATH_MAX - filename_size);
1782 filename_size = strlen(filename);
1783
1784
1785 fd = fopen(filename, "w");
1786 if(fd == NULL) {
1787 printf("Error opening file %s for writing : %s\n",
1788 filename, strerror(errno));
1789 return errno;
1790 }
1791
71e09db9 1792 fprintf(fd, "/*\n");
1793 fprintf(fd, " * ltt-facility-loader-%s.c\n", fac->name);
1794 fprintf(fd, " *\n");
1795 fprintf(fd, " * (C) Copyright 2005 - \n");
1796 fprintf(fd, " * Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)\n");
1797 fprintf(fd, " *\n");
1798 fprintf(fd, " * Contains the LTT facility loader.\n");
1799 fprintf(fd, " *\n");
1800 fprintf(fd, " */\n");
1801 fprintf(fd, "\n");
1802 fprintf(fd, "\n");
1803 fprintf(fd, "#include <linux/ltt-facilities.h>\n");
1804 fprintf(fd, "#include <linux/module.h>\n");
1805 fprintf(fd, "#include <linux/init.h>\n");
1806 fprintf(fd, "#include <linux/config.h>\n");
1807 fprintf(fd, "#include \"ltt-facility-loader-%s.h\"\n", fac->name);
1808 fprintf(fd, "\n");
1809 fprintf(fd, "\n");
1810 fprintf(fd, "#ifdef CONFIG_LTT\n");
1811 fprintf(fd, "\n");
1812 fprintf(fd, "EXPORT_SYMBOL(LTT_FACILITY_SYMBOL);\n");
1813 fprintf(fd, "EXPORT_SYMBOL(LTT_FACILITY_CHECKSUM_SYMBOL);\n");
1814 fprintf(fd, "\n");
1815 fprintf(fd, "static const char ltt_facility_name[] = LTT_FACILITY_NAME;\n");
1816 fprintf(fd, "\n");
1817 fprintf(fd, "#define SYMBOL_STRING(sym) #sym\n");
1818 fprintf(fd, "\n");
1819 fprintf(fd, "static struct ltt_facility facility = {\n");
1820 fprintf(fd, "\t.name = ltt_facility_name,\n");
1821 fprintf(fd, "\t.num_events = LTT_FACILITY_NUM_EVENTS,\n");
1822 fprintf(fd, "\t.checksum = LTT_FACILITY_CHECKSUM,\n");
1823 fprintf(fd, "\t.symbol = SYMBOL_STRING(LTT_FACILITY_SYMBOL),\n");
1824 fprintf(fd, "};\n");
1825 fprintf(fd, "\n");
1826 fprintf(fd, "#ifndef MODULE\n");
1827 fprintf(fd, "\n");
1828 fprintf(fd, "/* Built-in facility. */\n");
1829 fprintf(fd, "\n");
1830 fprintf(fd, "static int __init facility_init(void)\n");
1831 fprintf(fd, "{\n");
1832 fprintf(fd, "\tprintk(KERN_INFO \"LTT : ltt-facility-%s init in kernel\\n\");\n", fac->name);
1833 fprintf(fd, "\n");
1834 fprintf(fd, "\tLTT_FACILITY_SYMBOL = ltt_facility_builtin_register(&facility);\n");
1835 fprintf(fd, "\tLTT_FACILITY_CHECKSUM_SYMBOL = LTT_FACILITY_SYMBOL;\n");
1836 fprintf(fd, "\t\n");
1837 fprintf(fd, "\treturn LTT_FACILITY_SYMBOL;\n");
1838 fprintf(fd, "}\n");
1839 fprintf(fd, "__initcall(facility_init);\n");
1840 fprintf(fd, "\n");
1841 fprintf(fd, "\n");
1842 fprintf(fd, "\n");
1843 fprintf(fd, "#else \n");
1844 fprintf(fd, "\n");
1845 fprintf(fd, "/* Dynamic facility. */\n");
1846 fprintf(fd, "\n");
1847 fprintf(fd, "static int __init facility_init(void)\n");
1848 fprintf(fd, "{\n");
1849 fprintf(fd, "\tprintk(KERN_INFO \"LTT : ltt-facility-%s init dynamic\\n\");\n", fac->name);
1850 fprintf(fd, "\n");
1851 fprintf(fd, "\tLTT_FACILITY_SYMBOL = ltt_facility_dynamic_register(&facility);\n");
1852 fprintf(fd, "\tLTT_FACILITY_CHECKSUM_SYMBOL = LTT_FACILITY_SYMBOL;\n");
1853 fprintf(fd, "\n");
1854 fprintf(fd, "\treturn LTT_FACILITY_SYMBOL;\n");
1855 fprintf(fd, "}\n");
1856 fprintf(fd, "\n");
1857 fprintf(fd, "static void __exit facility_exit(void)\n");
1858 fprintf(fd, "{\n");
1859 fprintf(fd, "\tint err;\n");
1860 fprintf(fd, "\n");
1861 fprintf(fd, "\terr = ltt_facility_dynamic_unregister(LTT_FACILITY_SYMBOL);\n");
1862 fprintf(fd, "\tif(err != 0)\n");
1863 fprintf(fd, "\t\tprintk(KERN_ERR \"LTT : Error in unregistering facility.\\n\");\n");
1864 fprintf(fd, "\n");
1865 fprintf(fd, "}\n");
1866 fprintf(fd, "\n");
1867 fprintf(fd, "module_init(facility_init)\n");
1868 fprintf(fd, "module_exit(facility_exit)\n");
1869 fprintf(fd, "\n");
1870 fprintf(fd, "\n");
1871 fprintf(fd, "MODULE_LICENSE(\"GPL\");\n");
1872 fprintf(fd, "MODULE_AUTHOR(\"Mathieu Desnoyers\");\n");
1873 fprintf(fd, "MODULE_DESCRIPTION(\"Linux Trace Toolkit Facility\");\n");
1874 fprintf(fd, "\n");
1875 fprintf(fd, "#endif //MODULE\n");
1876 fprintf(fd, "\n");
1877 fprintf(fd, "#endif //CONFIG_LTT\n");
2d2d14a7 1878
1879 fclose(fd);
1880
1881 return 0;
1882}
1883
1884
1885
92d82357 1886/* open facility */
1887/* code taken from ltt_facility_open in ltt/facility.c in lttv */
1888
1889/*****************************************************************************
1890 *Function name
1891 * ltt_facility_open : open facilities
1892 *Input params
1893 * pathname : the path name of the facility
1894 *
1895 * Open the facility corresponding to the right checksum.
1896 *
1897 *returns the facility on success, NULL on error.
1898 ****************************************************************************/
1899facility_t *ltt_facility_open(char * pathname)
1900{
1901 int ret = 0;
1902 char *token;
1903 parse_file_t in;
1904 facility_t * fac = NULL;
92d82357 1905 char buffer[BUFFER_SIZE];
1906 int generated = FALSE;
1907
1908 in.buffer = &(buffer[0]);
1909 in.lineno = 0;
1910 in.error = error_callback;
1911 in.name = pathname;
1912 in.unget = 0;
1913
1914 in.fp = fopen(in.name, "r");
1915 if(in.fp == NULL) {
1916 ret = 1;
1917 goto open_error;
1918 }
1919
1920 while(1){
1921 token = getToken(&in);
1922 if(in.type == ENDFILE) break;
1923
1924 if(generated) {
1925 printf("More than one facility in the file. Only using the first one.\n");
1926 break;
1927 }
1928
1929 if(strcmp(token, "<")) in.error(&in,"not a facility file");
1930 token = getName(&in);
1931
1932 if(strcmp("facility",token) == 0) {
1933 fac = malloc(sizeof(facility_t));
1934 fac->name = NULL;
1935 fac->description = NULL;
1936 sequence_init(&(fac->events));
1937 table_init(&(fac->named_types));
1938 sequence_init(&(fac->unnamed_types));
1939
1940 parseFacility(&in, fac);
1941
1942 //check if any namedType is not defined
1943 checkNamedTypesImplemented(&fac->named_types);
1944
2e415130 1945 generateChecksum(fac->name, &fac->checksum, &fac->events);
a67cd958 1946
92d82357 1947 generated = TRUE;
1948 }
1949 else {
1950 printf("facility token was expected in file %s\n", in.name);
1951 ret = 1;
1952 goto parse_error;
1953 }
1954 }
1955
1956 parse_error:
1957 fclose(in.fp);
1958open_error:
1959
1960 if(!generated) {
1961 printf("Cannot find facility %s\n", pathname);
1962 fac = NULL;
1963 }
1964
1965 return fac;
1966}
1967
1968/* Close the facility */
1969void ltt_facility_close(facility_t *fac)
1970{
1971 free(fac->name);
1972 free(fac->capname);
1973 free(fac->description);
1974 freeEvents(&fac->events);
1975 sequence_dispose(&fac->events);
1976 freeNamedType(&fac->named_types);
1977 table_dispose(&fac->named_types);
1978 freeTypes(&fac->unnamed_types);
1979 sequence_dispose(&fac->unnamed_types);
1980 free(fac);
1981}
1982
1983
1984/* Show help */
1985void show_help(int argc, char ** argv)
1986{
1987 printf("Genevent help : \n");
1988 printf("\n");
1989 printf("Use %s name.xml\n", argv[0]);
1990 printf("to create :\n");
1991 printf("ltt-facility-name.h\n");
1992 printf("ltt-facility-id-name.h\n");
1993 printf("ltt-facility-loader-name.h\n");
1994 printf("ltt-facility-loader-name.c\n");
1995 printf("In the current directory.\n");
1996 printf("\n");
1997}
1998
1999/* Parse program arguments */
2000/* Return values :
2001 * 0 : continue program
2002 * -1 : stop program, return 0
2003 * > 0 : stop program, return value as exit.
2004 */
2005int check_args(int argc, char **argv)
2006{
2007 if(argc < 2) {
2008 printf("Not enough arguments\n");
2009 show_help(argc, argv);
2010 return EINVAL;
2011 }
2012
2013 if(strcmp(argv[1], "-h") == 0) {
2014 show_help(argc, argv);
2015 return -1;
2016 }
2017
2018 return 0;
2019}
2020
2021int main(int argc, char **argv)
2022{
2023 int err = 0;
2024 facility_t *fac;
2025
2026 err = check_args(argc, argv);
2027 if(err > 0) return err;
2028 else if(err < 0) return 0;
2029
2030 /* open the facility */
2031 fac = ltt_facility_open(argv[1]);
2032 if(fac == NULL) {
2033 printf("Error opening file %s for reading : %s\n",
2034 argv[1], strerror(errno));
2035 return errno;
2036 }
2037
2038 /* generate the output C files */
2039
2040
2d2d14a7 2041 /* ltt-facility-name.h : main logging header.
2042 * log_header */
2043 err = print_log_header(fac);
2044 if(err) return err;
92d82357 2045
2d2d14a7 2046 /* ltt-facility-id-name.h : facility id.
2047 * log_id_header */
2048 err = print_id_header(fac);
2049 if(err) return err;
92d82357 2050
2d2d14a7 2051 /* ltt-facility-loader-name.h : facility specific loader info.
2052 * loader_header */
2053 err = print_loader_header(fac);
2054 if(err) return err;
2055
2056 /* ltt-facility-loader-name.c : generic faciilty loader
2057 * loader_c */
2058 err = print_loader_c(fac);
2059 if(err) return err;
92d82357 2060
2061 /* close the facility */
2062 ltt_facility_close(fac);
2063
2064 return 0;
2065}
2066
2067
This page took 0.114553 seconds and 4 git commands to generate.