mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00

This commit marks (hopefully) ever one-parameter constructor as explicit. It also uses override in (hopefully) all circumstances where a virtual method is overridden. There are a very few other minor changes - most of them were necessary to get everything to compile (like one additional constructor). In one case I changed an implicit operation to an explicit string conversion - I think the automatically chosen conversion was much more convoluted. This took longer than I want to admit but not as long as I feared :)
82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#ifndef scope_h
|
|
#define scope_h
|
|
|
|
#include <string>
|
|
|
|
#include "Dict.h"
|
|
#include "Obj.h"
|
|
#include "BroList.h"
|
|
#include "TraverseTypes.h"
|
|
#include "module_util.h"
|
|
|
|
class ID;
|
|
class BroType;
|
|
class ListVal;
|
|
|
|
declare(PDict,ID);
|
|
|
|
class Scope : public BroObj {
|
|
public:
|
|
explicit Scope(ID* id);
|
|
~Scope() override;
|
|
|
|
ID* Lookup(const char* name) const { return local->Lookup(name); }
|
|
void Insert(const char* name, ID* id) { local->Insert(name, id); }
|
|
ID* Remove(const char* name)
|
|
{
|
|
HashKey key(name);
|
|
return (ID*) local->Remove(&key);
|
|
}
|
|
|
|
ID* ScopeID() const { return scope_id; }
|
|
BroType* ReturnType() const { return return_type; }
|
|
|
|
int Length() const { return local->Length(); }
|
|
PDict(ID)* Vars() const { return local; }
|
|
|
|
ID* GenerateTemporary(const char* name);
|
|
|
|
PDict(ID)* GetIDs() const { return local; }
|
|
|
|
// Returns the list of variables needing initialization, and
|
|
// removes it from this Scope.
|
|
id_list* GetInits();
|
|
|
|
// Adds a variable to the list.
|
|
void AddInit(ID* id) { inits->append(id); }
|
|
|
|
void Describe(ODesc* d) const override;
|
|
|
|
TraversalCode Traverse(TraversalCallback* cb) const;
|
|
|
|
protected:
|
|
ID* scope_id;
|
|
BroType* return_type;
|
|
PDict(ID)* local;
|
|
id_list* inits;
|
|
};
|
|
|
|
|
|
extern bool in_debug;
|
|
|
|
// If no_global is true, don't search in the default "global" namespace.
|
|
// This passed ownership of a ref'ed ID to the caller.
|
|
extern ID* lookup_ID(const char* name, const char* module,
|
|
bool no_global = false, bool same_module_only=false);
|
|
extern ID* install_ID(const char* name, const char* module_name,
|
|
bool is_global, bool is_export);
|
|
|
|
extern void push_scope(ID* id);
|
|
extern void push_existing_scope(Scope* scope);
|
|
|
|
// Returns the one popped off; it's not deleted.
|
|
extern Scope* pop_scope();
|
|
extern Scope* current_scope();
|
|
extern Scope* global_scope();
|
|
|
|
// Current module (identified by its name).
|
|
extern string current_module;
|
|
|
|
#endif
|