All Classes Namespaces Functions Enumerations Enumerator Modules Pages
shim/utils.hpp
1 /*
2  * Copyright (c) 2021-2025, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include <dlfcn.h>
19 #include <sys/utsname.h>
20 #include <stdexcept>
21 #include <string>
22 #include <vector>
23 
24 namespace kvikio {
25 
26 // Macros used for defining symbol visibility.
27 // Since KvikIO declares global default values in headers, we rely on the linker to disambiguate
28 // inline and static methods that have (or return) static references. To do this, the relevant
29 // function/method must have `__attribute__((visibility("default")))`. If not, then if KvikIO is
30 // used in two different DSOs, the function will appear twice, and there will be two static objects.
31 // See <https://gcc.gnu.org/wiki/Visibility> and <https://github.com/rapidsai/kvikio/issues/442>.
32 #if (defined(__GNUC__) || defined(__clang__)) && !defined(__MINGW32__) && !defined(__MINGW64__)
33 #define KVIKIO_EXPORT __attribute__((visibility("default")))
34 #define KVIKIO_HIDDEN __attribute__((visibility("hidden")))
35 #else
36 #define KVIKIO_EXPORT
37 #define KVIKIO_HIDDEN
38 #endif
39 
40 #define KVIKIO_STRINGIFY_DETAIL(x) #x
41 #define KVIKIO_STRINGIFY(x) KVIKIO_STRINGIFY_DETAIL(x)
42 
49 void* load_library(std::string const& name, int mode = RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
50 
57 void* load_library(std::vector<std::string> const& names,
58  int mode = RTLD_LAZY | RTLD_LOCAL | RTLD_NODELETE);
59 
68 template <typename T>
69 void get_symbol(T& handle, void* lib, std::string const& name)
70 {
71  ::dlerror(); // Clear old errors
72  // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
73  handle = reinterpret_cast<T>(::dlsym(lib, name.c_str()));
74  char const* err = ::dlerror();
75  if (err != nullptr) { throw std::runtime_error(err); }
76 }
77 
85 [[nodiscard]] bool is_running_in_wsl() noexcept;
86 
96 [[nodiscard]] bool run_udev_readable() noexcept;
97 
98 } // namespace kvikio
KvikIO namespace.
Definition: batch.hpp:27
bool run_udev_readable() noexcept
Check if /run/udev is readable.
void * load_library(std::string const &name, int mode=RTLD_LAZY|RTLD_LOCAL|RTLD_NODELETE)
Load shared library.
void get_symbol(T &handle, void *lib, std::string const &name)
Get symbol using dlsym
Definition: shim/utils.hpp:69
bool is_running_in_wsl() noexcept
Try to detect if running in Windows Subsystem for Linux (WSL)