.clang-tidy: enable cppcoreguidelines-avoid-const-or-ref-data-members
[babeltrace.git] / src / plugins / ctf / common / metadata / parser.ypp
index e475436ed8f987a75b00fda0bcd0c59f7d37621f..eb6e32c7a94856c522a70c6e7e8ea6220deded64 100644 (file)
@@ -7,26 +7,26 @@
  * Common Trace Format Metadata Grammar.
  */
 
-#define BT_LOG_OUTPUT_LEVEL ctf_plugin_metadata_log_level
-#define BT_LOG_TAG "PLUGIN/CTF/META/PARSER"
-#include "logging.hpp"
-
-#include <stdio.h>
-#include <ctype.h>
-#include <unistd.h>
-#include <string.h>
-#include <stdlib.h>
 #include <assert.h>
-#include <glib.h>
+#include <ctype.h>
 #include <errno.h>
+#include <glib.h>
 #include <inttypes.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#define BT_LOG_OUTPUT_LEVEL ctf_plugin_metadata_log_level
+#define BT_LOG_TAG "PLUGIN/CTF/META/PARSER"
+#include "plugins/ctf/common/metadata/logging.hpp"
+
 #include "common/list.h"
 #include "common/assert.h"
-#include "scanner.hpp"
-#include "ast.hpp"
-#include "objstack.hpp"
 
-#include "parser-wrap.hpp"
+#include "plugins/ctf/common/metadata/ast.hpp"
+#include "plugins/ctf/common/metadata/objstack.hpp"
+#include "plugins/ctf/common/metadata/parser-wrap.hpp"
 
 /*
  * Avoid warning about "yynerrs" being unused, seen with bison 3.5.1 + clang 15
@@ -47,17 +47,11 @@ _bt_list_splice_tail (struct bt_list_head *add, struct bt_list_head *head)
        }
 }
 
-BT_HIDDEN
 int yylex(union YYSTYPE *yyval, yyscan_t yyscanner);
-BT_HIDDEN
 int yylex_init_extra(struct ctf_scanner *scanner, yyscan_t * ptr_yy_globals);
-BT_HIDDEN
 int yylex_destroy(yyscan_t yyscanner);
-BT_HIDDEN
 void yyrestart(FILE * in_str, yyscan_t yyscanner);
-BT_HIDDEN
 int yyget_lineno(yyscan_t yyscanner);
-BT_HIDDEN
 char *yyget_text(yyscan_t yyscanner);
 
 /*
@@ -74,7 +68,6 @@ static struct ctf_node error_node = {
        .type = NODE_ERROR,
 };
 
-BT_HIDDEN
 const char *node_type(struct ctf_node *node)
 {
        switch (node->type) {
@@ -327,7 +320,6 @@ static int lookup_type(struct ctf_scanner_scope *s, const char *id)
        return ret;
 }
 
-BT_HIDDEN
 int is_type(struct ctf_scanner *scanner, const char *id)
 {
        struct ctf_scanner_scope *it;
@@ -1056,13 +1048,13 @@ void ctf_scanner_free(struct ctf_scanner *scanner)
 #ifndef ALLOW_INCLUDE_PARSER_H
 # error "Don't include parser.h directly, include parser-wrap.h instead."
 #endif
+
+#include "plugins/ctf/common/metadata/scanner.hpp"
 }
 
 %code provides {
-       BT_HIDDEN
        void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src);
 
-       BT_HIDDEN
        int import_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src, char delim);
 }
 
This page took 0.044549 seconds and 4 git commands to generate.