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 "Luau/Common.h"
|
|
|
|
|
|
|
|
#include <stdexcept>
|
2022-04-15 05:57:15 +08:00
|
|
|
#include <exception>
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
2022-04-15 05:57:15 +08:00
|
|
|
struct RecursionLimitException : public std::exception
|
|
|
|
{
|
|
|
|
const char* what() const noexcept
|
|
|
|
{
|
|
|
|
return "Internal recursion counter limit exceeded";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
struct RecursionCounter
|
|
|
|
{
|
|
|
|
RecursionCounter(int* count)
|
|
|
|
: count(count)
|
|
|
|
{
|
|
|
|
++(*count);
|
|
|
|
}
|
|
|
|
|
|
|
|
~RecursionCounter()
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(*count > 0);
|
|
|
|
--(*count);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int* count;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RecursionLimiter : RecursionCounter
|
|
|
|
{
|
2022-06-24 09:44:07 +08:00
|
|
|
RecursionLimiter(int* count, int limit)
|
2021-10-30 04:25:12 +08:00
|
|
|
: RecursionCounter(count)
|
|
|
|
{
|
|
|
|
if (limit > 0 && *count > limit)
|
2022-04-15 05:57:15 +08:00
|
|
|
{
|
2022-06-24 09:44:07 +08:00
|
|
|
throw RecursionLimitException();
|
2022-04-15 05:57:15 +08:00
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Luau
|