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

Feature&Docs: support the indent control on FmtTable #6055

Merged
merged 3 commits into from
Mar 27, 2025

Conversation

kirk0830
Copy link
Collaborator

@kirk0830 kirk0830 commented Mar 26, 2025

Linked Issue

Fix #6054

Features for developers

  1. support the (right) indent control as one of the parameter when instantiating the FmtTable class:
    /**
     * @brief Construct a new Fmt Table object
     * 
     * @param titles titles, its size should be the same as the number of columns
     * @param nrows number of rows
     * @param fmts format strings for each column, its size should be the same as the number of columns
     * @param indent indent for each column, default is 0
     * @param aligns Alignments instance, for alignment of values and titles, e.g. {Align::LEFT, Align::RIGHT} for left alignment of values and right alignment of titles
     * @param frames Frames instance, can be constructed with initializer_list<char> like {'-', '-', '-', ' ', ' '}, for up, middle, down, left and right frames
     * @param delimiters Delimiters instance, can be constructed with initializer_list<char> like {'-', ' '}, for horizontal and vertical delimiters
     */
    FmtTable(const std::vector<std::string>& titles, 
             const size_t nrows, 
             const std::vector<std::string>& fmts,
             const size_t indent = 0,
             const Alignments& aligns = {},
             const Frames& frames = {},
             const Delimiters& delimiters = {})

see unittest of formatter in source/module_base/test/formatter_test.cpp for more details

  1. add enough annotation in place where the FmtTable is used, for example:
    const std::vector<std::string> title = {"Total Magnetism (uB)", "", "", ""};
    const std::vector<std::string> fmts = {"%-26s", "%20.10f", "%20.10f", "%20.10f"};
    const std::vector<std::string> orb_names = {"s", "p", "d", "f", "g"};
    FmtTable table(/*titles=*/title, 
                   /*nrows=*/this->ucell->nat, 
                   /*formats=*/fmts, 
                   /*indent=*/0, 
                   /*align=*/{/*value*/FmtTable::Align::RIGHT, /*title*/FmtTable::Align::LEFT});

@kirk0830 kirk0830 requested a review from mohanchen March 26, 2025 07:19
@mohanchen mohanchen added the Refactor Refactor ABACUS codes label Mar 27, 2025
@mohanchen mohanchen merged commit 4adc91b into deepmodeling:develop Mar 27, 2025
14 checks passed
@kirk0830 kirk0830 deleted the fmttable-indent-doc branch March 28, 2025 02:34
Fisherd99 pushed a commit to Fisherd99/abacus-BSE that referenced this pull request Mar 31, 2025
* Feature&Docs: support the indent control on FmtTable

* update the annotation of constructor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Refactor Refactor ABACUS codes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Request: Alignment of data in running_*.log
2 participants