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

feat: add optional colored log output #52

Merged
merged 3 commits into from
Oct 2, 2024
Merged

feat: add optional colored log output #52

merged 3 commits into from
Oct 2, 2024

Conversation

2bndy5
Copy link
Collaborator

@2bndy5 2bndy5 commented Oct 2, 2024

Uses a new dependency colored to get cross-platform compatible for terminal colors. Supports an environment variable CPP_LINTER_COLOR that (if set to 1, on, or true) will force color output when it is automatically disabled (see colored features which follows standards).

I also moved the log grouping functions into the rest_api module. Technically, the log grouping commands we currently use are specific to GitHub. Other Git servers (like GitLab) implement these differently.

Summary by CodeRabbit

Release Notes

  • New Features

    • Introduced a new dependency, colored, enhancing log message visibility with color coding.
    • Added logging methods start_log_group and end_log_group to improve log organization within the API client.
  • Bug Fixes

    • Improved logging functionality by integrating the GithubApiClient for better feedback management.
  • Documentation

    • Updated README.md to reflect the addition of the new colored dependency and its license information.
  • Chores

    • Refined the logging process across various modules to utilize the new API client for logging operations.

@2bndy5 2bndy5 added the enhancement New feature or request label Oct 2, 2024
Copy link
Contributor

coderabbitai bot commented Oct 2, 2024

Walkthrough

The changes involve the addition of a new dependency, colored, to the README.md and Cargo.toml files, along with updates to the logging system within the cpp-linter project. The logging mechanism has been enhanced by integrating the RestApiClient, replacing existing logger calls with new methods for managing log groups. Additionally, modifications to the GithubApiClient and TestClient include new methods for logging, and the run_main function has been adjusted to utilize the new logging structure. Overall, these changes improve the logging capabilities and dependency management.

Changes

File Change Summary
README.md Added new dependency colored licensed under MPL-2.0.
cpp-linter/Cargo.toml Added dependency colored = "2.1.0". Updated log dependency to log = { version = "0.4.22", features = ["std"] }.
cpp-linter/src/clang_tools/mod.rs Integrated RestApiClient into logging; updated capture_clang_tools_output function signature.
cpp-linter/src/logger.rs Added SimpleLogger struct; updated logging methods to use colored crate; removed start_log_group and end_log_group from public API.
cpp-linter/src/rest_api/github/mod.rs Added start_log_group and end_log_group methods to RestApiClient implementation in GithubApiClient.
cpp-linter/src/rest_api/mod.rs Added start_log_group and end_log_group methods to RestApiClient; updated TestClient for logging.
cpp-linter/src/run.rs Updated run_main function to use RestApiClient for logging operations.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant RunMain
    participant RestApiClient
    participant GithubApiClient

    User->>RunMain: Start process
    RunMain->>RestApiClient: start_log_group("Get list of specified source files")
    RestApiClient->>GithubApiClient: start_log_group("Fetching files")
    GithubApiClient-->>RestApiClient: Log files fetched
    RestApiClient->>RunMain: end_log_group()
    RunMain->>RestApiClient: start_log_group("Posting feedback")
    RestApiClient->>GithubApiClient: post_feedback()
    GithubApiClient-->>RestApiClient: Log feedback posted
    RestApiClient->>RunMain: end_log_group()
    RunMain-->>User: Process completed
Loading

🐇 "With colors bright and logs so neat,
The changes hop, a joyful feat!
A client new to guide the way,
In every log, a bright display!
From files to feedback, all in sync,
Let's celebrate with a happy wink!" 🐇


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🧹 Outside diff range and nitpick comments (6)
cpp-linter/Cargo.toml (1)

20-20: LGTM! Consider using a version range for colored.

The addition of the colored dependency aligns well with the PR objective of introducing optional colored log output. This library is known for its cross-platform compatibility for terminal color display, which is excellent.

Consider using a version range to allow for minor updates and bug fixes:

-colored = "2.1.0"
+colored = "^2.1.0"

