AuroraRuntime/Source/IO/Loop/LSHandle.cpp
Reece Wilson 433898709e [*] Check for null handle under LSHandle bc win32 apis are inconsistent as shit
[*] _beginthreadex returns null, nonex returns -1, and it doesnt fucking work with affinity but seems to work with name updates. i dont care to fix this yet. fuck microsoft.
[*] NT: preempt process watch thread of leaders instead of syncing to the process under a watch guard on free (evil, we should use a builtin nt threadpool. also cant be arsed to resolve)
2022-07-08 22:58:49 +01:00

94 lines
1.9 KiB
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: LSHandle.cpp
Date: 2021-10-1
Author: Reece
***/
#include <Source/RuntimeInternal.hpp>
#include "LSHandle.hpp"
namespace Aurora::IO::Loop
{
LSHandle::LSHandle()
{}
LSHandle::LSHandle(AuUInt handle_) : handle(handle_)
{}
LSHandle::LSHandle(AuUInt handleRd, AuUInt handleWr) : handle(handleRd)
#if defined(AURORA_IS_POSIX_DERIVED)
, handleWr(handleWr)
#endif
{}
bool LSHandle::OnTrigger(AuUInt handle)
{
return true;
}
const AuList<AuUInt> &LSHandle::GetHandles()
{
static AuList<AuUInt> kDummyArray;
return kDummyArray;
}
#if defined(AURORA_IS_POSIX_DERIVED)
const AuList<AuUInt> &LSHandle::GetWriteHandles()
{
static AuList<AuUInt> kDummyArray;
return kDummyArray;
}
AuUInt LSHandle::GetWriteHandle()
{
return this->handleWr;
}
void LSHandle::UpdateWriteHandle(AuUInt handle)
{
this->handleWr = handle;
}
#endif
void LSHandle::UpdateReadHandle(AuUInt handle)
{
this->handle = handle;
}
AuUInt LSHandle::GetHandle()
{
return this->handle;
}
bool LSHandle::Singular()
{
return true;
}
ELoopSource LSHandle::GetType()
{
return ELoopSource::eSourceHandle;
}
bool LSHandle::HasValidHandle()
{
#if defined(AURORA_IS_POSIX_DERIVED)
return this->handle != kInvalidHandle || this->handleWr != kInvalidHandle;
#elif defined(AURORA_IS_MODERNNT_DERIVED)
return this->handle != kInvalidHandle && this->handle;
#endif
}
AUKN_SYM AuSPtr<ILoopSource> NewLSOSHandle(AuUInt handle)
{
if (handle == kInvalidHandle)
{
return {};
}
return AuMakeShared<LSHandle>(handle);
}
}