-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue: 4207451 Move from env params to config file #312
base: vNext
Are you sure you want to change the base?
Conversation
8d82cb0
to
73ee4a9
Compare
a18146f
to
ef448be
Compare
A.I. - before merging open ticket to devops to build and run unit_tests by: |
e59a4a0
to
1beb24a
Compare
bot:retest |
MVP: Move from env params to config file. This change introduces a new configuration file that will be used to configure the system. The configuration file is a JSON file that contains all the configuration parameters that were previously passed as environment variables. In the case of a failure to load the configuration file, the system will fall back to the old environment variables method. See HLD and LLD for more information. This patch also adds unit-tests for the new configuration system. Signed-off-by: Tomer Cabouly <[email protected]>
Complete transformation of the XLIO configuration descriptor to a standard JSON Schema (draft-07) format, preserving the full hierarchical structure, data types, constraints, and default values from the original configuration. Key improvements: - Implemented proper oneOf schema handling for properties - Added complete descriptions for all properties and objects This schema enables formal validation of configuration files and supports tooling for IDE integration, documentation generation, and configuration validation. Signed-off-by: Tomer Cabouly <[email protected]>
Change the transport_control property from a string to an array of objects, where each object contains: - id: String identifier for the transport control - name: String name for the application - actions: Array of string actions To support this change, add full array handling to the config system: - Update JSON descriptor - define array types and nested properties - Implement array type recognition and default value handling - Modify JSON loader to process arrays instead of throwing an exception - Add comprehensive unit tests for arrays This enables more structured configuration for transport control rules and provides general array support throughout the configuration system. Signed-off-by: Tomer Cabouly <[email protected]>
@@ -0,0 +1,48 @@ | |||
# | |||
# SPDX-FileCopyrightText: NVIDIA CORPORATION & AFFILIATES |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a new license format, please change in all new files
@@ -413,6 +415,7 @@ AC_CONFIG_FILES([ | |||
src/state_machine/Makefile | |||
tests/Makefile | |||
tests/gtest/Makefile | |||
tests/unit_tests/Makefile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentation
@@ -513,6 +514,9 @@ struct mce_sys_var { | |||
} m_ioctl; | |||
|
|||
private: | |||
void get_app_name(); | |||
void legacy_get_env_params(); | |||
void new_get_params(const config_manager &config_manager); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid using new in the names, better to change the deprecated to legacy or something
@@ -527,11 +531,11 @@ struct mce_sys_var { | |||
|
|||
// prevent unautothrized creation of objects | |||
mce_sys_var() | |||
: sysctl_reader(sysctl_reader_t::instance()) | |||
: sysctl_reader(sysctl_reader_t::instance()) // TODO - Bashar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove TODO, we have task on it
"---------------------------------------------------------------------------\n"); | ||
legacy_get_env_params(); | ||
} else { | ||
new_get_params(config_manager()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to get it as param, can be created inside the function.
config_manager.get_value<int64_t>("xlio.ring.tx.alloc_logic"); | ||
ring_allocation_logic_tx = static_cast<ring_logic_t>(ring_tx_alloc_logic); | ||
|
||
const int64_t ring_rx_alloc_logic = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why int64_t, you are casting to enum which i think its int basically.
probably you will not need casting.
relevant to all params casting to enum if you think it should be changed.
// exception_handling is handled by its CTOR | ||
|
||
wait_after_join_msec = | ||
MCE_DEFAULT_WAIT_AFTER_JOIN_MSEC; // TODO - not in use - should be deleted |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you explain?
} | ||
} | ||
|
||
void mce_sys_var::new_get_params(const config_manager &config_manager) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know you got this from original code. but lets try to break it down to subfunctions
{ | ||
const bool core_append_pid_to_path = config_manager.get_value<bool>("core.append_pid_to_path"); | ||
|
||
const std::string net_offload_transport_control = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move all param loading to help function
} | ||
#endif // DEFINED_NGINX | ||
|
||
switch (mce_spec) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
each profile can call to help function to set its params
|
#include <memory> | ||
#include <queue> | ||
|
||
class config_manager : public config { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config_manager_interface?
std::experimental::any get_value_as_any(const std::string &key) const override; | ||
|
||
private: | ||
config_bundle m_config_bundle; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usualy we do this when we want to pass params to function or return from function.
but here its feels like hiding the config members. i think better without it
// 2) Load or build the descriptor structure | ||
m_config_bundle.m_config_descriptor = descriptor_provider->load_descriptors(); | ||
|
||
// 3) Validate all settings on construction (fail fast if invalid) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid comments that can understood from the code itself.
|
||
m_config_bundle.m_config_data = std::move(aggregated_config_data); | ||
|
||
// 2) Load or build the descriptor structure |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid comments that can be understood from the code itself
throw_xlio_exception("loader/descriptor_provider cannot be null"); | ||
} | ||
|
||
// 1) Load raw config data - first in queue means higher priority |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove index in comment
|
||
private: | ||
const char *m_json_string; | ||
void validate_schema(json_object *schema); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add new line between members and functions
explicit json_descriptor_provider(); | ||
explicit json_descriptor_provider(const char *json_string); | ||
~json_descriptor_provider() override = default; | ||
config_descriptor load_descriptors() override; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add new line between constructors and member functions
|
||
class parameter_descriptor { | ||
public: | ||
explicit parameter_descriptor() = default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why so mant constructors?
can we join?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because parameter_descriptor
is in a container we have to supply empty, copy and move ctors. the copy ctor is not trivial but the move ctor is so made it default and spared some code
|
||
void add_string_mapping(const std::string &str, const std::experimental::any &val); | ||
|
||
// Validates the given value against: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cnage the name on the function and avoid the comments
std::experimental::any default_value() const; | ||
|
||
using constraint_t = std::function<bool(const std::experimental::any &)>; | ||
void add_constraint(constraint_t c); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
c not a good name
MVP: Move from env params to config file.
This change introduces a new configuration file that will be used to configure the system.
The configuration file is a JSON file that contains all the configuration parameters that were previously passed as environment variables.
In the case of a failure to load the configuration file, the system will fall back to the old environment variables method.
See HLD and LLD for more information.
This patch also adds unit-tests for the new configuration system.
Change type
What kind of change does this PR introduce?
Check list