This change would allow updates to patch and minor versions, potentially including important bug fixes, while still maintaining compatibility.

cpp-linter/src/rest_api/github/mod.rs (3)

98-101: LGTM! Consider adding a brief doc comment.

The implementation of start_log_group looks good. It correctly uses the GitHub Actions syntax for starting a log group.

Consider adding a brief doc comment explaining that this method is specific to GitHub Actions log grouping. For example:

/// Starts a collapsible group in GitHub Actions logs.
/// This is specific to GitHub Actions and may not work in other CI environments.
fn start_log_group(&self, name: String) {
    // ... (existing implementation)
}

103-106: LGTM! Consider adding a brief doc comment.

The implementation of end_log_group looks good. It correctly uses the GitHub Actions syntax for ending a log group.

Consider adding a brief doc comment explaining that this method is specific to GitHub Actions log grouping. For example:

/// Ends a collapsible group in GitHub Actions logs.
/// This is specific to GitHub Actions and may not work in other CI environments.
fn end_log_group(&self) {
    // ... (existing implementation)
}

98-106: Consider a more flexible approach for log grouping.

While the current implementation correctly adds log grouping functionality for GitHub Actions, it might be worth considering a more flexible approach that could accommodate different CI environments in the future.

Here are a few suggestions to improve flexibility:

  1. Consider creating an enum for different CI environments:

    pub enum CIEnvironment {
        GitHub,
        GitLab,
        // Add other CI environments as needed
    }
  2. Modify the RestApiClient trait to include a method for getting the current CI environment:

    fn get_ci_environment(&self) -> CIEnvironment;
  3. Update the log grouping methods to use the CI environment:

    fn start_log_group(&self, name: String) {
        match self.get_ci_environment() {
            CIEnvironment::GitHub => log::info!(target: "CI_LOG_GROUPING", "::group::{}", name),
            CIEnvironment::GitLab => log::info!(target: "CI_LOG_GROUPING", "section_start:`date +%s`:{}[collapsed=true]", name),
            // Add other CI environments as needed
        }
    }
    
    fn end_log_group(&self) {
        match self.get_ci_environment() {
            CIEnvironment::GitHub => log::info!(target: "CI_LOG_GROUPING", "::endgroup::"),
            CIEnvironment::GitLab => log::info!(target: "CI_LOG_GROUPING", "section_end:`date +%s`"),
            // Add other CI environments as needed
        }
    }

This approach would make it easier to extend support for other CI environments in the future while maintaining the current functionality for GitHub Actions.

cpp-linter/src/logger.rs (2)

68-69: Reset environment variable after test to prevent side effects.

The test sets the CPP_LINTER_COLOR environment variable but does not unset it afterward. This could inadvertently affect other tests or parts of the program that rely on this environment variable.

Add the following at the end of the test to clean up:

// At the end of the test function
env::remove_var("CPP_LINTER_COLOR");

This ensures the environment remains clean for subsequent tests.


61-61: Rename test module to adhere to Rust conventions.

The test module is currently named test, but the conventional name is tests. Renaming it improves code readability and aligns with standard Rust practices.

