datadog-ruby_core_source 3.4.0 → 3.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.datadog.md +4 -0
  3. data/README.md +8 -5
  4. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/build_assert/build_assert.h +40 -0
  5. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/check_type/check_type.h +63 -0
  6. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/container_of/container_of.h +142 -0
  7. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/list/list.h +791 -0
  8. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ccan/str/str.h +17 -0
  9. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/id.h +352 -0
  10. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/id_table.h +39 -0
  11. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/array.h +152 -0
  12. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/basic_operators.h +65 -0
  13. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/bignum.h +244 -0
  14. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/bits.h +650 -0
  15. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/class.h +283 -0
  16. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/cmdlineopt.h +61 -0
  17. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compar.h +29 -0
  18. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compile.h +34 -0
  19. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/compilers.h +107 -0
  20. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/complex.h +29 -0
  21. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/cont.h +35 -0
  22. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/dir.h +16 -0
  23. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enc.h +19 -0
  24. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/encoding.h +38 -0
  25. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enum.h +18 -0
  26. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/enumerator.h +21 -0
  27. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/error.h +244 -0
  28. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/eval.h +33 -0
  29. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/file.h +38 -0
  30. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/fixnum.h +185 -0
  31. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/gc.h +333 -0
  32. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/hash.h +193 -0
  33. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/imemo.h +257 -0
  34. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/inits.h +47 -0
  35. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/io.h +143 -0
  36. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/load.h +18 -0
  37. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/loadpath.h +16 -0
  38. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/math.h +23 -0
  39. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/missing.h +19 -0
  40. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/numeric.h +274 -0
  41. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/object.h +63 -0
  42. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/parse.h +131 -0
  43. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/proc.h +30 -0
  44. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/process.h +124 -0
  45. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/ractor.h +10 -0
  46. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/random.h +17 -0
  47. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/range.h +40 -0
  48. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/rational.h +71 -0
  49. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/re.h +28 -0
  50. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/ruby_parser.h +102 -0
  51. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/sanitizers.h +330 -0
  52. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/serial.h +23 -0
  53. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/signal.h +24 -0
  54. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/st.h +11 -0
  55. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/static_assert.h +16 -0
  56. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/string.h +199 -0
  57. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/struct.h +119 -0
  58. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/symbol.h +47 -0
  59. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/thread.h +108 -0
  60. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/time.h +37 -0
  61. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/transcode.h +23 -0
  62. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/util.h +27 -0
  63. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/variable.h +70 -0
  64. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/vm.h +137 -0
  65. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal/warnings.h +16 -0
  66. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/internal.h +108 -0
  67. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/iseq.h +351 -0
  68. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/method.h +258 -0
  69. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/node.h +122 -0
  70. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/parser_st.h +162 -0
  71. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/parser_value.h +106 -0
  72. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/ast.h +7964 -0
  73. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/defines.h +260 -0
  74. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/diagnostic.h +451 -0
  75. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/encoding.h +283 -0
  76. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/extension.h +19 -0
  77. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/node.h +129 -0
  78. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/options.h +442 -0
  79. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/pack.h +163 -0
  80. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/parser.h +933 -0
  81. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/prettyprint.h +34 -0
  82. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/prism.h +383 -0
  83. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/regexp.h +43 -0
  84. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/static_literals.h +121 -0
  85. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_buffer.h +228 -0
  86. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_char.h +204 -0
  87. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_constant_pool.h +218 -0
  88. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_integer.h +126 -0
  89. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_list.h +97 -0
  90. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_memchr.h +29 -0
  91. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_newline_list.h +113 -0
  92. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_string.h +190 -0
  93. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_strncasecmp.h +32 -0
  94. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/util/pm_strpbrk.h +46 -0
  95. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism/version.h +29 -0
  96. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/prism_compile.h +105 -0
  97. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ractor_core.h +382 -0
  98. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ruby_assert.h +14 -0
  99. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/ruby_atomic.h +23 -0
  100. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/rubyparser.h +1380 -0
  101. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/shape.h +234 -0
  102. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/thread_none.h +21 -0
  103. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/thread_pthread.h +167 -0
  104. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_core.h +2235 -0
  105. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_debug.h +124 -0
  106. data/lib/datadog/ruby_core_source/ruby-3.5.0-preview1/vm_opts.h +67 -0
  107. data/lib/datadog/ruby_core_source/version.rb +1 -1
  108. metadata +105 -2
