Version: SMASH-3.2
library.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2022,2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #include "smash/library.h"
11 
12 #include <filesystem>
13 
14 #include "smash/configuration.h"
15 #include "smash/decaymodes.h"
16 #include "smash/input_keys.h"
17 #include "smash/inputfunctions.h"
18 #include "smash/isoparticletype.h"
19 #include "smash/logging.h"
21 #include "smash/stringfunctions.h"
22 
23 namespace smash {
24 static constexpr int LMain = LogArea::Main::id;
25 
26 static Configuration create_configuration(const std::string &,
27  const std::vector<std::string> &);
29 static void fully_validate_configuration(const Configuration &);
30 static void setup_logging(Configuration &);
32  const std::string &, const std::string &, Configuration &);
33 
35  const std::string &config_file, const std::string &particles_file,
36  const std::string &decaymodes_file,
37  const std::vector<std::string> &extra_config) {
38  Configuration configuration = create_configuration(config_file, extra_config);
39  fully_validate_configuration(configuration);
40  setup_logging(configuration);
42  particles_file, decaymodes_file, configuration);
43  return configuration;
44 }
45 
47  Configuration &configuration, const std::string &version,
48  const std::string &tabulations_dir) {
49  const auto hash =
50  initialize_particles_decays_and_return_hash(configuration, version);
51  tabulate_resonance_integrals(hash, tabulations_dir);
52 }
53 
55  Configuration &configuration, const std::string &version) {
57  " create ParticleType and DecayModes");
58  const std::string particles_string = configuration.take(InputKeys::particles);
59  const std::string decaymodes_string =
60  configuration.take(InputKeys::decaymodes);
61  ParticleType::create_type_list(particles_string);
62  DecayModes::load_decaymodes(decaymodes_string);
64 
65  // Calculate a hash of the SMASH version, the particles and decaymodes.
66  sha256::Context hash_context;
67  hash_context.update(version);
68  hash_context.update(particles_string);
69  hash_context.update(decaymodes_string);
70  const auto hash = hash_context.finalize();
71  logg[LMain].info() << "Config hash: " << sha256::hash_to_string(hash);
72  return hash;
73 }
74 
76  const std::string &tabulations_dir) {
77  logg[LMain].info("Tabulating cross section integrals...");
78  std::filesystem::path tabulations_path(tabulations_dir);
79  if (!tabulations_path.empty()) {
80  // Store tabulations on disk
81  std::filesystem::create_directories(tabulations_path);
82  logg[LMain].info() << "Tabulations path: " << tabulations_path;
83  }
84  IsoParticleType::tabulate_integrals(hash, tabulations_path);
85 }
86 
88  const std::string &config_file,
89  const std::vector<std::string> &extra_config) {
90  // Read in config file
91  std::filesystem::path config_path(config_file);
92  Configuration configuration(config_path.parent_path(),
93  config_path.filename());
94 
95  // Merge config passed via command line
96  for (const auto &config : extra_config) {
97  configuration.merge_yaml(config);
98  }
99  return configuration;
100 }
101 
103  const std::string conf_tag = LogArea::Configuration::textual();
104  const std::string main_tag = LogArea::Main::textual();
105  const auto size =
106  conf_tag.size() > main_tag.size() ? conf_tag.size() : main_tag.size();
107  logg[LogArea::Configuration::id].setAreaName(utf8::fill_both(conf_tag, size));
108  logg[LogArea::Main::id].setAreaName(utf8::fill_both(main_tag, size));
109 }
110 
111 static void fully_validate_configuration(const Configuration &configuration) {
113  if (configuration.validate() == Configuration::Is::Invalid) {
114  throw std::runtime_error("Validation of SMASH input failed.");
115  }
116 }
117 
118 static void setup_logging(Configuration &configuration) {
120  auto logger_config = configuration.extract_sub_configuration(
122  if (!logger_config.is_empty()) {
124  }
125  create_all_loggers(std::move(logger_config));
126 }
127 
129  const std::string &particles_file, const std::string &decaymodes_file,
130  Configuration &configuration) {
131  logg[LMain].trace(SMASH_SOURCE_LOCATION, " load ParticleType and DecayModes");
132  std::filesystem::path particles_path(particles_file);
133  std::filesystem::path decaymodes_path(decaymodes_file);
134  auto particles_and_decays =
135  load_particles_and_decaymodes(particles_path, decaymodes_path);
136  /* For particles and decaymodes: external file is superior to config.
137  * However, warn in case of conflict. */
138  if (configuration.has_value(InputKeys::particles) &&
139  !particles_path.empty()) {
140  logg[LMain].warn(
141  "Ambiguity: particles from external file ", particles_path,
142  " requested, but there is also particle list in the config."
143  " Using particles from ",
144  particles_path);
145  }
146  if (!configuration.has_value(InputKeys::particles) ||
147  !particles_path.empty()) {
148  configuration.set_value(InputKeys::particles, particles_and_decays.first);
149  }
150 
151  if (configuration.has_value(InputKeys::decaymodes) &&
152  !decaymodes_path.empty()) {
153  logg[LMain].warn(
154  "Ambiguity: decaymodes from external file ", decaymodes_path,
155  " requested, but there is also decaymodes list in the config."
156  " Using decaymodes from",
157  decaymodes_path);
158  }
159  if (!configuration.has_value(InputKeys::decaymodes) ||
160  !decaymodes_path.empty()) {
161  configuration.set_value(InputKeys::decaymodes, particles_and_decays.second);
162  }
163 }
164 
165 } // namespace smash
Interface to the SMASH configuration files.
void set_value(Key< U > key, T &&value)
Overwrite the value of the YAML node corresponding to the specified key.
void merge_yaml(const std::string &yaml)
Merge the configuration in yaml into the existing tree.
Configuration extract_sub_configuration(KeyLabels section, Configuration::GetEmpty empty_if_not_existing=Configuration::GetEmpty::No)
Create a new configuration from a then-removed section of the present object.
void enclose_into_section(KeyLabels section)
Enclose the configuration into the given section.
bool has_value(const Key< T > &key) const
Return whether there is a non-empty value behind the requested key (which is supposed not to refer to...
Is validate(bool full_validation=true) const
Validate content of configuration in terms of YAML keys.
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
static void load_decaymodes(const std::string &input)
Loads the DecayModes map as described in the input string.
Definition: decaymodes.cc:163
static void tabulate_integrals(sha256::Hash hash, const std::filesystem::path &tabulations_path)
Tabulate all relevant integrals.
static void check_consistency()
static void create_type_list(const std::string &particles)
Initialize the global ParticleType list (list_all) from the given input data.
A SHA256 context.
Definition: sha256.h:28
void update(uint8_t const *buffer, size_t buffer_size)
Add data to the SHA256 context.
Definition: sha256.cc:153
Hash finalize()
Performs the final calculation of the hash and returns the digest (32 byte buffer containing 256bit h...
Definition: sha256.cc:185
#define SMASH_SOURCE_LOCATION
Hackery that is required to output the location in the source code where the log statement occurs.
Definition: logging.h:153
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
void set_default_loglevel(einhard::LogLevel level)
Set the default log level (what will be returned from subsequent default_loglevel calls).
Definition: logging.cc:25
void create_all_loggers(Configuration config)
Called from main() right after the Configuration object is fully set up to create all logger objects ...
Definition: logging.cc:120
std::array< uint8_t, HASH_SIZE > Hash
A SHA256 hash.
Definition: sha256.h:25
std::string hash_to_string(Hash hash)
Convert a SHA256 hash to a hexadecimal string.
Definition: sha256.cc:230
std::string fill_both(const std::string &s, size_t width, char fill=' ')
Fill string with characters at both sides until the given width is reached.
Definition: action.h:24
void initialize_particles_decays_and_tabulations(Configuration &configuration, const std::string &version, const std::string &tabulations_dir={})
Wrapper over a function that initializes the particles and decays from the given configuration,...
Definition: library.cc:46
static void do_minimal_loggers_setup_for_config_validation()
Definition: library.cc:102
static void read_particles_and_decaymodes_files_setting_keys_in_configuration(const std::string &, const std::string &, Configuration &)
Definition: library.cc:128
void tabulate_resonance_integrals(const sha256::Hash &hash, const std::string &tabulations_dir)
Tabulate the resonance integrals.
Definition: library.cc:75
Configuration setup_config_and_logging(const std::string &config_file, const std::string &particles_file={}, const std::string &decaymodes_file={}, const std::vector< std::string > &extra_config={})
Set up configuration and logging from input files and extra config.
Definition: library.cc:34
static Configuration create_configuration(const std::string &, const std::vector< std::string > &)
Definition: library.cc:87
static void setup_logging(Configuration &)
Definition: library.cc:118
sha256::Hash initialize_particles_decays_and_return_hash(Configuration &configuration, const std::string &version)
Initialize the particles and decays from the given configuration.
Definition: library.cc:54
std::pair< std::string, std::string > load_particles_and_decaymodes(const std::filesystem::path &particles_file, const std::filesystem::path &decaymodes_file)
Loads particles and decaymodes from provided files particles_file and decaymodes_file.
static constexpr int LMain
Definition: experiment.h:92
static void fully_validate_configuration(const Configuration &)
Definition: library.cc:111
static const Key< std::string > particles
See user guide description for more information.
Definition: input_keys.h:1071
static const Key< std::string > decaymodes
See user guide description for more information.
Definition: input_keys.h:1075
static const Key< einhard::LogLevel > log_default
See user guide description for more information.
Definition: input_keys.h:1540
static const Section logging
Section for the logging.
Definition: input_keys.h:86