Code Monkey home page Code Monkey logo

Comments (2)

SergioBenitez avatar SergioBenitez commented on May 22, 2024

All you need to do is ensure that the CLI arguments structure serializes in such a way that's compatible with the structure of your other configuration options. Serde has an incredible number of options to configure the automatic derivation of Serialize; see https://serde.rs for all of its docs, in particular https://serde.rs/attributes.html and the following pages.

Alternatively, you could manually convert your CLI config structure into a Config and merge the resulting value.

from figment.

on3iro avatar on3iro commented on May 22, 2024

Thanks for your answer - I didn't know about serde attributes, yet. That looks very promising.
I worked around my issue by building a PartialConfigBuilder which converts my CLI-config into a HashMap-representation of the config. This works well, but needs quite a lot of boilerplate, so I'll definitely see, if I can solve this with attributes. (They reason why my CLI currently can't exactly match the config is, because I want these arguments to be optional, but the config itself requires them and sets defaults instead when initializing the Figment - Maybe this is bad design? I am not quite sure. I just didn't want to handle lots of Options inside my code...)

Edit:
I tried to refactor my code and use serde attributes instead, as you suggested. It works like a charm and I could get rid of a lot of boilerplate. Here is what I did:

  1. Add additional sub-structs to my clap parser to match the structure of my configuration
  2. Because these sub-structs are named differently than the actual structs used inside my real config, I used `#[serde(rename(serialize = ))] container attributes, to make sure they match after serialization.
  3. Because my parser arguments are wrappen with Option I also added #[serde(skip_serializing_if = "Option::is_none")] to each field, so that they are simply ignored if they are not set.

ApparentlySerde + Figment take care of the rest of the work and make sure, the arguments are unwrapped correctly to their inner values and merging the result with my base figment works like a charm.

from figment.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.