Skip to content
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

Open
wants to merge 3 commits into
base: vNext
Choose a base branch
from

Conversation

tomerdbz
Copy link
Collaborator

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?

  • Bugfix
  • Feature
  • Code style update
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Tests
  • Other

Check list

  • Code follows the style de facto guidelines of this project
  • Comments have been inserted in hard to understand places
  • Documentation has been updated (if necessary)
  • Test has been added (if possible)

@tomerdbz
Copy link
Collaborator Author

A.I. - before merging open ticket to devops to build and run unit_tests by:
cd libxlio/tests/unit_tests
make -j
./unit_tests

@tomerdbz tomerdbz force-pushed the new_config branch 4 times, most recently from e59a4a0 to 1beb24a Compare February 26, 2025 09:39
@tomerdbz
Copy link
Collaborator Author

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
Copy link
Collaborator

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
Copy link
Collaborator

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);
Copy link
Collaborator

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
Copy link
Collaborator

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());
Copy link
Collaborator

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 =
Copy link
Collaborator

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
Copy link
Collaborator

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)
Copy link
Collaborator

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 =
Copy link
Collaborator

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) {
Copy link
Collaborator

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

@tomerdbz
Copy link
Collaborator Author

tomerdbz commented Apr 3, 2025

  1. add to description of json_descriptor.json - what's the schema purpose
  2. add comments for the variable created in compile time
  3. auto loaded_data = // remove the auto

#include <memory>
#include <queue>

class config_manager : public config {
Copy link
Collaborator

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;
Copy link
Collaborator

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)
Copy link
Collaborator

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
Copy link
Collaborator

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
Copy link
Collaborator

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);
Copy link
Collaborator

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;
Copy link
Collaborator

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;
Copy link
Collaborator

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?

Copy link
Collaborator Author

@tomerdbz tomerdbz Apr 3, 2025

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:
Copy link
Collaborator

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);
Copy link
Collaborator

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants