2021-10-30 04:25:12 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
class AstExpr;
|
|
|
|
|
|
|
|
using ModuleName = std::string;
|
|
|
|
|
|
|
|
struct SourceCode
|
|
|
|
{
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Module,
|
|
|
|
Script,
|
|
|
|
Local
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string source;
|
|
|
|
Type type;
|
|
|
|
};
|
|
|
|
|
2021-11-05 10:07:18 +08:00
|
|
|
struct ModuleInfo
|
|
|
|
{
|
|
|
|
ModuleName name;
|
|
|
|
bool optional = false;
|
|
|
|
};
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
struct FileResolver
|
|
|
|
{
|
|
|
|
virtual ~FileResolver() {}
|
|
|
|
|
|
|
|
virtual std::optional<SourceCode> readSource(const ModuleName& name) = 0;
|
|
|
|
|
2021-11-05 10:07:18 +08:00
|
|
|
virtual std::optional<ModuleInfo> resolveModule(const ModuleInfo* context, AstExpr* expr)
|
|
|
|
{
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2021-11-05 10:07:18 +08:00
|
|
|
virtual std::string getHumanReadableModuleName(const ModuleName& name) const
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2021-11-05 10:07:18 +08:00
|
|
|
virtual std::optional<std::string> getEnvironmentForModule(const ModuleName& name) const
|
|
|
|
{
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct NullFileResolver : FileResolver
|
|
|
|
{
|
|
|
|
std::optional<SourceCode> readSource(const ModuleName& name) override
|
|
|
|
{
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Luau
|