2026-07-18 18:48:23 +02:00
|
|
|
#include <memory>
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
|
|
|
|
|
#include "eval_cpp.h"
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "log.h"
|
|
|
|
|
#include "file.h"
|
|
|
|
|
#include "show.h"
|
|
|
|
|
|
Klammerset: the @@@klammerset construct, its search path, and const correctness
The @@@klammerset system command formally declares a klammerset — a
named, logically related group of klammer definitions — with an
operative, idempotent declaration (:requires and :files load in order
at the declaration point, relative to the declaring file). A bare
symbol given to ktext -k, kdesc --input, or :requires resolves to
x/x.k on the search path: the document's directory, then
KLAMMERTEXT_KLAMMERSETS, then KLAMMERTEXT_HOME; kdesc --klammerset
lists the available sets. sks/sks.k is the first declared klammerset,
so `-k sks` loads the SKS by name. The engine's lookup classes were
renamed *_set → *_registry to keep the two concepts apart, and the
whole C++ tree now follows standard const-correctness conventions.
tst/ gains klammerset_test.sh (18 cases).
(from dev 64b1abf23e56)
2026-07-30 23:50:07 +02:00
|
|
|
Eval_cpp::Eval_cpp(Machine& machine, const Locator& loc)
|
2026-07-18 18:48:23 +02:00
|
|
|
: m_machine(machine)
|
|
|
|
|
, m_loc(loc)
|
|
|
|
|
{
|
|
|
|
|
(void)K::log(3);
|
|
|
|
|
}
|
|
|
|
|
|
Klammerset: the @@@klammerset construct, its search path, and const correctness
The @@@klammerset system command formally declares a klammerset — a
named, logically related group of klammer definitions — with an
operative, idempotent declaration (:requires and :files load in order
at the declaration point, relative to the declaring file). A bare
symbol given to ktext -k, kdesc --input, or :requires resolves to
x/x.k on the search path: the document's directory, then
KLAMMERTEXT_KLAMMERSETS, then KLAMMERTEXT_HOME; kdesc --klammerset
lists the available sets. sks/sks.k is the first declared klammerset,
so `-k sks` loads the SKS by name. The engine's lookup classes were
renamed *_set → *_registry to keep the two concepts apart, and the
whole C++ tree now follows standard const-correctness conventions.
tst/ gains klammerset_test.sh (18 cases).
(from dev 64b1abf23e56)
2026-07-30 23:50:07 +02:00
|
|
|
std::string Eval_cpp::eval(const fs::path& library_path, const std::string& function_name)
|
2026-07-18 18:48:23 +02:00
|
|
|
{
|
|
|
|
|
(void)K::log(3, library_path, function_name);
|
|
|
|
|
// msg() << "library path: " << library_path.string().c_str() << "\n";
|
|
|
|
|
void* handle = dlopen(library_path.string().c_str(), RTLD_LAZY);
|
|
|
|
|
if (!handle) {
|
|
|
|
|
const char* error = dlerror();
|
|
|
|
|
std::string error_desc = error ? error : "unknown error";
|
|
|
|
|
throw File_error("Cannot open library: " + library_path.string() + "\n " + error_desc, m_loc);
|
|
|
|
|
}
|
|
|
|
|
dlerror();
|
|
|
|
|
typedef std::string (*func_t)(Machine);
|
|
|
|
|
func_t func = (func_t) dlsym(handle, function_name.c_str());
|
|
|
|
|
const char* dlsym_error = dlerror();
|
|
|
|
|
if (dlsym_error) {
|
|
|
|
|
std::string error_desc(dlsym_error);
|
|
|
|
|
dlclose(handle);
|
|
|
|
|
std::stringstream ss {};
|
|
|
|
|
ss << "Cannot load symbol " << function_name
|
|
|
|
|
<< " from library " << library_path << ":\n " << error_desc;
|
|
|
|
|
throw File_error(ss.str(), m_loc, false);
|
|
|
|
|
}
|
|
|
|
|
std::string result = func(m_machine);
|
|
|
|
|
dlclose(handle);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|