/*
 * Copyright (c) Atmosphère-NX
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
#include 
#include "impl/os_interrupt_event_impl.hpp"
#include "impl/os_multiple_wait_holder_impl.hpp"
#include "impl/os_multiple_wait_object_list.hpp"
namespace ams::os {
    void InitializeInterruptEvent(InterruptEventType *event, InterruptName name, EventClearMode clear_mode) {
        /* Initialize member variables. */
        event->clear_mode = static_cast(clear_mode);
        /* Initialize implementation. */
        util::ConstructAt(event->impl, name, clear_mode);
        /* Mark initialized. */
        event->state = InterruptEventType::State_Initialized;
    }
    void FinalizeInterruptEvent(InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        /* Mark uninitialized. */
        event->state = InterruptEventType::State_NotInitialized;
        /* Destroy objects. */
        util::DestroyAt(event->impl);
    }
    void WaitInterruptEvent(InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        return GetReference(event->impl).Wait();
    }
    bool TryWaitInterruptEvent(InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        return GetReference(event->impl).TryWait();
    }
    bool TimedWaitInterruptEvent(InterruptEventType *event, TimeSpan timeout) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        AMS_ASSERT(timeout.GetNanoSeconds() >= 0);
        return GetReference(event->impl).TimedWait(timeout);
    }
    void ClearInterruptEvent(InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        return GetReference(event->impl).Clear();
    }
    NativeHandle GetInterruptEventHandle(const InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        return GetReference(event->impl).GetHandle();
    }
    void InitializeMultiWaitHolder(MultiWaitHolderType *multi_wait_holder, InterruptEventType *event) {
        AMS_ASSERT(event->state == InterruptEventType::State_Initialized);
        util::ConstructAt(GetReference(multi_wait_holder->impl_storage).holder_of_interrupt_event_storage, event);
        multi_wait_holder->user_data = 0;
    }
}