#pragma once #include #include #include namespace Kernel::ACPI::AML { struct Alias final : public AML::NamedObject { BAN::RefPtr target; Alias(NameSeg name, BAN::RefPtr target) : NamedObject(Node::Type::Alias, name) , target(target) {} bool is_scope() const override { return target->is_scope(); } BAN::RefPtr convert(uint8_t) override { return {}; } BAN::RefPtr copy() override { return target->copy(); } BAN::RefPtr store(BAN::RefPtr node) override { ASSERT(target); return target->store(node); } static ParseResult parse(ParseContext& context) { ASSERT(context.aml_data.size() >= 1); ASSERT(static_cast(context.aml_data[0]) == Byte::AliasOp); context.aml_data = context.aml_data.slice(1); auto source_string = AML::NameString::parse(context.aml_data); if (!source_string.has_value()) return ParseResult::Failure; auto source_object = AML::Namespace::root_namespace()->find_object(context.scope, source_string.value(), AML::Namespace::FindMode::Normal); auto alias_string = AML::NameString::parse(context.aml_data); if (!alias_string.has_value()) return ParseResult::Failure; if (!source_object) { AML_PRINT("Alias target could not be found"); return ParseResult::Success; } auto alias = MUST(BAN::RefPtr::create(alias_string.value().path.back(), source_object)); if (!Namespace::root_namespace()->add_named_object(context, alias_string.value(), alias)) return ParseResult::Success; #if AML_DEBUG_LEVEL >= 2 alias->debug_print(0); AML_DEBUG_PRINTLN(""); #endif return ParseResult::Success; } void debug_print(int indent) const override { AML_DEBUG_PRINT_INDENT(indent); AML_DEBUG_PRINTLN("Alias {} { ", name); target->debug_print(indent + 1); AML_DEBUG_PRINTLN(""); AML_DEBUG_PRINT_INDENT(indent); AML_DEBUG_PRINT("}"); } }; }