Reece
e5e36bd887
[*] Fix deadlock in the async subsystem (NoLockShutdown vs Shutdown in exception handler) [+] Added ProccessMap NT variant [+] Added ToolHelp image profiling [*] Improved exception awareness [*] Delegated SpawnThread to isolated TU, ready for reuse for RunAs and XNU Open - now with horrible evil alloc that could fail [+] Added header for future api 'UtilRun' [*] Improve NT core detection [*] Changed small affinity bitmap to AuUInt64 instead of AuUInt32 [+] Added data structure to hold cpuids/affinity masks [+] Implemented logger sinks [+] Implemented logger glue logic [*] Began migrating older loggers to sink-based default devices [*] Minor refactors [*] Improved internal exception discarding, not yet nothrow capable [*] Minor create directory fix
94 lines
2.6 KiB
C++
94 lines
2.6 KiB
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Open.Win32.cpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#include <Source/RuntimeInternal.hpp>
|
|
#include "Processes.hpp"
|
|
#include "Open.Win32.hpp"
|
|
|
|
#include <shellapi.h>
|
|
#include <tlhelp32.h>
|
|
|
|
#include <Source/IO/FS/FS.hpp>
|
|
#include "Objbase.h"
|
|
#include "shellapi.h"
|
|
|
|
namespace Aurora::Processes
|
|
{
|
|
static AuList<AuString> gOpenItems;
|
|
static AuThreadPrimitives::ConditionMutexUnique_t gCondMutex;
|
|
static AuThreadPrimitives::ConditionVariableUnique_t gCondVariable;
|
|
static AuThreads::ThreadUnique_t gOpenerThread;
|
|
|
|
static void RunTasks()
|
|
{
|
|
AU_LOCK_GUARD(gCondMutex);
|
|
|
|
while (AuIsThreadRunning())
|
|
{
|
|
try
|
|
{
|
|
for (const auto &open : gOpenItems)
|
|
{
|
|
ShellExecuteW(NULL, AuIOFS::DirExists(open) ? L"explore" : NULL, Locale::ConvertFromUTF8(open).c_str(), NULL, NULL, SW_SHOWNORMAL);
|
|
}
|
|
gOpenItems.clear();
|
|
gCondVariable->WaitForSignal();
|
|
}
|
|
catch (...)
|
|
{
|
|
Debug::PrintError();
|
|
AuLogWarn("An error occurred while dispatching a ShellExecute runner frame");
|
|
}
|
|
}
|
|
}
|
|
|
|
static void OpenerThread()
|
|
{
|
|
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
|
|
RunTasks();
|
|
CoUninitialize();
|
|
}
|
|
|
|
void InitWin32Opener()
|
|
{
|
|
gCondMutex = AuThreadPrimitives::ConditionMutexUnique();
|
|
SysAssert(gCondMutex);
|
|
|
|
gCondVariable = AuThreadPrimitives::ConditionVariableUnique(AuUnsafeRaiiToShared(gCondMutex));
|
|
SysAssert(gCondVariable);
|
|
|
|
gOpenerThread = AuThreads::ThreadUnique(AuThreads::ThreadInfo(
|
|
AuMakeShared<AuThreads::IThreadVectorsFunctional>(AuThreads::IThreadVectorsFunctional::OnEntry_t(std::bind(OpenerThread)),
|
|
AuThreads::IThreadVectorsFunctional::OnExit_t{}),
|
|
"COM ShellExecute Runner"
|
|
));
|
|
SysAssert(gOpenerThread);
|
|
|
|
gOpenerThread->Run();
|
|
}
|
|
|
|
void DeinitWin32Opener()
|
|
{
|
|
gOpenerThread->SendExitSignal();
|
|
gCondVariable->Broadcast();
|
|
gOpenerThread.reset();
|
|
gCondVariable.reset();
|
|
gCondMutex.reset();
|
|
}
|
|
|
|
AUKN_SYM void OpenUri(const AuString &uri)
|
|
{
|
|
AU_LOCK_GUARD(gCondMutex);
|
|
gOpenItems.push_back(uri);
|
|
gCondVariable->Broadcast();
|
|
}
|
|
|
|
AUKN_SYM void OpenFile(const AuString &file)
|
|
{
|
|
OpenUri(AuIOFS::NormalizePathRet(file));
|
|
}
|
|
} |