blob: ca3d565e24a23f3f443091cf2a6187c1cf129eb2 [file] [log] [blame]
#ifndef SCOPE_H_
#define SCOPE_H_
#include "NamedType.h"
#include <utils/KeyedVector.h>
#include <vector>
namespace android {
struct Formatter;
struct Interface;
struct Scope : public NamedType {
Scope(const char *localName);
bool addType(const char *localName, Type *type, std::string *errorMsg);
Type *lookupType(const char *name) const;
bool isScope() const override;
// Returns the single interface or NULL.
Interface *getInterface() const;
bool containsSingleInterface(std::string *ifaceName) const;
std::string pickUniqueAnonymousName() const;
std::string getJavaType() const override;
status_t emitTypeDeclarations(Formatter &out) const override;
status_t emitJavaTypeDeclarations(
Formatter &out, bool atTopLevel) const override;
status_t emitTypeDefinitions(
Formatter &out, const std::string prefix) const override;
const std::vector<Type *> &getSubTypes() const;
status_t emitVtsTypeDeclarations(Formatter &out) const override;
bool isJavaCompatible() const override;
size_t countTypes() const;
const Type *typeAt(size_t index, std::string *name) const;
private:
std::vector<Type *> mTypes;
KeyedVector<std::string, size_t> mTypeIndexByName;
DISALLOW_COPY_AND_ASSIGN(Scope);
};
} // namespace android
#endif // SCOPE_H_