1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/*
** Copyright (c) 2020 LunarG, Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and associated documentation files (the "Software"),
** to deal in the Software without restriction, including without limitation
** the rights to use, copy, modify, merge, publish, distribute, sublicense,
** and/or sell copies of the Software, and to permit persons to whom the
** Software is furnished to do so, subject to the following conditions:
**
** The above copyright notice and this permission notice shall be included in
** all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
** DEALINGS IN THE SOFTWARE.
*/
#include "util/xlib_loader.h"
#include "util/logging.h"
GFXRECON_BEGIN_NAMESPACE(gfxrecon)
GFXRECON_BEGIN_NAMESPACE(util)
const std::vector<std::string> kXlibNames = {
#if defined(X11_LIBRARY)
X11_LIBRARY,
#endif
"libX11.so.6",
"libX11.so"
};
XlibLoader::XlibLoader() : libx11_(nullptr), function_table_{} {}
XlibLoader::~XlibLoader()
{
if (libx11_)
{
util::platform::CloseLibrary(libx11_);
libx11_ = nullptr;
}
}
bool XlibLoader::Initialize()
{
bool success = true;
// Guard against double initialization
if (!libx11_)
{
libx11_ = util::platform::OpenLibrary(kXlibNames);
if (libx11_)
{
function_table_.ChangeProperty = reinterpret_cast<decltype(XChangeProperty)*>(
util::platform::GetProcAddress(libx11_, "XChangeProperty"));
function_table_.CloseDisplay =
reinterpret_cast<decltype(XCloseDisplay)*>(util::platform::GetProcAddress(libx11_, "XCloseDisplay"));
function_table_.CreateWindow =
reinterpret_cast<decltype(XCreateWindow)*>(util::platform::GetProcAddress(libx11_, "XCreateWindow"));
function_table_.DestroyWindow =
reinterpret_cast<decltype(XDestroyWindow)*>(util::platform::GetProcAddress(libx11_, "XDestroyWindow"));
function_table_.Flush =
reinterpret_cast<decltype(XFlush)*>(util::platform::GetProcAddress(libx11_, "XFlush"));
function_table_.GetErrorText =
reinterpret_cast<decltype(XGetErrorText)*>(util::platform::GetProcAddress(libx11_, "XGetErrorText"));
function_table_.GetWindowAttributes = reinterpret_cast<decltype(XGetWindowAttributes)*>(
util::platform::GetProcAddress(libx11_, "XGetWindowAttributes"));
function_table_.InternAtom =
reinterpret_cast<decltype(XInternAtom)*>(util::platform::GetProcAddress(libx11_, "XInternAtom"));
function_table_.MapWindow =
reinterpret_cast<decltype(XMapWindow)*>(util::platform::GetProcAddress(libx11_, "XMapWindow"));
function_table_.MoveWindow =
reinterpret_cast<decltype(XMoveWindow)*>(util::platform::GetProcAddress(libx11_, "XMoveWindow"));
function_table_.NextEvent =
reinterpret_cast<decltype(XNextEvent)*>(util::platform::GetProcAddress(libx11_, "XNextEvent"));
function_table_.OpenDisplay =
reinterpret_cast<decltype(XOpenDisplay)*>(util::platform::GetProcAddress(libx11_, "XOpenDisplay"));
function_table_.Pending =
reinterpret_cast<decltype(XPending)*>(util::platform::GetProcAddress(libx11_, "XPending"));
function_table_.ResizeWindow =
reinterpret_cast<decltype(XResizeWindow)*>(util::platform::GetProcAddress(libx11_, "XResizeWindow"));
function_table_.SendEvent =
reinterpret_cast<decltype(XSendEvent)*>(util::platform::GetProcAddress(libx11_, "XSendEvent"));
function_table_.SetErrorHandler = reinterpret_cast<decltype(XSetErrorHandler)*>(
util::platform::GetProcAddress(libx11_, "XSetErrorHandler"));
function_table_.StoreName =
reinterpret_cast<decltype(XStoreName)*>(util::platform::GetProcAddress(libx11_, "XStoreName"));
function_table_.Sync = reinterpret_cast<decltype(XSync)*>(util::platform::GetProcAddress(libx11_, "XSync"));
function_table_.UnmapWindow =
reinterpret_cast<decltype(XUnmapWindow)*>(util::platform::GetProcAddress(libx11_, "XUnmapWindow"));
function_table_.VisualIDFromVisual = reinterpret_cast<decltype(XVisualIDFromVisual)*>(
util::platform::GetProcAddress(libx11_, "XVisualIDFromVisual"));
}
else
{
GFXRECON_LOG_DEBUG("Failed to load libX11.so");
success = false;
}
}
return success;
}
GFXRECON_END_NAMESPACE(util)
GFXRECON_END_NAMESPACE(gfxrecon)
|