-#[cfg(test)]
-mod test {
+#[cfg(test)]
+mod tests {
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 0857121 and cb5d82b.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (7)
  • README.md (2 hunks)
  • cpp-linter/Cargo.toml (1 hunks)
  • cpp-linter/src/clang_tools/mod.rs (3 hunks)
  • cpp-linter/src/logger.rs (1 hunks)
  • cpp-linter/src/rest_api/github/mod.rs (1 hunks)
  • cpp-linter/src/rest_api/mod.rs (3 hunks)
  • cpp-linter/src/run.rs (3 hunks)
🔇 Additional comments (15)
cpp-linter/Cargo.toml (2)

20-25: Summary: Changes align well with PR objectives

The modifications to Cargo.toml are minimal and focused, aligning perfectly with the PR objective of adding optional colored log output. The addition of the colored crate and the update to the log crate's features are appropriate for this purpose.

These changes lay the groundwork for implementing the colored output feature. As development progresses, ensure that:

  1. The CPP_LINTER_COLOR environment variable is properly implemented and documented.
  2. The colored output respects terminal capabilities and user preferences.
  3. The feature remains optional and doesn't interfere with existing functionality.

Great job on keeping the changes focused and relevant!


25-25: LGTM! Can you clarify the reason for adding the "std" feature?

The update to the log dependency, adding the "std" feature, looks good. This change suggests that standard library features of the log crate will be used.

Could you please clarify the specific reason for adding the "std" feature? Is it related to the new colored output functionality, or are there other considerations?

To help understand the impact of this change, let's check for usage of log crate features that require "std":

This will help us understand if these specific features are being used in the codebase.

✅ Verification successful

Standard library features for the log crate are necessary

The usage of log::set_boxed_logger in cpp-linter/src/logger.rs requires the "std" feature. Therefore, adding features = ["std"] to the log dependency is justified.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for usage of log crate features that require "std"

# Search for use of log::set_boxed_logger
rg --type rust 'log::set_boxed_logger'

# Search for use of log::set_logger_racy
rg --type rust 'log::set_logger_racy'

# Search for use of log::set_max_level_racy
rg --type rust 'log::set_max_level_racy'

Length of output: 186

README.md (1)

213-213: LGTM: New dependency and license information added correctly.

The changes in the README.md file accurately reflect the addition of the new 'colored' dependency as described in the PR objectives. The license information (MPL-2.0) for the 'colored' crate has been correctly added to the list of dependencies.

These additions are consistent with the PR's goal of introducing optional colored log output functionality.

To ensure the accuracy of the added information, let's verify the 'colored' crate's license:

Also applies to: 227-227

cpp-linter/src/rest_api/mod.rs (5)

52-53: LGTM: New method start_log_group added to RestApiClient trait

The addition of the start_log_group method to the RestApiClient trait is well-defined and aligns with the PR objective of introducing optional colored log output.


55-56: LGTM: New method end_log_group added to RestApiClient trait

The addition of the end_log_group method to the RestApiClient trait is well-defined and complements the start_log_group method, aligning with the PR objective.


463-465: LGTM: Implementation of start_log_group for TestClient

The implementation of start_log_group for TestClient is simple and appropriate for a test client. It correctly uses the log crate to output an info message with the group name.


467-469: LGTM: Implementation of end_log_group and updates to dummy_coverage test

The implementation of end_log_group for TestClient is consistent with start_log_group. The updates to the dummy_coverage test appropriately include calls to both new methods, ensuring test coverage for the new functionality.

Also applies to: 476-476, 492-493


52-56: Overall assessment: Changes are well-implemented and align with PR objectives

The additions to the RestApiClient trait and its implementation in TestClient successfully introduce the log grouping functionality. The changes are consistent, well-integrated, and properly tested. These modifications align well with the PR objective of enhancing logging capabilities and relocating log grouping functions to the rest_api module.

Also applies to: 463-469, 476-476, 492-493

cpp-linter/src/logger.rs (1)

37-38: Handle color output when colors are disabled.

When colors are disabled (e.g., in non-supporting terminals or when set_override(false)), the level_color function may still return color codes, leading to unreadable log output.

To ensure level_color handles disabled colors correctly, consider verifying the output without colors:

// Temporarily disable colors
set_override(false);
let level_str = SimpleLogger::level_color(&Level::Info);
assert_eq!(level_str, " INFO"); // Expect plain text without color codes

This verification ensures that log output remains clean and readable regardless of color settings.

cpp-linter/src/run.rs (6)

20-21: Imports updated to include GithubApiClient and RestApiClient

The import statements have been correctly updated to include GithubApiClient and RestApiClient, which are necessary for the integration of the rest_api module in the logging functions.


96-96: Log grouping functions transitioned to rest_api_client

The call to rest_api_client.start_log_group("Get list of specified source files") replaces the previous usage from the logger module, aligning with the objective to relocate log grouping functions to the rest_api module. This centralizes logging operations related to API interactions.


127-127: Ending log group with rest_api_client

The call to rest_api_client.end_log_group() correctly ends the log group initiated earlier, ensuring proper logging structure.


131-137: Updated capture_clang_tools_output to include &rest_api_client

The function capture_clang_tools_output now includes &rest_api_client as an argument, indicating tighter integration with the API client during the feedback capturing process. Ensure that the function's definition and implementation have been updated accordingly to handle this new parameter.


138-138: Started log group for feedback posting

The addition of rest_api_client.start_log_group("Posting feedback") enhances the logging granularity by grouping logs related to feedback posting, which improves readability and debugging.


142-142: Ended log group after feedback posting

The call to rest_api_client.end_log_group() appropriately closes the log group for feedback posting, maintaining proper log structure.

Copy link

codecov bot commented Oct 2, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 97.48%. Comparing base (da09e54) to head (7062177).
Report is 37 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #52      +/-   ##
==========================================
+ Coverage   97.45%   97.48%   +0.03%     
==========================================
  Files          14       14              
  Lines        3295     3338      +43     
==========================================
+ Hits         3211     3254      +43     
  Misses         84       84              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (2)
cpp-linter/src/logger.rs (2)

13-22: LGTM: Effective color formatting for log levels.

The level_color method provides a clear and intuitive color scheme for different log levels, enhancing readability. The implementation is concise and covers all log levels appropriately.

Consider using to_string() consistently for all match arms:

Level::Error => name.red().bold().to_string(),
Level::Warn => name.yellow().bold().to_string(),
Level::Info => name.green().bold().to_string(),
Level::Debug => name.blue().bold().to_string(),
Level::Trace => name.magenta().bold().to_string(),

This minor change would improve consistency across the match expression.


1-73: Approval: Removal of log grouping functions.

The removal of start_log_group and end_log_group functions aligns with the PR objectives. The log grouping functionality is now handled more appropriately within the log method for CI-specific cases.

Consider updating the module-level documentation to reflect these changes and explain how CI log grouping is now handled. This will help maintain clear and up-to-date documentation for users of this module.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between cb5d82b and c6553b8.

📒 Files selected for processing (1)
  • cpp-linter/src/logger.rs (1 hunks)
🔇 Additional comments (5)
cpp-linter/src/logger.rs (5)

3-11: LGTM: New imports and logger structure.

The new imports and the SimpleLogger struct definition align well with the PR objectives. The use of anyhow for error handling and colored for terminal output is appropriate. The Default derive for SimpleLogger provides a clean implementation.


26-28: Great job addressing the previous feedback!

The enabled method now correctly respects the global maximum log level set by log::max_level(). This change allows for more flexible control over logging levels at runtime and resolves the potential issue with ignored log messages.


30-40: LGTM: Improved log method with CI-specific handling.

The log method implementation effectively incorporates the new colored output while also handling CI-specific log grouping. The use of level_color enhances the log output as intended, and the method correctly checks if the log should be enabled before processing.


50-57: Excellent improvements to the init function!

The changes to the init function effectively implement the optional colored output feature while addressing previous compatibility concerns:

  1. The function now returns Result<()>, allowing for better error handling.
  2. The environment variable check uses matches!, resolving the compatibility issue with older Rust versions.
  3. The use of log::set_boxed_logger provides a more flexible approach compared to the previous static LOGGER.

These changes align well with the PR objectives and improve the overall robustness of the logging initialization.


61-73: Great job on improving test coverage!

The changes to the test module effectively address previous concerns and improve coverage:

  1. The new trace_log test verifies both the colored output functionality and trace-level logging.
  2. Setting CPP_LINTER_COLOR environment variable ensures the color feature is tested.
  3. The use of log::set_max_level(log::LevelFilter::Trace) correctly enables trace-level logging for the test.

These improvements ensure that the new features are properly tested and validate the logger's behavior at all log levels.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
cpp-linter/src/logger.rs (1)

64-76: LGTM with a minor suggestion: Test coverage is improved.

The new trace_log test effectively covers the colored output functionality and trace-level logging. It's great to see that you're setting the environment variable, initializing the logger, and verifying both the color output and trace-level logging.

Consider adding an assertion to verify that the log message is actually output. You could capture the stdout and check its contents. Here's a suggestion:

use std::io::Cursor;

#[test]
fn trace_log() {
    env::set_var("CPP_LINTER_COLOR", "true");
    init().unwrap_or(());
    assert!(SimpleLogger::level_color(&log::Level::Trace).contains("TRACE"));
    log::set_max_level(log::LevelFilter::Trace);
    
    let mut buffer = Vec::new();
    let _guard = log::set_logger(&SimpleLogger).map(|()| log::set_max_level(LevelFilter::Trace));
    {
        let mut writer = Cursor::new(&mut buffer);
        log::set_boxed_logger(Box::new(SimpleLogger)).unwrap();
        log::trace!("A dummy log statement for code coverage");
    }
    let log_output = String::from_utf8(buffer).unwrap();
    assert!(log_output.contains("A dummy log statement for code coverage"));
}

This addition would provide more comprehensive test coverage by ensuring that the log message is actually output as expected.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between c6553b8 and 7062177.

📒 Files selected for processing (1)
  • cpp-linter/src/logger.rs (1 hunks)
🧰 Additional context used
📓 Learnings (1)
cpp-linter/src/logger.rs (1)
Learnt from: 2bndy5
PR: cpp-linter/cpp-linter-rs#52
File: cpp-linter/src/logger.rs:13-22
Timestamp: 2024-10-02T08:00:06.515Z
Learning: When a suggestion has already been made and acknowledged by the user, avoid repeating the same suggestion in subsequent comments.
🔇 Additional comments (5)
cpp-linter/src/logger.rs (5)

3-7: LGTM: Import statements are appropriate for the new features.

The new imports (anyhow, colored, and additional log items) align well with the PR objectives. The use of anyhow for error handling and std::env for environment variable checking are good practices.


9-23: LGTM: SimpleLogger struct and level_color method are well-implemented.

The SimpleLogger struct with its Default derive is appropriately simple. The level_color method effectively uses pattern matching to assign colors to log levels, following common color conventions. This implementation aligns well with the PR objective of adding optional colored log output.


25-42: LGTM: log::Log trait implementation is improved and aligns with PR objectives.

The changes to the log::Log trait implementation for SimpleLogger are well-done:

  1. The enabled method now correctly respects log::max_level(), addressing the previous suggestion.
  2. The log method appropriately handles CI-specific logging separately.
  3. Colored output is implemented as intended, using the level_color method.

These changes effectively fulfill the PR objectives and improve the logging functionality.


50-60: LGTM: init function improvements enhance flexibility and error handling.

The changes to the init function are well-implemented:

  1. The return type Result<()> allows for more flexible error handling with anyhow.
  2. The CPP_LINTER_COLOR environment variable check correctly implements the optional colored output feature.
  3. Using log::set_boxed_logger instead of a static LOGGER provides more flexibility.
  4. Error mapping to anyhow::Error improves error handling consistency.

These changes align well with the PR objectives and improve the overall design.


1-76: Great job implementing colored log output and improving logger functionality!

The changes in this file effectively address the PR objectives and improve the overall logging functionality:

  1. Colored output is implemented using the colored crate, with an environment variable toggle.
  2. Error handling is enhanced with the use of anyhow.
  3. The logger initialization process is more flexible with set_boxed_logger.
  4. Test coverage has been expanded to include the new functionality.

The code is well-structured, follows Rust best practices, and there are no apparent issues or inconsistencies. These changes will significantly improve the user experience by providing optional colored log output and better error handling.

@2bndy5 2bndy5 linked an issue Oct 2, 2024 that may be closed by this pull request
@2bndy5 2bndy5 merged commit a11cf52 into main Oct 2, 2024
40 checks passed
@2bndy5 2bndy5 deleted the better-logs branch October 2, 2024 08:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

better log output
1 participant