78 lines
3.2 KiB
C++
78 lines
3.2 KiB
C++
#pragma once
|
|
|
|
#include "utils/message.hh"
|
|
#include "utils/location.hh"
|
|
|
|
namespace ppc::lang {
|
|
template <class T>
|
|
struct located_t : T {
|
|
location_t location;
|
|
|
|
located_t(location_t loc, const T &val): T(val), location(loc) { }
|
|
located_t(const T &val): T(val), location(location_t::NONE) { }
|
|
located_t() { }
|
|
};
|
|
template <class T>
|
|
struct slocated_t {
|
|
T value;
|
|
location_t location;
|
|
|
|
bool operator ==(const slocated_t<T> &other) {
|
|
return value == other.value && location == other.location;
|
|
}
|
|
bool operator !=(const slocated_t<T> &other) {
|
|
return !(*this == other);
|
|
}
|
|
|
|
slocated_t(location_t loc, const T &val): value(val), location(loc) { }
|
|
slocated_t(const T &val): value(val), location(location_t::NONE) { }
|
|
slocated_t() { }
|
|
};
|
|
|
|
struct namespace_name_t : public std::vector<std::string> {
|
|
using base = std::vector<std::string>;
|
|
|
|
int compare(const namespace_name_t &other) const;
|
|
|
|
bool operator==(const namespace_name_t &other) const { return compare(other) == 0; }
|
|
bool operator!=(const namespace_name_t &other) const { return compare(other) != 0; }
|
|
bool operator<(const namespace_name_t &other) const { return compare(other) < 0; }
|
|
bool operator<=(const namespace_name_t &other) const { return compare(other) <= 0; }
|
|
bool operator>(const namespace_name_t &other) const { return compare(other) > 0; }
|
|
bool operator>=(const namespace_name_t &other) const { return compare(other) >= 0; }
|
|
|
|
operator std::string() const { return to_string(); }
|
|
std::string to_string() const;
|
|
|
|
namespace_name_t() { }
|
|
namespace_name_t(std::initializer_list<std::string> segments): base(segments.begin(), segments.end()) { }
|
|
};
|
|
|
|
struct loc_namespace_name_t : public std::vector<located_t<std::string>> {
|
|
using base = std::vector<located_t<std::string>>;
|
|
|
|
int compare(const loc_namespace_name_t &other) const;
|
|
|
|
bool operator==(const loc_namespace_name_t &other) const { return compare(other) == 0; }
|
|
bool operator!=(const loc_namespace_name_t &other) const { return compare(other) != 0; }
|
|
bool operator<(const loc_namespace_name_t &other) const { return compare(other) < 0; }
|
|
bool operator<=(const loc_namespace_name_t &other) const { return compare(other) <= 0; }
|
|
bool operator>(const loc_namespace_name_t &other) const { return compare(other) > 0; }
|
|
bool operator>=(const loc_namespace_name_t &other) const { return compare(other) >= 0; }
|
|
|
|
namespace_name_t strip_location() const;
|
|
|
|
operator std::string() const { return to_string(); }
|
|
std::string to_string() const;
|
|
|
|
loc_namespace_name_t() { }
|
|
loc_namespace_name_t(std::initializer_list<located_t<std::string>> segments): base(segments.begin(), segments.end()) { }
|
|
};
|
|
|
|
bool is_identifier_valid(messages::msg_stack_t &msg_stack, ppc::location_t location, const std::string &name);
|
|
inline bool is_identifier_valid(const std::string &name) {
|
|
messages::msg_stack_t ms;
|
|
return is_identifier_valid(ms, { }, name);
|
|
}
|
|
}
|