1 /******************************************************************************
4 * Event generator. XML to logging C code converter.
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.
15 * - C types : struct, union, enum, basic types.
16 * - Architectures : LP32, ILP32, ILP64, LLP64, LP64.
18 * Additionnal structures supported :
19 * - embedded variable size strings
20 * - embedded variable size arrays
21 * - embedded variable size sequences
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.
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.
36 * http://www.usenix.org/publications/login/standards/10.data.html
37 * (Andrew Josey <a.josey@opengroup.org>) :
39 * Data Type LP32 ILP32 ILP64 LLP64 LP64
41 * short 16 16 16 16 16
45 * long long (int64) 64
46 * pointer 32 32 64 64 64
48 * With these constraints :
49 * sizeof(char) <= sizeof(short) <= sizeof(int)
50 * <= sizeof(long) = sizeof(size_t)
52 * and therefore sizeof(long) <= sizeof(pointer) <= sizeof(size_t)
54 * Which means we only have to remember which is the biggest type in a structure
55 * to know the structure's alignment.
62 #include <sys/types.h>
77 /* Debugging printf */
79 #define dprintf(...) \
81 printf(__FILE__ ",%u,%s: ",\
91 void print_tabs(unsigned int tabs
, FILE *fd
)
93 for(unsigned int i
= 0; i
<tabs
;i
++)
99 * Copied from construct_types_and_fields in LTTV facility.c */
101 int print_type(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
102 char *nest_name
, char *field_name
)
104 char basename
[PATH_MAX
];
105 unsigned int basename_len
= 0;
107 strcpy(basename
, nest_name
);
108 basename_len
= strlen(basename
);
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
);
115 /* For a unnamed type, there must be a field name */
116 if((basename_len
!= 0)
117 && (basename
[basename_len
-1] != '_')
118 && (field_name
[0] != '\0')) {
119 strncat(basename
, "_", PATH_MAX
- basename_len
);
120 basename_len
= strlen(basename
);
122 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
127 fprintf(fd
, "%s", intOutputTypes
[getSizeindex(td
->size
)]);
130 fprintf(fd
, "%s", uintOutputTypes
[getSizeindex(td
->size
)]);
133 fprintf(fd
, "signed char");
136 fprintf(fd
, "unsigned char");
139 fprintf(fd
, "short");
142 fprintf(fd
, "unsigned short");
148 fprintf(fd
, "unsigned int");
151 fprintf(fd
, "%s", floatOutputTypes
[getSizeindex(td
->size
)]);
154 fprintf(fd
, "const void *");
160 fprintf(fd
, "unsigned long");
163 fprintf(fd
, "size_t");
166 fprintf(fd
, "ssize_t");
169 fprintf(fd
, "off_t");
172 fprintf(fd
, "const char *");
175 fprintf(fd
, "enum lttng_%s", basename
);
178 fprintf(fd
, "lttng_array_%s", basename
);
181 fprintf(fd
, "lttng_sequence_%s", basename
);
184 fprintf(fd
, "struct lttng_%s", basename
);
187 fprintf(fd
, "union lttng_%s", basename
);
190 printf("print_type : unknown type\n");
197 /* Print logging function argument */
198 int print_arg(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
199 char *nest_name
, char *field_name
)
201 char basename
[PATH_MAX
];
202 unsigned int basename_len
= 0;
204 strcpy(basename
, nest_name
);
205 basename_len
= strlen(basename
);
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
);
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
);
219 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
222 print_tabs(tabs
, fd
);
226 fprintf(fd
, "%s", intOutputTypes
[getSizeindex(td
->size
)]);
227 fprintf(fd
, "lttng_param_%s", field_name
);
230 fprintf(fd
, "%s", uintOutputTypes
[getSizeindex(td
->size
)]);
231 fprintf(fd
, "lttng_param_%s", field_name
);
234 fprintf(fd
, "signed char");
235 fprintf(fd
, " lttng_param_%s", field_name
);
238 fprintf(fd
, "unsigned char");
239 fprintf(fd
, " lttng_param_%s", field_name
);
242 fprintf(fd
, "short");
243 fprintf(fd
, " lttng_param_%s", field_name
);
246 fprintf(fd
, "unsigned short");
247 fprintf(fd
, " lttng_param_%s", field_name
);
251 fprintf(fd
, " lttng_param_%s", field_name
);
254 fprintf(fd
, "unsigned int");
255 fprintf(fd
, " lttng_param_%s", field_name
);
258 fprintf(fd
, "%s", floatOutputTypes
[getSizeindex(td
->size
)]);
259 fprintf(fd
, " lttng_param_%s", field_name
);
262 fprintf(fd
, "const void *");
263 fprintf(fd
, " lttng_param_%s", field_name
);
267 fprintf(fd
, " lttng_param_%s", field_name
);
270 fprintf(fd
, "unsigned long");
271 fprintf(fd
, " lttng_param_%s", field_name
);
274 fprintf(fd
, "size_t");
275 fprintf(fd
, " lttng_param_%s", field_name
);
278 fprintf(fd
, "ssize_t");
279 fprintf(fd
, " lttng_param_%s", field_name
);
282 fprintf(fd
, "off_t");
283 fprintf(fd
, " lttng_param_%s", field_name
);
286 fprintf(fd
, "const char *");
287 fprintf(fd
, " lttng_param_%s", field_name
);
290 fprintf(fd
, "enum lttng_%s", basename
);
291 fprintf(fd
, " lttng_param_%s", field_name
);
294 fprintf(fd
, "lttng_array_%s", basename
);
295 fprintf(fd
, " lttng_param_%s", field_name
);
298 fprintf(fd
, "lttng_sequence_%s *", basename
);
299 fprintf(fd
, " lttng_param_%s", field_name
);
302 fprintf(fd
, "struct lttng_%s *", basename
);
303 fprintf(fd
, " lttng_param_%s", field_name
);
306 fprintf(fd
, "union lttng_%s *", basename
);
307 fprintf(fd
, " lttng_param_%s", field_name
);
310 printf("print_type : unknown type\n");
318 /* Does the type has a fixed size ? (as know from the compiler)
321 * 0 : variable length
323 int has_type_fixed_size(type_descriptor_t
*td
)
342 case UNION
: /* The union must have fixed size children. Must be checked by
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
;
357 has_type_fixed
= has_type_fixed_size(type
);
358 if(!has_type_fixed
) return 0;
364 assert(td
->size
>= 0);
365 return has_type_fixed_size(((field_t
*)td
->fields
.array
[0])->type
);
368 printf("There is a type defined to NONE : bad.\n");
372 return 0; //make gcc happy.
379 /* print type declaration.
381 * Copied from construct_types_and_fields in LTTV facility.c */
383 int print_type_declaration(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
384 char *nest_name
, char *field_name
)
386 char basename
[PATH_MAX
];
387 unsigned int basename_len
= 0;
389 if(td
->custom_write
) return 0; /* Does print custom type */
391 strncpy(basename
, nest_name
, PATH_MAX
);
392 basename_len
= strlen(basename
);
394 /* For a named type, we use the type_name directly */
395 if(td
->type_name
!= NULL
) {
396 strncpy(basename
, td
->type_name
, PATH_MAX
);
397 basename_len
= strlen(basename
);
399 /* For a unnamed type, there must be a field name, except for
401 if((basename_len
!= 0)
402 && (basename
[basename_len
-1] != '_'
403 && (field_name
[0] != '\0'))) {
404 strncat(basename
, "_", PATH_MAX
- basename_len
);
405 basename_len
= strlen(basename
);
407 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
412 fprintf(fd
, "enum lttng_%s", basename
);
414 for(unsigned int i
=0;i
<td
->labels
.position
;i
++){
416 fprintf(fd
, "LTTNG_%s = %d", ((char*)td
->labels
.array
[i
]),
417 (*(int*)td
->labels_values
.array
[i
]));
425 dprintf("%s\n", basename
);
426 assert(td
->size
>= 0);
427 if(((field_t
*)td
->fields
.array
[0])->type
->type_name
== NULL
) {
428 /* Not a named nested type : we must print its declaration first */
429 if(print_type_declaration(((field_t
*)td
->fields
.array
[0])->type
,
430 fd
, 0, basename
, "")) return 1;
432 fprintf(fd
, "#define LTTNG_ARRAY_SIZE_%s %zu\n", basename
,
434 fprintf(fd
, "typedef ");
435 if(print_type(((field_t
*)td
->fields
.array
[0])->type
,
436 fd
, tabs
, basename
, "")) return 1;
437 fprintf(fd
, " lttng_array_%s[LTTNG_ARRAY_SIZE_%s];\n", basename
,
442 /* We assume that the sequence length type does not need to be declared.
444 if(((field_t
*)td
->fields
.array
[1])->type
->type_name
== NULL
) {
445 /* Not a named nested type : we must print its declaration first */
446 if(print_type_declaration(((field_t
*)td
->fields
.array
[1])->type
,
447 fd
, 0, basename
, "")) return 1;
449 fprintf(fd
, "typedef struct lttng_sequence_%s lttng_sequence_%s;\n",
452 fprintf(fd
, "struct lttng_sequence_%s", basename
);
455 if(print_type(((field_t
*)td
->fields
.array
[0])->type
,
456 fd
, tabs
, basename
, "")) return 1;
457 fprintf(fd
, " len;\n");
459 fprintf(fd
, "const ");
460 if(print_type(((field_t
*)td
->fields
.array
[1])->type
,
461 fd
, tabs
, basename
, "")) return 1;
462 fprintf(fd
, " *array;\n");
463 fprintf(fd
, "};\n"); /* We do not LTT_ALIGN, because we never copy
464 it to the buffer directly. */
469 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
470 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
471 type_descriptor_t
*type
= field
->type
;
472 if(type
->type_name
== NULL
) {
473 /* Not a named nested type : we must print its declaration first */
474 if(print_type_declaration(type
,
475 fd
, 0, basename
, field
->name
)) return 1;
478 fprintf(fd
, "struct lttng_%s", basename
);
480 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
481 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
482 type_descriptor_t
*type
= field
->type
;
484 if(print_type(type
, fd
, tabs
, basename
, field
->name
)) return 1;
486 fprintf(fd
, "%s", field
->name
);
489 fprintf(fd
, "} LTT_ALIGN;\n");
493 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
494 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
495 type_descriptor_t
*type
= field
->type
;
496 if(type
->type_name
== NULL
) {
497 /* Not a named nested type : we must print its declaration first */
498 if(print_type_declaration(type
,
499 fd
, 0, basename
, field
->name
)) return 1;
502 fprintf(fd
, "union lttng_%s", basename
);
504 for(unsigned i
=0;i
<td
->fields
.position
;i
++){
505 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
506 type_descriptor_t
*type
= field
->type
;
508 if(print_type(type
, fd
, tabs
, basename
, field
->name
)) return 1;
510 fprintf(fd
, "%s", field
->name
);
513 fprintf(fd
, "} LTT_ALIGN;\n");
517 dprintf("print_type_declaration : unknown type or nothing to declare.\n");
525 /* print type alignment.
527 * Copied from construct_types_and_fields in LTTV facility.c
529 * basename is the name which identifies the type (along with a prefix
532 int print_type_alignment(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
533 char *nest_name
, char *field_name
, char *obj_prefix
)
535 char basename
[PATH_MAX
];
536 unsigned int basename_len
= 0;
538 strncpy(basename
, nest_name
, PATH_MAX
);
539 basename_len
= strlen(basename
);
541 /* For a named type, we use the type_name directly */
542 if(td
->type_name
!= NULL
) {
543 strncpy(basename
, td
->type_name
, PATH_MAX
);
544 basename_len
= strlen(basename
);
546 /* For a unnamed type, there must be a field name, except for
548 if((basename_len
!= 0)
549 && (basename
[basename_len
-1] != '_'
550 && field_name
!= NULL
551 && (field_name
[0] != '\0'))) {
552 strncat(basename
, "_", PATH_MAX
- basename_len
);
553 basename_len
= strlen(basename
);
555 if(field_name
!= NULL
)
556 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
559 if(field_name
[0] == '\0') {
560 /* We are in a write function : it's the obj that we must align. */
563 fprintf(fd
, "lttng_get_alignment_sequence_%s(%s)", basename
,
567 fprintf(fd
, "lttng_get_alignment_struct_%s(%s)", basename
,
571 fprintf(fd
, "lttng_get_alignment_union_%s(%s)", basename
,
575 fprintf(fd
, "lttng_get_alignment_array_%s(%s)", basename
,
578 fprintf(fd
, "sizeof(char)");
596 fprintf(fd
, "sizeof(");
597 if(print_type(td
, fd
, 0, basename
, "")) return 1;
602 printf("error : type unexpected\n");
625 fprintf(fd
, "sizeof(");
626 if(print_type(td
, fd
, 0, basename
, "")) return 1;
630 fprintf(fd
, "sizeof(char)");
633 fprintf(fd
, "lttng_get_alignment_sequence_%s(&%s%s)", basename
,
634 obj_prefix
, field_name
);
637 fprintf(fd
, "lttng_get_alignment_struct_%s(&%s%s)", basename
,
638 obj_prefix
, field_name
);
641 fprintf(fd
, "lttng_get_alignment_union_%s(&%s%s)", basename
,
642 obj_prefix
, field_name
);
645 fprintf(fd
, "lttng_get_alignment_array_%s(%s%s)", basename
,
646 obj_prefix
, field_name
);
649 printf("error : type NONE unexpected\n");
660 * Copied from construct_types_and_fields in LTTV facility.c
662 * basename is the name which identifies the type (along with a prefix
665 int print_type_write(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
666 char *nest_name
, char *field_name
, char *obj_prefix
, int get_ptr
)
668 char basename
[PATH_MAX
];
669 unsigned int basename_len
= 0;
670 char get_ptr_char
[2] = "";
671 char custom
[PATH_MAX
] = "";
673 strncpy(basename
, nest_name
, PATH_MAX
);
674 basename_len
= strlen(basename
);
676 /* For a named type, we use the type_name directly */
677 if(td
->type_name
!= NULL
) {
678 strncpy(basename
, td
->type_name
, PATH_MAX
);
679 basename_len
= strlen(basename
);
681 /* For a unnamed type, there must be a field name, except for
683 if((basename_len
!= 0)
684 && (basename
[basename_len
-1] != '_'
685 && (field_name
[0] != '\0'))) {
686 strncat(basename
, "_", PATH_MAX
- basename_len
);
687 basename_len
= strlen(basename
);
689 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
693 strcpy(get_ptr_char
, "&");
696 if(td
->custom_write
) {
697 strcpy(custom
, "_custom");
717 print_tabs(tabs
, fd
);
718 fprintf(fd
, "align = ");
719 if(print_type_alignment(td
, fd
, 0, basename
, "", "obj")) return 1;
722 print_tabs(tabs
, fd
);
723 fprintf(fd
, "if(*len == 0) {\n");
724 print_tabs(tabs
+1, fd
);
725 fprintf(fd
, "*to += ltt_align(*to, align); /* align output */\n");
726 print_tabs(tabs
, fd
);
727 fprintf(fd
, "} else {\n");
728 print_tabs(tabs
+1, fd
);
729 fprintf(fd
, "*len += ltt_align(*to+*len, align); /* alignment, ok to do a memcpy of it */\n");
730 print_tabs(tabs
, fd
);
734 print_tabs(tabs
, fd
);
735 fprintf(fd
, "*len += ");
736 fprintf(fd
, "sizeof(");
737 if(print_type(td
, fd
, 0, basename
, "")) return 1;
742 print_tabs(tabs
, fd
);
744 "lttng_write%s_string_%s(buffer, to_base, to, from, len, %s%s);\n",
745 custom
, basename
, obj_prefix
, field_name
);
748 print_tabs(tabs
, fd
);
750 "lttng_write%s_sequence_%s(buffer, to_base, to, from, len, %s%s%s);",
751 custom
, basename
, get_ptr_char
, obj_prefix
, field_name
);
754 print_tabs(tabs
, fd
);
756 "lttng_write%s_struct_%s(buffer, to_base, to, from, len, %s%s%s);",
757 custom
, basename
, get_ptr_char
, obj_prefix
, field_name
);
760 print_tabs(tabs
, fd
);
762 "lttng_write%s_union_%s(buffer, to_base, to, from, len, %s%s%s);",
763 custom
, basename
, get_ptr_char
, obj_prefix
, field_name
);
766 print_tabs(tabs
, fd
);
768 "lttng_write%s_array_%s(buffer, to_base, to, from, len, %s%s);",
769 custom
, basename
, obj_prefix
, field_name
);
772 printf("Error : type NONE unexpected\n");
780 /* print need local vars ?.
782 * Copied from print_type_write
784 * Does the type_write call needs local size and from variables ?
785 * return value : 1 yes, 0 no.
788 int has_type_local(type_descriptor_t
* td
)
817 printf("Error : type NONE unexpected\n");
827 /* print type alignment function.
829 * Copied from construct_types_and_fields in LTTV facility.c
831 * basename is the name which identifies the type (along with a prefix
834 int print_type_alignment_fct(type_descriptor_t
* td
, FILE *fd
,
836 char *nest_name
, char *field_name
)
838 char basename
[PATH_MAX
];
839 unsigned int basename_len
= 0;
841 if(td
->custom_write
) return 0; /* Does print custom type */
843 strncpy(basename
, nest_name
, PATH_MAX
);
844 basename_len
= strlen(basename
);
846 /* For a named type, we use the type_name directly */
847 if(td
->type_name
!= NULL
) {
848 strncpy(basename
, td
->type_name
, PATH_MAX
);
849 basename_len
= strlen(basename
);
851 /* For a unnamed type, there must be a field name, except for
853 if((basename_len
!= 0)
854 && (basename
[basename_len
-1] != '_'
855 && (field_name
[0] != '\0'))) {
856 strncat(basename
, "_", PATH_MAX
- basename_len
);
857 basename_len
= strlen(basename
);
859 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
864 /* Function header */
865 fprintf(fd
, "static inline size_t lttng_get_alignment_sequence_%s(\n",
868 if(print_type(td
, fd
, 0, basename
, "")) return 1;
869 fprintf(fd
, " *obj)\n");
872 fprintf(fd
, "size_t align=0, localign;");
875 fprintf(fd
, "localign = ");
876 if(print_type_alignment(((field_t
*)td
->fields
.array
[0])->type
,
877 fd
, 0, basename
, "len", "obj->")) return 1;
880 fprintf(fd
, "align = max(align, localign);\n");
883 fprintf(fd
, "localign = ");
884 if(print_type_alignment(((field_t
*)td
->fields
.array
[1])->type
,
885 fd
, 0, basename
, "array[0]", "obj->")) return 1;
888 fprintf(fd
, "align = max(align, localign);\n");
891 fprintf(fd
, "return align;\n");
894 /* Function header */
895 fprintf(fd
, "static inline size_t lttng_get_alignment_struct_%s(\n",
898 if(print_type(td
, fd
, 0, basename
, "")) return 1;
899 fprintf(fd
, " *obj)\n");
902 fprintf(fd
, "size_t align=0, localign;");
904 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
905 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
906 type_descriptor_t
*type
= field
->type
;
908 fprintf(fd
, "localign = ");
909 if(print_type_alignment(type
, fd
, 0, basename
, field
->name
, "obj->"))
913 fprintf(fd
, "align = max(align, localign);\n");
917 fprintf(fd
, "return align;\n");
921 /* Function header */
922 fprintf(fd
, "static inline size_t lttng_get_alignment_union_%s(\n",
925 if(print_type(td
, fd
, 0, basename
, "")) return 1;
926 fprintf(fd
, " *obj)\n");
929 fprintf(fd
, "size_t align=0, localign;");
931 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
932 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
933 type_descriptor_t
*type
= field
->type
;
935 fprintf(fd
, "localign = ");
936 if(print_type_alignment(type
, fd
, 0, basename
, field
->name
, "obj->"))
940 fprintf(fd
, "align = max(align, localign);\n");
944 fprintf(fd
, "return align;\n");
948 /* Function header */
949 fprintf(fd
, "static inline size_t lttng_get_alignment_array_%s(\n",
952 if(print_type(td
, fd
, 0, basename
, "")) return 1;
953 fprintf(fd
, " obj)\n");
956 fprintf(fd
, "return \n");
957 if(print_type_alignment(((field_t
*)td
->fields
.array
[0])->type
,
958 fd
, 0, basename
, "", "obj[0]"))
963 dprintf("print_type_alignment_fct : type has no alignment function.\n");
969 /* Function footer */
976 /* print type write function.
978 * Copied from construct_types_and_fields in LTTV facility.c
980 * basename is the name which identifies the type (along with a prefix
983 int print_type_write_fct(type_descriptor_t
* td
, FILE *fd
, unsigned int tabs
,
984 char *nest_name
, char *field_name
)
986 char basename
[PATH_MAX
];
987 unsigned int basename_len
= 0;
989 if(td
->custom_write
) return 0; /* Does print custom type */
991 strncpy(basename
, nest_name
, PATH_MAX
);
992 basename_len
= strlen(basename
);
994 /* For a named type, we use the type_name directly */
995 if(td
->type_name
!= NULL
) {
996 strncpy(basename
, td
->type_name
, PATH_MAX
);
997 basename_len
= strlen(basename
);
999 /* For a unnamed type, there must be a field name, except for
1001 if((basename_len
!= 0)
1002 && (basename
[basename_len
-1] != '_'
1003 && (field_name
[0] != '\0'))) {
1004 strncat(basename
, "_", PATH_MAX
- basename_len
);
1005 basename_len
= strlen(basename
);
1007 strncat(basename
, field_name
, PATH_MAX
- basename_len
);
1018 dprintf("print_type_write_fct : type has no write function.\n");
1026 fprintf(fd
, "static inline void lttng_write_sequence_%s(\n",
1030 fprintf(fd
, "static inline void lttng_write_struct_%s(\n", basename
);
1033 fprintf(fd
, "static inline void lttng_write_union_%s(\n", basename
);
1036 fprintf(fd
, "static inline void lttng_write_array_%s(\n", basename
);
1039 fprintf(fd
, "static inline void lttng_write_string_%s(\n", basename
);
1042 printf("print_type_write_fct : type has no write function.\n");
1047 fprintf(fd
, "void *buffer,\n");
1049 fprintf(fd
, "size_t *to_base,\n");
1051 fprintf(fd
, "size_t *to,\n");
1053 fprintf(fd
, "const void **from,\n");
1055 fprintf(fd
, "size_t *len,\n");
1057 if(print_type(td
, fd
, 0, basename
, "")) return 1;
1061 fprintf(fd
, " *obj)\n");
1064 fprintf(fd
, " *obj)\n");
1067 fprintf(fd
, " *obj)\n");
1070 fprintf(fd
, " obj)\n");
1073 fprintf(fd
, " obj)\n");
1076 printf("print_type_write_fct : type has no write function.\n");
1085 fprintf(fd
, "size_t size;\n");
1092 fprintf(fd
, "size_t align;\n");
1099 fprintf(fd
, "/* Flush pending memcpy */\n");
1101 fprintf(fd
, "if(*len != 0) {\n");
1103 fprintf(fd
, "if(buffer != NULL)\n");
1105 fprintf(fd
, "memcpy(buffer+*to_base+*to, *from, *len);\n");
1109 fprintf(fd
, "*to += *len;\n");
1111 fprintf(fd
, "*len = 0;\n");
1119 printf("print_type_write_fct : type has no write function.\n");
1124 fprintf(fd
, "align = ");
1125 if(print_type_alignment(td
, fd
, 0, basename
, "", "obj")) return 1;
1129 fprintf(fd
, "if(*len == 0) {\n");
1131 fprintf(fd
, "*to += ltt_align(*to, align); /* align output */\n");
1133 fprintf(fd
, "} else {\n");
1135 fprintf(fd
, "*len += ltt_align(*to+*len, align); /* alignment, ok to do a memcpy of it */\n");
1140 /* First, check if the type has a fixed size. If it is the case, then the size
1141 * to write is know by the compiler : simply use a sizeof() */
1142 if(has_type_fixed_size(td
)) {
1144 fprintf(fd
, "/* Contains only fixed size fields : use compiler sizeof() */\n");
1147 fprintf(fd
, "*len += sizeof(");
1148 if(print_type(td
, fd
, 0, basename
, field_name
)) return 1;
1149 fprintf(fd
, ");\n");
1151 /* The type contains nested variable size subtypes :
1152 * we must write field by field. */
1154 fprintf(fd
, "/* Contains variable sized fields : must explode the structure */\n");
1160 fprintf(fd
, "/* Copy members */\n");
1161 // print_tabs(1, fd);
1162 // fprintf(fd, "size = sizeof(\n");
1163 if(print_type_write(((field_t
*)td
->fields
.array
[0])->type
,
1164 fd
, 1, basename
, "len", "obj->", 1)) return 1;
1166 // fprintf(fd, ");\n");
1167 // print_tabs(1, fd);
1168 // fprintf(fd, "*to += ltt_align(*to, size);\n");
1170 fprintf(fd
, "if(buffer != NULL)\n");
1172 fprintf(fd
, "memcpy(buffer+*to_base+*to, &obj->len, *len);\n");
1174 fprintf(fd
, "*to += *len;\n");
1176 fprintf(fd
, "*len = 0;\n");
1179 /* Write the child : varlen child or not ? */
1180 if(has_type_fixed_size(((field_t
*)td
->fields
.array
[1])->type
)) {
1181 /* Fixed size len child : use a multiplication of its size */
1182 // print_tabs(1, fd);
1183 // fprintf(fd, "size = sizeof(\n");
1185 //print_tabs(1, fd);
1186 /* We know that *len does not contain alignment because of the
1187 * previous align output. len is always 0 here. */
1188 if(print_type_write(((field_t
*)td
->fields
.array
[1])->type
,
1189 fd
, 1, basename
, "array[0]", "obj->", 1))
1191 // fprintf(fd, ");\n");
1194 fprintf(fd
, "*len = obj->len * (*len);\n");
1196 fprintf(fd
, "if(buffer != NULL)\n");
1198 fprintf(fd
, "memcpy(buffer+*to_base+*to, obj->array, *len);\n");
1200 fprintf(fd
, "*to += *len;\n");
1202 fprintf(fd
, "*len = 0;\n");
1206 fprintf(fd
, "/* Variable length child : iter. */\n");
1208 fprintf(fd
, "for(unsigned int i=0; i<obj->len; i++) {\n");
1209 if(print_type_write(((field_t
*)td
->fields
.array
[1])->type
,
1210 fd
, 2, basename
, "array[i]", "obj->", 1)) return 1;
1216 fprintf(fd
, "/* Realign the *to_base on arch size, set *to to 0 */\n");
1218 fprintf(fd
, "*to += ltt_align(*to, sizeof(void *));\n");
1220 fprintf(fd
, "*to_base = *to_base+*to;\n");
1222 fprintf(fd
, "*to = 0;\n");
1225 fprintf(fd
, "/* Put source *from just after the C sequence */\n");
1227 fprintf(fd
, "*from = obj+1;\n");
1231 fprintf(fd
, "size = strlen(obj) + 1; /* Include final NULL char. */\n");
1233 fprintf(fd
, "if(buffer != NULL)\n");
1235 fprintf(fd
, "memcpy(buffer+*to_base+*to, obj, size);\n");
1237 fprintf(fd
, "*to += size;\n");
1240 fprintf(fd
, "/* Realign the *to_base on arch size, set *to to 0 */\n");
1242 fprintf(fd
, "*to += ltt_align(*to, sizeof(void *));\n");
1244 fprintf(fd
, "*to_base = *to_base+*to;\n");
1246 fprintf(fd
, "*to = 0;\n");
1249 fprintf(fd
, "/* Put source *from just after the C string */\n");
1251 fprintf(fd
, "*from += size;\n");
1254 for(unsigned int i
=0;i
<td
->fields
.position
;i
++){
1255 field_t
*field
= (field_t
*)(td
->fields
.array
[i
]);
1256 type_descriptor_t
*type
= field
->type
;
1257 if(print_type_write(type
,
1258 fd
, 1, basename
, field
->name
, "obj->", 1)) return 1;
1263 printf("ERROR : A union CANNOT contain a variable size child.\n");
1267 /* Write the child : varlen child or not ? */
1268 if(has_type_fixed_size(((field_t
*)td
->fields
.array
[0])->type
)) {
1269 /* Error : if an array has a variable size, then its child must also
1270 * have a variable size. */
1274 fprintf(fd
, "/* Variable length child : iter. */\n");
1276 fprintf(fd
, "for(unsigned int i=0; i<LTTNG_ARRAY_SIZE_%s; i++) {\n", basename
);
1277 if(print_type_write(((field_t
*)td
->fields
.array
[0])->type
,
1278 fd
, 2, basename
, "", "obj->array[i]", 1)) return 1;
1284 printf("print_type_write_fct : type has no write function.\n");
1292 /* Function footer */
1300 /* Print the logging function of an event. This is the core of genevent */
1301 int print_event_logging_function(char *basename
, facility_t
*fac
,
1302 event_t
*event
, FILE *fd
)
1304 fprintf(fd
, "static inline void trace_%s(\n", basename
);
1305 int has_argument
= 0;
1306 int has_type_fixed
= 0;
1308 /* Does it support per trace tracing ? */
1309 if(event
->per_trace
) {
1311 fprintf(fd
, "struct ltt_trace_struct *dest_trace");
1315 /* Does it support per tracefile tracing ? */
1316 if(event
->per_tracefile
) {
1321 fprintf(fd
, "unsigned int tracefile_index");
1325 for(unsigned int j
= 0; j
< event
->fields
.position
; j
++) {
1326 /* For each field, print the function argument */
1327 field_t
*f
= (field_t
*)event
->fields
.array
[j
];
1328 type_descriptor_t
*t
= f
->type
;
1333 if(print_arg(t
, fd
, 2, basename
, f
->name
)) return 1;
1338 fprintf(fd
, "void");
1342 "#if (!defined(CONFIG_LTT) || !defined(CONFIG_LTT_FACILITY_%s))\n",
1346 fprintf(fd
,"#else\n");
1348 /* Print the function variables */
1350 fprintf(fd
, "unsigned int index;\n");
1352 fprintf(fd
, "struct ltt_channel_struct *channel;\n");
1354 fprintf(fd
, "struct ltt_trace_struct *trace;\n");
1356 fprintf(fd
, "struct rchan_buf *relayfs_buf;\n");
1358 fprintf(fd
, "void *buffer = NULL;\n");
1360 fprintf(fd
, "size_t real_to_base = 0; /* The buffer is allocated on arch_size alignment */\n");
1362 fprintf(fd
, "size_t *to_base = &real_to_base;\n");
1364 fprintf(fd
, "size_t real_to = 0;\n");
1366 fprintf(fd
, "size_t *to = &real_to;\n");
1368 fprintf(fd
, "size_t real_len = 0;\n");
1370 fprintf(fd
, "size_t *len = &real_len;\n");
1372 fprintf(fd
, "size_t reserve_size;\n");
1374 fprintf(fd
, "size_t slot_size;\n");
1377 if(event
->fields
.position
> 0) {
1378 for(unsigned int i
=0;i
<event
->fields
.position
;i
++){
1379 /* Search for at least one child with fixed size. It means
1380 * we need local variables.*/
1381 field_t
*field
= (field_t
*)(event
->fields
.array
[i
]);
1382 type_descriptor_t
*type
= field
->type
;
1383 has_type_fixed
= has_type_local(type
);
1384 if(has_type_fixed
) break;
1387 if(has_type_fixed
) {
1388 fprintf(fd
, "size_t align;\n");
1392 fprintf(fd
, "const void *real_from;\n");
1394 fprintf(fd
, "const void **from = &real_from;\n");
1397 fprintf(fd
, "u64 tsc;\n");
1399 fprintf(fd
, "size_t before_hdr_pad, after_hdr_pad, header_size;\n");
1403 fprintf(fd
, "if(ltt_traces.num_active_traces == 0) return;\n");
1406 /* Calculate event variable len + event data alignment offset.
1407 * Assume that the padding for alignment starts at a void*
1409 * This excludes the header size and alignment. */
1412 fprintf(fd
, "/* For each field, calculate the field size. */\n");
1414 fprintf(fd
, "/* size = *to_base + *to + *len */\n");
1416 fprintf(fd
, "/* Assume that the padding for alignment starts at a\n");
1418 fprintf(fd
, " * sizeof(void *) address. */\n");
1421 for(unsigned int i
=0;i
<event
->fields
.position
;i
++){
1422 field_t
*field
= (field_t
*)(event
->fields
.array
[i
]);
1423 type_descriptor_t
*type
= field
->type
;
1426 switch(type
->type
) {
1432 fprintf(fd
, "*from = lttng_param_%s;\n", field
->name
);
1435 fprintf(fd
, "*from = <tng_param_%s;\n", field
->name
);
1439 if(print_type_write(type
,
1440 fd
, 1, basename
, field
->name
, "lttng_param_", 0)) return 1;
1444 fprintf(fd
, "reserve_size = *to_base + *to + *len;\n");
1446 /* Take locks : make sure the trace does not vanish while we write on
1447 * it. A simple preemption disabling is enough (using rcu traces). */
1449 fprintf(fd
, "preempt_disable();\n");
1451 fprintf(fd
, "ltt_nesting[smp_processor_id()]++;\n");
1453 /* Get facility index */
1455 if(event
->per_tracefile
) {
1457 fprintf(fd
, "index = tracefile_index;\n");
1461 "index = ltt_get_index_from_facility(ltt_facility_%s_%X,\n"\
1462 "\t\t\t\t\t\tevent_%s_%s);\n",
1463 fac
->name
, fac
->checksum
, fac
->name
, event
->name
);
1468 /* For each trace */
1470 fprintf(fd
, "list_for_each_entry_rcu(trace, <t_traces.head, list) {\n");
1472 fprintf(fd
, "if(!trace->active) continue;\n\n");
1474 if(event
->per_trace
) {
1476 fprintf(fd
, "if(dest_trace != trace) continue;\n\n");
1480 fprintf(fd
, "channel = ltt_get_channel_from_index(trace, index);\n");
1482 fprintf(fd
, "relayfs_buf = channel->rchan->buf[smp_processor_id()];\n");
1487 /* If error, increment event lost counter (done by ltt_reserve_slot) and
1490 fprintf(fd
, "slot_size = 0;\n");
1492 fprintf(fd
, "buffer = ltt_reserve_slot(trace, relayfs_buf,\n");
1494 fprintf(fd
, "reserve_size, &slot_size, &tsc,\n");
1496 fprintf(fd
, "&before_hdr_pad, &after_hdr_pad, &header_size);\n");
1497 /* If error, return */
1499 fprintf(fd
, "if(!buffer) continue; /* buffer full */\n\n");
1500 //print_tabs(2, fd);
1502 // fprintf(fd, "goto commit; /* DEBUG : never actually write. */\n\n");
1504 fprintf(fd
, "*to_base = *to = *len = 0;\n");
1507 /* Write event header */
1509 fprintf(fd
, "ltt_write_event_header(trace, channel, buffer,\n");
1511 fprintf(fd
, "ltt_facility_%s_%X, event_%s_%s,\n", fac
->name
, fac
->checksum
,
1512 fac
->name
, event
->name
);
1514 fprintf(fd
, "reserve_size, before_hdr_pad, tsc);\n");
1516 fprintf(fd
, "*to_base += before_hdr_pad + after_hdr_pad + header_size;\n");
1521 for(unsigned int i
=0;i
<event
->fields
.position
;i
++){
1522 field_t
*field
= (field_t
*)(event
->fields
.array
[i
]);
1523 type_descriptor_t
*type
= field
->type
;
1527 switch(type
->type
) {
1533 fprintf(fd
, "*from = lttng_param_%s;\n", field
->name
);
1536 fprintf(fd
, "*from = <tng_param_%s;\n", field
->name
);
1541 if(print_type_write(type
,
1542 fd
, 2, basename
, field
->name
, "lttng_param_", 0)) return 1;
1545 /* Don't forget to flush pending memcpy */
1547 fprintf(fd
, "/* Flush pending memcpy */\n");
1549 fprintf(fd
, "if(*len != 0) {\n");
1551 fprintf(fd
, "memcpy(buffer+*to_base+*to, *from, *len);\n");
1553 fprintf(fd
, "*to += *len;\n");
1554 //print_tabs(3, fd);
1555 //fprintf(fd, "from += len;\n");
1557 fprintf(fd
, "*len = 0;\n");
1566 //fprintf(fd, "commit:\n"); /* DEBUG! */
1568 fprintf(fd
, "ltt_commit_slot(relayfs_buf, buffer, slot_size);\n\n");
1571 fprintf(fd
, "}\n\n");
1575 fprintf(fd
, "ltt_nesting[smp_processor_id()]--;\n");
1577 fprintf(fd
, "preempt_enable_no_resched();\n");
1580 fprintf(fd
, "#endif //(!defined(CONFIG_LTT) || !defined(CONFIG_LTT_FACILITY_%s))\n\n",
1586 /* ltt-facility-name.h : main logging header.
1589 void print_log_header_head(facility_t
*fac
, FILE *fd
)
1591 fprintf(fd
, "#ifndef _LTT_FACILITY_%s_H_\n", fac
->capname
);
1592 fprintf(fd
, "#define _LTT_FACILITY_%s_H_\n\n", fac
->capname
);
1593 fprintf(fd
, "#include <linux/types.h>\n");
1595 fprintf(fd
, "#include <linux/ltt/ltt-facility-id-%s.h>\n", fac
->name
);
1597 fprintf(fd
, "#include <asm/ltt/ltt-facility-id-%s_%s.h>\n",
1600 fprintf(fd
, "#include <linux/ltt-core.h>\n");
1606 int print_log_header_types(facility_t
*fac
, FILE *fd
)
1608 sequence_t
*types
= &fac
->named_types
.values
;
1609 fprintf(fd
, "/* Named types */\n");
1612 for(unsigned int i
= 0; i
< types
->position
; i
++) {
1613 /* For each named type, print the definition */
1614 if(print_type_declaration(types
->array
[i
], fd
,
1615 0, "", "")) return 1;
1616 /* Print also the align function */
1617 if(print_type_alignment_fct(types
->array
[i
], fd
,
1618 0, "", "")) return 1;
1619 /* Print also the write function */
1620 if(print_type_write_fct(types
->array
[i
], fd
,
1621 0, "", "")) return 1;
1626 int print_log_header_events(facility_t
*fac
, FILE *fd
)
1628 sequence_t
*events
= &fac
->events
;
1629 char basename
[PATH_MAX
];
1630 unsigned int facname_len
;
1632 strncpy(basename
, fac
->name
, PATH_MAX
);
1633 facname_len
= strlen(basename
);
1634 strncat(basename
, "_", PATH_MAX
-facname_len
);
1635 facname_len
= strlen(basename
);
1637 for(unsigned int i
= 0; i
< events
->position
; i
++) {
1638 event_t
*event
= (event_t
*)events
->array
[i
];
1639 strncpy(&basename
[facname_len
], event
->name
, PATH_MAX
-facname_len
);
1641 /* For each event, print structure, and then logging function */
1642 fprintf(fd
, "/* Event %s structures */\n",
1644 for(unsigned int j
= 0; j
< event
->fields
.position
; j
++) {
1645 /* For each unnamed type, print the definition */
1646 field_t
*f
= (field_t
*)event
->fields
.array
[j
];
1647 type_descriptor_t
*t
= f
->type
;
1648 if(t
->type_name
== NULL
) {
1649 if((print_type_declaration(t
, fd
, 0, basename
, f
->name
))) return 1;
1650 /* Print also the align function */
1651 if((print_type_alignment_fct(t
, fd
, 0, basename
, f
->name
))) return 1;
1652 /* Print also the write function */
1653 if((print_type_write_fct(t
, fd
, 0, basename
, f
->name
))) return 1;
1659 fprintf(fd
, "/* Event %s logging function */\n",
1662 if(print_event_logging_function(basename
, fac
, event
, fd
)) return 1;
1671 void print_log_header_tail(facility_t
*fac
, FILE *fd
)
1673 fprintf(fd
, "#endif //_LTT_FACILITY_%s_H_\n",fac
->capname
);
1676 int print_log_header(facility_t
*fac
)
1678 char filename
[PATH_MAX
];
1679 unsigned int filename_size
= 0;
1681 dprintf("%s\n", fac
->name
);
1683 strcpy(filename
, "ltt-facility-");
1684 filename_size
= strlen(filename
);
1686 strncat(filename
, fac
->name
, PATH_MAX
- filename_size
);
1687 filename_size
= strlen(filename
);
1690 strncat(filename
, "_", PATH_MAX
- filename_size
);
1691 filename_size
= strlen(filename
);
1693 strncat(filename
, fac
->arch
, PATH_MAX
- filename_size
);
1694 filename_size
= strlen(filename
);
1697 strncat(filename
, ".h", PATH_MAX
- filename_size
);
1698 filename_size
= strlen(filename
);
1701 fd
= fopen(filename
, "w");
1703 printf("Error opening file %s for writing : %s\n",
1704 filename
, strerror(errno
));
1708 /* Print file head */
1709 print_log_header_head(fac
, fd
);
1711 /* print named types in declaration order */
1712 if(print_log_header_types(fac
, fd
)) return 1;
1715 if(print_log_header_events(fac
, fd
)) return 1;
1717 /* Print file tail */
1718 print_log_header_tail(fac
, fd
);
1727 /* ltt-facility-id-name.h : facility id.
1729 int print_id_header(facility_t
*fac
)
1731 char filename
[PATH_MAX
];
1732 unsigned int filename_size
= 0;
1734 char basename
[PATH_MAX
];
1735 char basename_len
= 0;
1737 dprintf("%s\n", fac
->name
);
1739 strcpy(filename
, "ltt-facility-id-");
1740 filename_size
= strlen(filename
);
1742 strncat(filename
, fac
->name
, PATH_MAX
- filename_size
);
1743 filename_size
= strlen(filename
);
1746 strncat(filename
, "_", PATH_MAX
- filename_size
);
1747 filename_size
= strlen(filename
);
1749 strncat(filename
, fac
->arch
, PATH_MAX
- filename_size
);
1750 filename_size
= strlen(filename
);
1753 strncat(filename
, ".h", PATH_MAX
- filename_size
);
1754 filename_size
= strlen(filename
);
1757 fd
= fopen(filename
, "w");
1759 printf("Error opening file %s for writing : %s\n",
1760 filename
, strerror(errno
));
1764 fprintf(fd
, "#ifndef _LTT_FACILITY_ID_%s_H_\n",fac
->capname
);
1765 fprintf(fd
, "#define _LTT_FACILITY_ID_%s_H_\n\n",fac
->capname
);
1766 fprintf(fd
, "#ifdef CONFIG_LTT\n");
1768 fprintf(fd
,"#include <linux/ltt-facilities.h>\n\n");
1770 fprintf(fd
,"/**** facility handle ****/\n\n");
1771 fprintf(fd
,"extern ltt_facility_t ltt_facility_%s_%X;\n",
1772 fac
->name
, fac
->checksum
);
1773 fprintf(fd
,"extern ltt_facility_t ltt_facility_%s;\n\n\n",fac
->name
);
1775 strncpy(basename
, fac
->name
, PATH_MAX
);
1776 basename_len
= strlen(basename
);
1777 strncat(basename
, "_", PATH_MAX
- basename_len
);
1780 fprintf(fd
,"/**** event index ****/\n\n");
1781 fprintf(fd
,"enum %s_event {\n",fac
->name
);
1783 for(unsigned int i
= 0; i
< fac
->events
.position
; i
++) {
1784 event_t
*event
= (event_t
*)fac
->events
.array
[i
];
1785 strncpy(basename
+basename_len
, event
->name
, PATH_MAX
-basename_len
);
1787 fprintf(fd
, "event_%s,\n", basename
);
1790 fprintf(fd
, "facility_%s_num_events\n", fac
->name
);
1791 fprintf(fd
, "};\n");
1795 fprintf(fd
, "#endif //CONFIG_LTT\n");
1796 fprintf(fd
, "#endif //_LTT_FACILITY_ID_%s_H_\n",fac
->capname
);
1805 /* ltt-facility-loader-name.h : facility specific loader info.
1807 int print_loader_header(facility_t
*fac
)
1809 char filename
[PATH_MAX
];
1810 unsigned int filename_size
= 0;
1812 dprintf("%s\n", fac
->name
);
1814 strcpy(filename
, "ltt-facility-loader-");
1815 filename_size
= strlen(filename
);
1817 strncat(filename
, fac
->name
, PATH_MAX
- filename_size
);
1818 filename_size
= strlen(filename
);
1821 strncat(filename
, "_", PATH_MAX
- filename_size
);
1822 filename_size
= strlen(filename
);
1824 strncat(filename
, fac
->arch
, PATH_MAX
- filename_size
);
1825 filename_size
= strlen(filename
);
1828 strncat(filename
, ".h", PATH_MAX
- filename_size
);
1829 filename_size
= strlen(filename
);
1832 fd
= fopen(filename
, "w");
1834 printf("Error opening file %s for writing : %s\n",
1835 filename
, strerror(errno
));
1839 fprintf(fd
, "#ifndef _LTT_FACILITY_LOADER_%s_H_\n", fac
->capname
);
1840 fprintf(fd
, "#define _LTT_FACILITY_LOADER_%s_H_\n\n", fac
->capname
);
1841 fprintf(fd
, "#ifdef CONFIG_LTT\n\n");
1842 fprintf(fd
,"#include <linux/ltt-facilities.h>\n");
1844 fprintf(fd
,"#include <linux/ltt/ltt-facility-id-%s.h>\n\n",
1847 fprintf(fd
,"#include <asm/ltt/ltt-facility-id-%s_%s.h>\n\n",
1850 fprintf(fd
,"ltt_facility_t\tltt_facility_%s;\n", fac
->name
);
1851 fprintf(fd
,"ltt_facility_t\tltt_facility_%s_%X;\n\n",
1852 fac
->name
, fac
->checksum
);
1854 fprintf(fd
,"#define LTT_FACILITY_SYMBOL\t\t\t\t\t\t\tltt_facility_%s\n",
1856 fprintf(fd
,"#define LTT_FACILITY_CHECKSUM_SYMBOL\t\tltt_facility_%s_%X\n",
1857 fac
->name
, fac
->checksum
);
1858 fprintf(fd
,"#define LTT_FACILITY_CHECKSUM\t\t\t\t\t\t0x%X\n", fac
->checksum
);
1859 fprintf(fd
,"#define LTT_FACILITY_NAME\t\t\t\t\t\t\t\t\"%s\"\n", fac
->name
);
1860 fprintf(fd
,"#define LTT_FACILITY_NUM_EVENTS\t\t\t\t\tfacility_%s_num_events\n\n",
1862 fprintf(fd
, "#endif //CONFIG_LTT\n\n");
1863 fprintf(fd
, "#endif //_LTT_FACILITY_LOADER_%s_H_\n", fac
->capname
);
1870 /* ltt-facility-loader-name.c : generic faciilty loader
1872 int print_loader_c(facility_t
*fac
)
1874 char filename
[PATH_MAX
];
1875 unsigned int filename_size
= 0;
1877 dprintf("%s\n", fac
->name
);
1879 strcpy(filename
, "ltt-facility-loader-");
1880 filename_size
= strlen(filename
);
1882 strncat(filename
, fac
->name
, PATH_MAX
- filename_size
);
1883 filename_size
= strlen(filename
);
1886 strncat(filename
, "_", PATH_MAX
- filename_size
);
1887 filename_size
= strlen(filename
);
1889 strncat(filename
, fac
->arch
, PATH_MAX
- filename_size
);
1890 filename_size
= strlen(filename
);
1893 strncat(filename
, ".c", PATH_MAX
- filename_size
);
1894 filename_size
= strlen(filename
);
1897 fd
= fopen(filename
, "w");
1899 printf("Error opening file %s for writing : %s\n",
1900 filename
, strerror(errno
));
1904 fprintf(fd
, "/*\n");
1906 fprintf(fd
, " * ltt-facility-loader-%s.c\n", fac
->name
);
1908 fprintf(fd
, " * ltt-facility-loader-%s_%s.c\n", fac
->name
, fac
->arch
);
1909 fprintf(fd
, " *\n");
1910 fprintf(fd
, " * (C) Copyright 2005 - \n");
1911 fprintf(fd
, " * Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)\n");
1912 fprintf(fd
, " *\n");
1913 fprintf(fd
, " * Contains the LTT facility loader.\n");
1914 fprintf(fd
, " *\n");
1915 fprintf(fd
, " */\n");
1918 fprintf(fd
, "#include <linux/ltt-facilities.h>\n");
1919 fprintf(fd
, "#include <linux/module.h>\n");
1920 fprintf(fd
, "#include <linux/init.h>\n");
1921 fprintf(fd
, "#include <linux/config.h>\n");
1923 fprintf(fd
, "#include \"ltt-facility-loader-%s.h\"\n", fac
->name
);
1925 fprintf(fd
, "#include \"ltt-facility-loader-%s_%s.h\"\n",
1926 fac
->name
, fac
->arch
);
1929 fprintf(fd
, "#ifdef CONFIG_LTT\n");
1931 fprintf(fd
, "EXPORT_SYMBOL(LTT_FACILITY_SYMBOL);\n");
1932 fprintf(fd
, "EXPORT_SYMBOL(LTT_FACILITY_CHECKSUM_SYMBOL);\n");
1934 fprintf(fd
, "static const char ltt_facility_name[] = LTT_FACILITY_NAME;\n");
1936 fprintf(fd
, "#define SYMBOL_STRING(sym) #sym\n");
1938 fprintf(fd
, "static struct ltt_facility facility = {\n");
1939 fprintf(fd
, "\t.name = ltt_facility_name,\n");
1940 fprintf(fd
, "\t.num_events = LTT_FACILITY_NUM_EVENTS,\n");
1941 fprintf(fd
, "\t.checksum = LTT_FACILITY_CHECKSUM,\n");
1942 fprintf(fd
, "\t.symbol = SYMBOL_STRING(LTT_FACILITY_SYMBOL),\n");
1943 fprintf(fd
, "};\n");
1945 fprintf(fd
, "#ifndef MODULE\n");
1947 fprintf(fd
, "/* Built-in facility. */\n");
1949 fprintf(fd
, "static int __init facility_init(void)\n");
1951 fprintf(fd
, "\tprintk(KERN_INFO \"LTT : ltt-facility-%s init in kernel\\n\");\n", fac
->name
);
1953 fprintf(fd
, "\tLTT_FACILITY_SYMBOL = ltt_facility_builtin_register(&facility);\n");
1954 fprintf(fd
, "\tLTT_FACILITY_CHECKSUM_SYMBOL = LTT_FACILITY_SYMBOL;\n");
1955 fprintf(fd
, "\t\n");
1956 fprintf(fd
, "\treturn LTT_FACILITY_SYMBOL;\n");
1958 fprintf(fd
, "__initcall(facility_init);\n");
1962 fprintf(fd
, "#else \n");
1964 fprintf(fd
, "/* Dynamic facility. */\n");
1966 fprintf(fd
, "static int __init facility_init(void)\n");
1968 fprintf(fd
, "\tprintk(KERN_INFO \"LTT : ltt-facility-%s init dynamic\\n\");\n", fac
->name
);
1970 fprintf(fd
, "\tLTT_FACILITY_SYMBOL = ltt_facility_dynamic_register(&facility);\n");
1971 fprintf(fd
, "\tLTT_FACILITY_CHECKSUM_SYMBOL = LTT_FACILITY_SYMBOL;\n");
1973 fprintf(fd
, "\treturn LTT_FACILITY_SYMBOL;\n");
1976 fprintf(fd
, "static void __exit facility_exit(void)\n");
1978 fprintf(fd
, "\tint err;\n");
1980 fprintf(fd
, "\terr = ltt_facility_dynamic_unregister(LTT_FACILITY_SYMBOL);\n");
1981 fprintf(fd
, "\tif(err != 0)\n");
1982 fprintf(fd
, "\t\tprintk(KERN_ERR \"LTT : Error in unregistering facility.\\n\");\n");
1986 fprintf(fd
, "module_init(facility_init)\n");
1987 fprintf(fd
, "module_exit(facility_exit)\n");
1990 fprintf(fd
, "MODULE_LICENSE(\"GPL\");\n");
1991 fprintf(fd
, "MODULE_AUTHOR(\"Mathieu Desnoyers\");\n");
1992 fprintf(fd
, "MODULE_DESCRIPTION(\"Linux Trace Toolkit Facility\");\n");
1994 fprintf(fd
, "#endif //MODULE\n");
1996 fprintf(fd
, "#endif //CONFIG_LTT\n");
2006 /* code taken from ltt_facility_open in ltt/facility.c in lttv */
2008 /*****************************************************************************
2010 * ltt_facility_open : open facilities
2012 * pathname : the path name of the facility
2014 * Open the facility corresponding to the right checksum.
2016 *returns the facility on success, NULL on error.
2017 ****************************************************************************/
2018 facility_t
*ltt_facility_open(char * pathname
)
2023 facility_t
* fac
= NULL
;
2024 char buffer
[BUFFER_SIZE
];
2025 int generated
= FALSE
;
2027 in
.buffer
= &(buffer
[0]);
2029 in
.error
= error_callback
;
2033 in
.fp
= fopen(in
.name
, "r");
2040 token
= getToken(&in
);
2041 if(in
.type
== ENDFILE
) break;
2044 printf("More than one facility in the file. Only using the first one.\n");
2048 if(strcmp(token
, "<")) in
.error(&in
,"not a facility file");
2049 token
= getName(&in
);
2051 if(strcmp("facility",token
) == 0) {
2052 fac
= malloc(sizeof(facility_t
));
2054 fac
->description
= NULL
;
2055 sequence_init(&(fac
->events
));
2056 table_init(&(fac
->named_types
));
2057 sequence_init(&(fac
->unnamed_types
));
2059 parseFacility(&in
, fac
);
2061 //check if any namedType is not defined
2062 checkNamedTypesImplemented(&fac
->named_types
);
2064 generateChecksum(fac
->name
, &fac
->checksum
, &fac
->events
);
2069 printf("facility token was expected in file %s\n", in
.name
);
2080 printf("Cannot find facility %s\n", pathname
);
2087 /* Close the facility */
2088 void ltt_facility_close(facility_t
*fac
)
2092 free(fac
->description
);
2093 freeEvents(&fac
->events
);
2094 sequence_dispose(&fac
->events
);
2095 freeNamedType(&fac
->named_types
);
2096 table_dispose(&fac
->named_types
);
2097 freeTypes(&fac
->unnamed_types
);
2098 sequence_dispose(&fac
->unnamed_types
);
2104 void show_help(int argc
, char ** argv
)
2106 printf("Genevent help : \n");
2108 printf("Use %s name.xml\n", argv
[0]);
2109 printf("to create :\n");
2110 printf("ltt-facility-name.h\n");
2111 printf("ltt-facility-id-name.h\n");
2112 printf("ltt-facility-loader-name.h\n");
2113 printf("ltt-facility-loader-name.c\n");
2114 printf("In the current directory.\n");
2118 /* Parse program arguments */
2120 * 0 : continue program
2121 * -1 : stop program, return 0
2122 * > 0 : stop program, return value as exit.
2124 int check_args(int argc
, char **argv
)
2127 printf("Not enough arguments\n");
2128 show_help(argc
, argv
);
2132 if(strcmp(argv
[1], "-h") == 0) {
2133 show_help(argc
, argv
);
2140 int main(int argc
, char **argv
)
2145 err
= check_args(argc
, argv
);
2146 if(err
> 0) return err
;
2147 else if(err
< 0) return 0;
2149 /* open the facility */
2150 fac
= ltt_facility_open(argv
[1]);
2152 printf("Error opening file %s for reading : %s\n",
2153 argv
[1], strerror(errno
));
2157 /* generate the output C files */
2160 /* ltt-facility-name.h : main logging header.
2162 err
= print_log_header(fac
);
2165 /* ltt-facility-id-name.h : facility id.
2167 err
= print_id_header(fac
);
2170 /* ltt-facility-loader-name.h : facility specific loader info.
2172 err
= print_loader_header(fac
);
2175 /* ltt-facility-loader-name.c : generic faciilty loader
2177 err
= print_loader_c(fac
);
2180 /* close the facility */
2181 ltt_facility_close(fac
);
This page took 0.090792 seconds and 4 git commands to generate.