1 // import.h -- Go frontend import declarations. -*- C++ -*-
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
11 #include "go-linemap.h"
20 // This class manages importing Go declarations.
25 // The Stream class is an interface used to read the data. The
26 // caller should instantiate a child of this class.
33 // Return whether we have seen an error.
36 { return this->saw_error_
; }
38 // Record that we've seen an error.
41 { this->saw_error_
= true; }
43 // Return the next character (a value from 0 to 0xff) without
44 // advancing. Returns -1 at end of stream.
48 // Look for LENGTH characters, setting *BYTES to point to them.
49 // Returns false if the bytes are not available. Does not
52 peek(size_t length
, const char** bytes
)
53 { return this->do_peek(length
, bytes
); }
55 // Return the next character (a value from 0 to 0xff) and advance
56 // the read position by 1. Returns -1 at end of stream.
60 int c
= this->peek_char();
65 // Return true if at the end of the stream.
68 { return this->peek_char() == -1; }
70 // Return true if the next bytes match STR.
72 match_c_string(const char* str
)
73 { return this->match_bytes(str
, strlen(str
)); }
75 // Return true if the next LENGTH bytes match BYTES.
77 match_bytes(const char* bytes
, size_t length
);
79 // Give an error if the next bytes do not match STR. Advance the
80 // read position by the length of STR.
82 require_c_string(Location location
, const char* str
)
83 { this->require_bytes(location
, str
, strlen(str
)); }
85 // Given an error if the next LENGTH bytes do not match BYTES.
86 // Advance the read position by LENGTH.
88 require_bytes(Location
, const char* bytes
, size_t length
);
90 // Advance the read position by SKIP bytes.
94 this->do_advance(skip
);
98 // Return the current read position. This returns int because it
99 // is more convenient in error reporting. FIXME.
102 { return static_cast<int>(this->pos_
); }
105 // This function should set *BYTES to point to a buffer holding
106 // the LENGTH bytes at the current read position. It should
107 // return false if the bytes are not available. This should not
108 // change the current read position.
110 do_peek(size_t length
, const char** bytes
) = 0;
112 // This function should advance the current read position LENGTH
115 do_advance(size_t skip
) = 0;
118 // The current read position.
120 // True if we've seen an error reading from this stream.
124 // Find import data. This searches the file system for FILENAME and
125 // returns a pointer to a Stream object to read the data that it
126 // exports. LOCATION is the location of the import statement.
127 // RELATIVE_IMPORT_PATH is used as a prefix for a relative import.
129 open_package(const std::string
& filename
, Location location
,
130 const std::string
& relative_import_path
);
133 Import(Stream
*, Location
);
135 // Register the builtin types.
137 register_builtin_types(Gogo
*);
139 // Import everything defined in the stream. LOCAL_NAME is the local
140 // name to be used for bindings; if it is the string "." then
141 // bindings should be inserted in the global scope. If LOCAL_NAME
142 // is the empty string then the name of the package itself is the
143 // local name. This returns the imported package, or NULL on error.
145 import(Gogo
*, const std::string
& local_name
, bool is_local_name_exported
);
147 // The location of the import statement.
150 { return this->location_
; }
152 // Return the package we are importing.
155 { return this->package_
; }
157 // Return the next character.
160 { return this->stream_
->peek_char(); }
162 // Return the next character and advance.
165 { return this->stream_
->get_char(); }
167 // Return true at the end of the stream.
170 { return this->stream_
->at_eof(); }
172 // Return whether the next bytes match STR.
174 match_c_string(const char* str
)
175 { return this->stream_
->match_c_string(str
); }
177 // Require that the next bytes match STR.
179 require_c_string(const char* str
)
180 { this->stream_
->require_c_string(this->location_
, str
); }
182 // Advance the stream SKIP bytes.
185 { this->stream_
->advance(skip
); }
187 // Read an identifier.
191 // Read a name. This is like read_identifier, except that a "?" is
192 // returned as an empty string. This matches Export::write_name.
200 // Read an escape note.
206 try_package_in_directory(const std::string
&, Location
);
209 try_suffixes(std::string
*);
212 find_export_data(const std::string
& filename
, int fd
, Location
);
215 find_object_export_data(const std::string
& filename
, int fd
,
216 off_t offset
, Location
);
218 static const int archive_magic_len
= 8;
221 is_archive_magic(const char*);
224 find_archive_export_data(const std::string
& filename
, int fd
,
227 // Read a package line.
231 // Read an import line.
235 // Read the import control functions and init graph.
237 read_import_init_fns(Gogo
*);
239 // Import a constant.
247 // Import a variable.
251 // Import a function.
253 import_func(Package
*);
255 // Register a single builtin type.
257 register_builtin_type(Gogo
*, const char* name
, Builtin_code
);
259 // Get an integer from a string.
261 string_to_int(const std::string
&, bool is_neg_ok
, int* ret
);
263 // Get an unsigned integer from a string.
265 string_to_unsigned(const std::string
& s
, unsigned* ret
)
268 if (!this->string_to_int(s
, false, &ivalue
))
270 *ret
= static_cast<unsigned>(ivalue
);
274 // Return the version number of the export data we're reading.
276 version() const { return this->version_
; }
280 // The stream from which to read import data.
282 // The location of the import statement we are processing.
284 // The package we are importing.
286 // Whether to add new objects to the global scope, rather than to a
288 bool add_to_globals_
;
289 // Mapping from negated builtin type codes to Type structures.
290 std::vector
<Named_type
*> builtin_types_
;
291 // Mapping from exported type codes to Type structures.
292 std::vector
<Type
*> types_
;
293 // Version of export data we're reading.
294 Export_data_version version_
;
297 // Read import data from a string.
299 class Stream_from_string
: public Import::Stream
302 Stream_from_string(const std::string
& str
)
308 do_peek(size_t length
, const char** bytes
)
310 if (this->pos_
+ length
> this->str_
.length())
312 *bytes
= this->str_
.data() + this->pos_
;
317 do_advance(size_t len
)
318 { this->pos_
+= len
; }
321 // The string of data we are reading.
323 // The current position within the string.
327 // Read import data from a buffer allocated using malloc.
329 class Stream_from_buffer
: public Import::Stream
332 Stream_from_buffer(char* buf
, size_t length
)
333 : buf_(buf
), length_(length
), pos_(0)
336 ~Stream_from_buffer()
337 { free(this->buf_
); }
341 do_peek(size_t length
, const char** bytes
)
343 if (this->pos_
+ length
> this->length_
)
345 *bytes
= this->buf_
+ this->pos_
;
350 do_advance(size_t len
)
351 { this->pos_
+= len
; }
354 // The data we are reading.
356 // The length of the buffer.
358 // The current position within the buffer.
362 // Read import data from an open file descriptor.
364 class Stream_from_file
: public Import::Stream
367 Stream_from_file(int fd
);
373 do_peek(size_t, const char**);
380 Stream_from_file(const Stream_from_file
&);
381 Stream_from_file
& operator=(const Stream_from_file
&);
383 // The file descriptor.
385 // Data read from the file.
389 #endif // !defined(GO_IMPORT_H)