AuroraRuntime/Source/IO/Loop/LSHandle.cpp
Reece Wilson bb9c383aee [+] ICompressionInterceptor::LimitPassthroughOnOverflow
[+] IOPipeRequest::uMinBytesToRead
[+] (secret api intended for unix users) AuIO::NewLSOSHandleEx
[*] Fix quirks when running Gtk under an io processor
...CtxYield shouldn't spin while work (improper breakout on remote update)
[*] EFileOpenMode::eWrite should assume O_CREAT semantics making eReadWrite somewhat redundant. OpenWrite + eWrite should reasonably work with file-appends. it should not mean force create + cucked GetLength().
2022-11-20 10:31:13 +00:00

104 lines
2.1 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);
}
AUKN_SYM AuSPtr<ILoopSource> NewLSOSHandleEx(AuUInt handle, AuUInt handle2)
{
if (handle == kInvalidHandle)
{
return {};
}
return AuMakeShared<LSHandle>(handle, handle2);
}
}