@@ -0,0 +1,34 @@
1
+ /**
2
+ * @file prettyprint.h
3
+ *
4
+ * An AST node pretty-printer.
5
+ */
6
+ #ifndef PRISM_PRETTYPRINT_H
7
+ #define PRISM_PRETTYPRINT_H
8
+
9
+ #include "prism/defines.h"
10
+
11
+ #ifdef PRISM_EXCLUDE_PRETTYPRINT
12
+
13
+ void pm_prettyprint(void);
14
+
15
+ #else
16
+
17
+ #include <stdio.h>
18
+
19
+ #include "prism/ast.h"
20
+ #include "prism/parser.h"
21
+ #include "prism/util/pm_buffer.h"
22
+
23
+ /**
24
+ * Pretty-prints the AST represented by the given node to the given buffer.
25
+ *
26
+ * @param output_buffer The buffer to write the pretty-printed AST to.
27
+ * @param parser The parser that parsed the AST.
28
+ * @param node The root node of the AST to pretty-print.
29
+ */
30
+ PRISM_EXPORTED_FUNCTION void pm_prettyprint(pm_buffer_t *output_buffer, const pm_parser_t *parser, const pm_node_t *node);
31
+
32
+ #endif
33
+
34
+ #endif
@@ -0,0 +1,383 @@
1
+ /**
2
+ * @file prism.h
3
+ *
4
+ * The main header file for the prism parser.
5
+ */
6
+ #ifndef PRISM_H
7
+ #define PRISM_H
8
+
9
+ #include "prism/defines.h"
10
+ #include "prism/util/pm_buffer.h"
11
+ #include "prism/util/pm_char.h"
12
+ #include "prism/util/pm_integer.h"
13
+ #include "prism/util/pm_memchr.h"
14
+ #include "prism/util/pm_strncasecmp.h"
15
+ #include "prism/util/pm_strpbrk.h"
16
+ #include "prism/ast.h"
17
+ #include "prism/diagnostic.h"
18
+ #include "prism/node.h"
19
+ #include "prism/options.h"
20
+ #include "prism/pack.h"
21
+ #include "prism/parser.h"
22
+ #include "prism/prettyprint.h"
23
+ #include "prism/regexp.h"
24
+ #include "prism/static_literals.h"
25
+ #include "prism/version.h"
26
+
27
+ #include <assert.h>
28
+ #include <errno.h>
29
+ #include <locale.h>
30
+ #include <math.h>
31
+ #include <stdarg.h>
32
+ #include <stdbool.h>
33
+ #include <stdint.h>
34
+ #include <stdio.h>
35
+ #include <stdlib.h>
36
+ #include <string.h>
37
+
38
+ #ifndef _WIN32
39
+ #include <strings.h>
40
+ #endif
41
+
42
+ /**
43
+ * The prism version and the serialization format.
44
+ *
45
+ * @returns The prism version as a constant string.
46
+ */
47
+ PRISM_EXPORTED_FUNCTION const char * pm_version(void);
48
+
49
+ /**
50
+ * Initialize a parser with the given start and end pointers.
51
+ *
52
+ * @param parser The parser to initialize.
53
+ * @param source The source to parse.
54
+ * @param size The size of the source.
55
+ * @param options The optional options to use when parsing.
56
+ */
57
+ PRISM_EXPORTED_FUNCTION void pm_parser_init(pm_parser_t *parser, const uint8_t *source, size_t size, const pm_options_t *options);
58
+
59
+ /**
60
+ * Register a callback that will be called whenever prism changes the encoding
61
+ * it is using to parse based on the magic comment.
62
+ *
63
+ * @param parser The parser to register the callback with.
64
+ * @param callback The callback to register.
65
+ */
66
+ PRISM_EXPORTED_FUNCTION void pm_parser_register_encoding_changed_callback(pm_parser_t *parser, pm_encoding_changed_callback_t callback);
67
+
68
+ /**
69
+ * Free any memory associated with the given parser.
70
+ *
71
+ * @param parser The parser to free.
72
+ */
73
+ PRISM_EXPORTED_FUNCTION void pm_parser_free(pm_parser_t *parser);
74
+
75
+ /**
76
+ * Initiate the parser with the given parser.
77
+ *
78
+ * @param parser The parser to use.
79
+ * @return The AST representing the source.
80
+ */
81
+ PRISM_EXPORTED_FUNCTION pm_node_t * pm_parse(pm_parser_t *parser);
82
+
83
+ /**
84
+ * This function is used in pm_parse_stream to retrieve a line of input from a
85
+ * stream. It closely mirrors that of fgets so that fgets can be used as the
86
+ * default implementation.
87
+ */
88
+ typedef char * (pm_parse_stream_fgets_t)(char *string, int size, void *stream);
89
+
90
+ /**
91
+ * Parse a stream of Ruby source and return the tree.
92
+ *
93
+ * @param parser The parser to use.
94
+ * @param buffer The buffer to use.
95
+ * @param stream The stream to parse.
96
+ * @param stream_fgets The function to use to read from the stream.
97
+ * @param options The optional options to use when parsing.
98
+ * @return The AST representing the source.
99
+ */
100
+ PRISM_EXPORTED_FUNCTION pm_node_t * pm_parse_stream(pm_parser_t *parser, pm_buffer_t *buffer, void *stream, pm_parse_stream_fgets_t *stream_fgets, const pm_options_t *options);
101
+
102
+ // We optionally support serializing to a binary string. For systems that don't
103
+ // want or need this functionality, it can be turned off with the
104
+ // PRISM_EXCLUDE_SERIALIZATION define.
105
+ #ifndef PRISM_EXCLUDE_SERIALIZATION
106
+
107
+ /**
108
+ * Parse and serialize the AST represented by the source that is read out of the
109
+ * given stream into to the given buffer.
110
+ *
111
+ * @param buffer The buffer to serialize to.
112
+ * @param stream The stream to parse.
113
+ * @param stream_fgets The function to use to read from the stream.
114
+ * @param data The optional data to pass to the parser.
115
+ */
116
+ PRISM_EXPORTED_FUNCTION void pm_serialize_parse_stream(pm_buffer_t *buffer, void *stream, pm_parse_stream_fgets_t *stream_fgets, const char *data);
117
+
118
+ /**
119
+ * Serialize the given list of comments to the given buffer.
120
+ *
121
+ * @param parser The parser to serialize.
122
+ * @param list The list of comments to serialize.
123
+ * @param buffer The buffer to serialize to.
124
+ */
125
+ void pm_serialize_comment_list(pm_parser_t *parser, pm_list_t *list, pm_buffer_t *buffer);
126
+
127
+ /**
128
+ * Serialize the name of the encoding to the buffer.
129
+ *
130
+ * @param encoding The encoding to serialize.
131
+ * @param buffer The buffer to serialize to.
132
+ */
133
+ void pm_serialize_encoding(const pm_encoding_t *encoding, pm_buffer_t *buffer);
134
+
135
+ /**
136
+ * Serialize the encoding, metadata, nodes, and constant pool.
137
+ *
138
+ * @param parser The parser to serialize.
139
+ * @param node The node to serialize.
140
+ * @param buffer The buffer to serialize to.
141
+ */
142
+ void pm_serialize_content(pm_parser_t *parser, pm_node_t *node, pm_buffer_t *buffer);
143
+
144
+ /**
145
+ * Serialize the AST represented by the given node to the given buffer.
146
+ *
147
+ * @param parser The parser to serialize.
148
+ * @param node The node to serialize.
149
+ * @param buffer The buffer to serialize to.
150
+ */
151
+ PRISM_EXPORTED_FUNCTION void pm_serialize(pm_parser_t *parser, pm_node_t *node, pm_buffer_t *buffer);
152
+
153
+ /**
154
+ * Parse the given source to the AST and dump the AST to the given buffer.
155
+ *
156
+ * @param buffer The buffer to serialize to.
157
+ * @param source The source to parse.
158
+ * @param size The size of the source.
159
+ * @param data The optional data to pass to the parser.
160
+ */
161
+ PRISM_EXPORTED_FUNCTION void pm_serialize_parse(pm_buffer_t *buffer, const uint8_t *source, size_t size, const char *data);
162
+
163
+ /**
164
+ * Parse and serialize the comments in the given source to the given buffer.
165
+ *
166
+ * @param buffer The buffer to serialize to.
167
+ * @param source The source to parse.
168
+ * @param size The size of the source.
169
+ * @param data The optional data to pass to the parser.
170
+ */
171
+ PRISM_EXPORTED_FUNCTION void pm_serialize_parse_comments(pm_buffer_t *buffer, const uint8_t *source, size_t size, const char *data);
172
+
173
+ /**
174
+ * Lex the given source and serialize to the given buffer.
175
+ *
176
+ * @param source The source to lex.
177
+ * @param size The size of the source.
178
+ * @param buffer The buffer to serialize to.
179
+ * @param data The optional data to pass to the lexer.
180
+ */
181
+ PRISM_EXPORTED_FUNCTION void pm_serialize_lex(pm_buffer_t *buffer, const uint8_t *source, size_t size, const char *data);
182
+
183
+ /**
184
+ * Parse and serialize both the AST and the tokens represented by the given
185
+ * source to the given buffer.
186
+ *
187
+ * @param buffer The buffer to serialize to.
188
+ * @param source The source to parse.
189
+ * @param size The size of the source.
190
+ * @param data The optional data to pass to the parser.
191
+ */
192
+ PRISM_EXPORTED_FUNCTION void pm_serialize_parse_lex(pm_buffer_t *buffer, const uint8_t *source, size_t size, const char *data);
193
+
194
+ #endif
195
+
196
+ /**
197
+ * Parse the source and return true if it parses without errors or warnings.
198
+ *
199
+ * @param source The source to parse.
200
+ * @param size The size of the source.
201
+ * @param data The optional data to pass to the parser.
202
+ * @return True if the source parses without errors or warnings.
203
+ */
204
+ PRISM_EXPORTED_FUNCTION bool pm_parse_success_p(const uint8_t *source, size_t size, const char *data);
205
+
206
+ /**
207
+ * Returns a string representation of the given token type.
208
+ *
209
+ * @param token_type The token type to convert to a string.
210
+ * @return A string representation of the given token type.
211
+ */
212
+ PRISM_EXPORTED_FUNCTION const char * pm_token_type_name(pm_token_type_t token_type);
213
+
214
+ /**
215
+ * Returns the human name of the given token type.
216
+ *
217
+ * @param token_type The token type to convert to a human name.
218
+ * @return The human name of the given token type.
219
+ */
220
+ const char * pm_token_type_human(pm_token_type_t token_type);
221
+
222
+ // We optionally support dumping to JSON. For systems that don't want or need
223
+ // this functionality, it can be turned off with the PRISM_EXCLUDE_JSON define.
224
+ #ifndef PRISM_EXCLUDE_JSON
225
+
226
+ /**
227
+ * Dump JSON to the given buffer.
228
+ *
229
+ * @param buffer The buffer to serialize to.
230
+ * @param parser The parser that parsed the node.
231
+ * @param node The node to serialize.
232
+ */
233
+ PRISM_EXPORTED_FUNCTION void pm_dump_json(pm_buffer_t *buffer, const pm_parser_t *parser, const pm_node_t *node);
234
+
235
+ #endif
236
+
237
+ /**
238
+ * Represents the results of a slice query.
239
+ */
240
+ typedef enum {
241
+ /** Returned if the encoding given to a slice query was invalid. */
242
+ PM_STRING_QUERY_ERROR = -1,
243
+
244
+ /** Returned if the result of the slice query is false. */
245
+ PM_STRING_QUERY_FALSE,
246
+
247
+ /** Returned if the result of the slice query is true. */
248
+ PM_STRING_QUERY_TRUE
249
+ } pm_string_query_t;
250
+
251
+ /**
252
+ * Check that the slice is a valid local variable name.
253
+ *
254
+ * @param source The source to check.
255
+ * @param length The length of the source.
256
+ * @param encoding_name The name of the encoding of the source.
257
+ * @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
258
+ * the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
259
+ */
260
+ PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_local(const uint8_t *source, size_t length, const char *encoding_name);
261
+
262
+ /**
263
+ * Check that the slice is a valid constant name.
264
+ *
265
+ * @param source The source to check.
266
+ * @param length The length of the source.
267
+ * @param encoding_name The name of the encoding of the source.
268
+ * @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
269
+ * the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
270
+ */
271
+ PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_constant(const uint8_t *source, size_t length, const char *encoding_name);
272
+
273
+ /**
274
+ * Check that the slice is a valid method name.
275
+ *
276
+ * @param source The source to check.
277
+ * @param length The length of the source.
278
+ * @param encoding_name The name of the encoding of the source.
279
+ * @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
280
+ * the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
281
+ */
282
+ PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_method_name(const uint8_t *source, size_t length, const char *encoding_name);
283
+
284
+ /**
285
+ * @mainpage
286
+ *
287
+ * Prism is a parser for the Ruby programming language. It is designed to be
288
+ * portable, error tolerant, and maintainable. It is written in C99 and has no
289
+ * dependencies. It is currently being integrated into
290
+ * [CRuby](https://github.com/ruby/ruby),
291
+ * [JRuby](https://github.com/jruby/jruby),
292
+ * [TruffleRuby](https://github.com/oracle/truffleruby),
293
+ * [Sorbet](https://github.com/sorbet/sorbet), and
294
+ * [Syntax Tree](https://github.com/ruby-syntax-tree/syntax_tree).
295
+ *
296
+ * @section getting-started Getting started
297
+ *
298
+ * If you're vendoring this project and compiling it statically then as long as
299
+ * you have a C99 compiler you will be fine. If you're linking against it as
300
+ * shared library, then you should compile with `-fvisibility=hidden` and
301
+ * `-DPRISM_EXPORT_SYMBOLS` to tell prism to make only its public interface
302
+ * visible.
303
+ *
304
+ * @section parsing Parsing
305
+ *
306
+ * In order to parse Ruby code, the structures and functions that you're going
307
+ * to want to use and be aware of are:
308
+ *
309
+ * * `pm_parser_t` - the main parser structure
310
+ * * `pm_parser_init` - initialize a parser
311
+ * * `pm_parse` - parse and return the root node
312
+ * * `pm_node_destroy` - deallocate the root node returned by `pm_parse`
313
+ * * `pm_parser_free` - free the internal memory of the parser
314
+ *
315
+ * Putting all of this together would look something like:
316
+ *
317
+ * ```c
318
+ * void parse(const uint8_t *source, size_t length) {
319
+ * pm_parser_t parser;
320
+ * pm_parser_init(&parser, source, length, NULL);
321
+ *
322
+ * pm_node_t *root = pm_parse(&parser);
323
+ * printf("PARSED!\n");
324
+ *
325
+ * pm_node_destroy(&parser, root);
326
+ * pm_parser_free(&parser);
327
+ * }
328
+ * ```
329
+ *
330
+ * All of the nodes "inherit" from `pm_node_t` by embedding those structures as
331
+ * their first member. This means you can downcast and upcast any node in the
332
+ * tree to a `pm_node_t`.
333
+ *
334
+ * @section serializing Serializing
335
+ *
336
+ * Prism provides the ability to serialize the AST and its related metadata into
337
+ * a binary format. This format is designed to be portable to different
338
+ * languages and runtimes so that you only need to make one FFI call in order to
339
+ * parse Ruby code. The structures and functions that you're going to want to
340
+ * use and be aware of are:
341
+ *
342
+ * * `pm_buffer_t` - a small buffer object that will hold the serialized AST
343
+ * * `pm_buffer_free` - free the memory associated with the buffer
344
+ * * `pm_serialize` - serialize the AST into a buffer
345
+ * * `pm_serialize_parse` - parse and serialize the AST into a buffer
346
+ *
347
+ * Putting all of this together would look something like:
348
+ *
349
+ * ```c
350
+ * void serialize(const uint8_t *source, size_t length) {
351
+ * pm_buffer_t buffer = { 0 };
352
+ *
353
+ * pm_serialize_parse(&buffer, source, length, NULL);
354
+ * printf("SERIALIZED!\n");
355
+ *
356
+ * pm_buffer_free(&buffer);
357
+ * }
358
+ * ```
359
+ *
360
+ * @section inspecting Inspecting
361
+ *
362
+ * Prism provides the ability to inspect the AST by pretty-printing nodes. You
363
+ * can do this with the `pm_prettyprint` function, which you would use like:
364
+ *
365
+ * ```c
366
+ * void prettyprint(const uint8_t *source, size_t length) {
367
+ * pm_parser_t parser;
368
+ * pm_parser_init(&parser, source, length, NULL);
369
+ *
370
+ * pm_node_t *root = pm_parse(&parser);
371
+ * pm_buffer_t buffer = { 0 };
372
+ *
373
+ * pm_prettyprint(&buffer, &parser, root);
374
+ * printf("%*.s\n", (int) buffer.length, buffer.value);
375
+ *
376
+ * pm_buffer_free(&buffer);
377
+ * pm_node_destroy(&parser, root);
378
+ * pm_parser_free(&parser);
379
+ * }
380
+ * ```
381
+ */
382
+
383
+ #endif
@@ -0,0 +1,43 @@
1
+ /**
2
+ * @file regexp.h
3
+ *
4
+ * A regular expression parser.
5
+ */
6
+ #ifndef PRISM_REGEXP_H
7
+ #define PRISM_REGEXP_H
8
+
9
+ #include "prism/defines.h"
10
+ #include "prism/parser.h"
11
+ #include "prism/encoding.h"
12
+ #include "prism/util/pm_memchr.h"
13
+ #include "prism/util/pm_string.h"
14
+
15
+ #include <stdbool.h>
16
+ #include <stddef.h>
17
+ #include <string.h>
18
+
19
+ /**
20
+ * This callback is called when a named capture group is found.
21
+ */
22
+ typedef void (*pm_regexp_name_callback_t)(const pm_string_t *name, void *data);
23
+
24
+ /**
25
+ * This callback is called when a parse error is found.
26
+ */
27
+ typedef void (*pm_regexp_error_callback_t)(const uint8_t *start, const uint8_t *end, const char *message, void *data);
28
+
29
+ /**
30
+ * Parse a regular expression.
31
+ *
32
+ * @param parser The parser that is currently being used.
33
+ * @param source The source code to parse.
34
+ * @param size The size of the source code.
35
+ * @param extended_mode Whether to parse the regular expression in extended mode.
36
+ * @param name_callback The optional callback to call when a named capture group is found.
37
+ * @param name_data The optional data to pass to the name callback.
38
+ * @param error_callback The callback to call when a parse error is found.
39
+ * @param error_data The data to pass to the error callback.
40
+ */
41
+ PRISM_EXPORTED_FUNCTION void pm_regexp_parse(pm_parser_t *parser, const uint8_t *source, size_t size, bool extended_mode, pm_regexp_name_callback_t name_callback, void *name_data, pm_regexp_error_callback_t error_callback, void *error_data);
42
+
43
+ #endif
@@ -0,0 +1,121 @@
1
+ /**
2
+ * @file static_literals.h
3
+ *
4
+ * A set of static literal nodes that can be checked for duplicates.
5
+ */
6
+ #ifndef PRISM_STATIC_LITERALS_H
7
+ #define PRISM_STATIC_LITERALS_H
8
+
9
+ #include "prism/defines.h"
10
+ #include "prism/ast.h"
11
+ #include "prism/util/pm_newline_list.h"
12
+
13
+ #include <assert.h>
14
+ #include <stdbool.h>
15
+
16
+ /**
17
+ * An internal hash table for a set of nodes.
18
+ */
19
+ typedef struct {
20
+ /** The array of nodes in the hash table. */
21
+ pm_node_t **nodes;
22
+
23
+ /** The size of the hash table. */
24
+ uint32_t size;
25
+
26
+ /** The space that has been allocated in the hash table. */
27
+ uint32_t capacity;
28
+ } pm_node_hash_t;
29
+
30
+ /**
31
+ * Certain sets of nodes (hash keys and when clauses) check for duplicate nodes
32
+ * to alert the user of potential issues. To do this, we keep a set of the nodes
33
+ * that have been seen so far, and compare whenever we find a new node.
34
+ *
35
+ * We bucket the nodes based on their type to minimize the number of comparisons
36
+ * that need to be performed.
37
+ */
38
+ typedef struct {
39
+ /**
40
+ * This is the set of IntegerNode and SourceLineNode instances.
41
+ */
42
+ pm_node_hash_t integer_nodes;
43
+
44
+ /**
45
+ * This is the set of FloatNode instances.
46
+ */
47
+ pm_node_hash_t float_nodes;
48
+
49
+ /**
50
+ * This is the set of RationalNode and ImaginaryNode instances.
51
+ */
52
+ pm_node_hash_t number_nodes;
53
+
54
+ /**
55
+ * This is the set of StringNode and SourceFileNode instances.
56
+ */
57
+ pm_node_hash_t string_nodes;
58
+
59
+ /**
60
+ * This is the set of RegularExpressionNode instances.
61
+ */
62
+ pm_node_hash_t regexp_nodes;
63
+
64
+ /**
65
+ * This is the set of SymbolNode instances.
66
+ */
67
+ pm_node_hash_t symbol_nodes;
68
+
69
+ /**
70
+ * A pointer to the last TrueNode instance that was inserted, or NULL.
71
+ */
72
+ pm_node_t *true_node;
73
+
74
+ /**
75
+ * A pointer to the last FalseNode instance that was inserted, or NULL.
76
+ */
77
+ pm_node_t *false_node;
78
+
79
+ /**
80
+ * A pointer to the last NilNode instance that was inserted, or NULL.
81
+ */
82
+ pm_node_t *nil_node;
83
+
84
+ /**
85
+ * A pointer to the last SourceEncodingNode instance that was inserted, or
86
+ * NULL.
87
+ */
88
+ pm_node_t *source_encoding_node;
89
+ } pm_static_literals_t;
90
+
91
+ /**
92
+ * Add a node to the set of static literals.
93
+ *
94
+ * @param newline_list The list of newline offsets to use to calculate lines.
95
+ * @param start_line The line number that the parser starts on.
96
+ * @param literals The set of static literals to add the node to.
97
+ * @param node The node to add to the set.
98
+ * @param replace Whether to replace the previous node if one already exists.
99
+ * @return A pointer to the node that is being overwritten, if there is one.
100
+ */
101
+ pm_node_t * pm_static_literals_add(const pm_newline_list_t *newline_list, int32_t start_line, pm_static_literals_t *literals, pm_node_t *node, bool replace);
102
+
103
+ /**
104
+ * Free the internal memory associated with the given static literals set.
105
+ *
106
+ * @param literals The set of static literals to free.
107
+ */
108
+ void pm_static_literals_free(pm_static_literals_t *literals);
109
+
110
+ /**
111
+ * Create a string-based representation of the given static literal.
112
+ *
113
+ * @param buffer The buffer to write the string to.
114
+ * @param newline_list The list of newline offsets to use to calculate lines.
115
+ * @param start_line The line number that the parser starts on.
116
+ * @param encoding_name The name of the encoding of the source being parsed.
117
+ * @param node The node to create a string representation of.
118
+ */
119
+ void pm_static_literal_inspect(pm_buffer_t *buffer, const pm_newline_list_t *newline_list, int32_t start_line, const char *encoding_name, const pm_node_t *node);
120
+
121
+ #endif