2. Creating and configuring a session
1#include <libdnf5/base/base.hpp>
2
3// Create a new Base object.
4libdnf5::Base base;
5
6// Optionally set installroot.
7//
8// Installroot is set to '/' when we're working with the system, but we can set
9// it to a different location. The Base instance will then work with the
10// installroot directory tree as its root for the rest of its lifetime.
11base.get_config().get_installroot_option().set(installroot);
12
13// Optionally - Prevent loading libdnf5 plugins.
14// Plugins are loaded by default from the host
15base.get_config().get_plugins_option().set(false);
16
17// Optionally load configuration from the config files.
18//
19// The Base's config is initialized with default values, one of which is
20// "config_file_path". This contains the default path to the config file
21// ("/etc/dnf/dnf.conf"). If the file does not exist the distribution config file
22// is loaded. Function also loads configuration files from distribution and
23// user ("/etc/dnf/libdnf5.conf.d") drop-in directories.
24// Optionally set a custom value to "config_file_path" before calling this method
25// to load configuration from a another configuration file.
26base.load_config();
27
28// Load vars and do other initialization (of libsolv pool, etc.) based on the
29// configuration. Locks the installroot and varsdir configuration values so
30// that they can't be changed.
31base.setup();
2.1. Override the system architecture
For the dnf5 command-line tool, the –forcearch, dnf5-forcearch(7) option is available. Here’s how you can achieve the same effect using the API:
1#include <libdnf5/base/base.hpp>
2
3// Create a new Base object.
4libdnf5::Base base;
5
6// Optionally load configuration from the config files.
7base.load_config();
8
9// Override the detected system architecture, similar to how the
10// `--forcearch=aarch64` switch works in the dnf5 command line tool.
11base.get_vars()->set("arch", "aarch64");
12
13// This is sufficient for loading repositories and querying packages using the
14// `aarch64` architecture.
15// However, if you also want to run a transaction (e.g., you want to modify a
16// foreign system from "outside" using `installroot`), you need to set the
17// `ignorearch` option to instruct RPM to permit packages that are incompatible
18// with the system architecture.
19base.get_config().get_ignorearch_option().set(true);
20
21// The base.setup() call configures the architecture for the solver, so the
22// `arch` variable needs to be set beforehand.
23base.setup();