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/164-alternate - JSON functionality #380

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from

Conversation

AthenaNetworks
Copy link

@AthenaNetworks AthenaNetworks commented Feb 12, 2025

This PR implements comprehensive JSON output support for fping as requested in #164, adding both compact and pretty-printed formatting options. Based on the wonderful code in #379 by @gsnw-sebast 😊

New Features

  1. JSON Output Format

    • New -j/--json flag for compact JSON output
    • New --json-pretty flag for formatted, human-readable output
    • Consistent JSON structure across all output types (per-system and global stats)
  2. Pretty Print Functionality

    • Configurable indentation (default: 2 spaces)
    • Proper array and object formatting
    • Optimized spacing around key-value pairs
    • Clean handling of newlines

Technical Implementation

  • Added new source files:

    • src/json.c: Core JSON formatting implementation
    • src/json.h: JSON interface definitions
  • Key Functions:

    • Enhanced print_per_system_stats() with JSON support
    • Enhanced print_global_stats() with JSON support
    • Added JSON utility functions for consistent formatting

Example Output

Pretty-printed format (--json-pretty):

{
  "hosts": [
    {
      "host": "1.1.1.1",
      "count": [
        "0.400",
        "0.565"
      ]
    }
  ]
}

Compact format (--json):

{"hosts":[{"host":"1.1.1.1","count":["0.400","0.565"]}]}

Compatibility

  • No breaking changes
  • Default behavior remains unchanged
  • Existing output formats are preserved
  • JSON output is optional and controlled by flags

Code Changes

  • Modified 4 files:
  • 172 insertions
  • 100 deletions
  • Primary changes in src/fping.c, src/json.c, and src/json.h

Test Coverage Details

Added comprehensive test suite to verify JSON output functionality. The tests cover:

  1. Basic JSON Output (-J -c)

    • Verifies correct host information
    • Validates statistics fields (xmt, rcv, loss)
    • Checks timing information (min, avg, max)
    • Ensures proper numeric formatting
  2. Pretty-Printed JSON (--json-pretty)

    • Validates proper indentation structure
    • Verifies consistent spacing around key-value pairs
    • Ensures proper array and object formatting
    • Maintains same data structure as compact output
  3. Count-Based Statistics (-J -C)

    • Tests array of ping responses
    • Verifies proper time formatting for each ping
    • Handles both successful pings and timeouts ("-")
    • Ensures correct array structure
  4. Multiple Host Support (-J -g)

    • Tests subnet scanning functionality
    • Verifies each host has complete statistics
    • Validates consistent structure across hosts
    • Ensures proper array nesting

Each test case includes:

  • Input validation
  • Output structure verification
  • Data type checking
  • Error case handling
  • Format consistency checks

The test suite helps maintain JSON output reliability and should improve code coverage metrics.

gsnw-sebast and others added 9 commits February 9, 2025 15:40
Add --json-pretty flag to enable formatted JSON output alongside the existing
condensed format (--json). This enhances readability while maintaining the
option for compact output when needed.

Key changes:
- Add --json-pretty flag that implies --json functionality
- Implement configurable indentation (default 2 spaces)
- Fix array formatting to eliminate extra newlines
- Improve object formatting for better readability
- Add spacing around key-value pairs
- Make JSON output more consistent across all output types

Technical details:
- Add json_pretty_print global to control formatting
- Modify print_json_end to handle final newlines correctly
- Update array formatting to properly handle first/subsequent elements
- Add spacing control in condensed vs pretty output
- Refactor print_json_* functions for better consistency

Example pretty output:
{
  "hosts": [
    {
      "host": "1.1.1.1",
      "count": [
        "0.400",
        "0.565"
      ]
    }
  ]
}

Breaking changes: None. Default JSON output (--json) remains unchanged.
- Add test-16-json-output.pl with extensive JSON output tests
- Fix JSON formatting issues in per-system stats output
- Remove extra newlines in JSON output
- Update json_end flag to maintain proper JSON structure
Credit original JSON implementation to Sebastian Wiesinger (gsnw-sebast)
and note enhancements by AthenaNetworks. Include GPL license header
to match project licensing.
- Update add_name() to output proper JSON when a host is invalid
- Include error message in JSON output instead of stderr
- Update test-16-json-output.pl to verify correct JSON structure
- Ensure consistent error handling in JSON mode (-J flag)

This change makes fping's JSON output more reliable for programmatic use
by including error information in the structured JSON output rather than
stderr. The JSON format for invalid hosts is now:

  {"host": "host.invalid", "error": "Name or service not known"}
- Modified json.c to consistently use stdout for all JSON output
- Updated add_name in fping.c to use stdout for error JSON output
- Simplified error JSON output in add_name to match other JSON output
- All tests now pass with consistent stdout/stderr behavior
…r one coming

🚌 Sometimes DNS says 'Name or service not known'
🚌 Sometimes it says 'Temporary failure in name resolution'
🤷 Who are we to judge? Let's accept both!

Also fixed the exit code because num_noaddress++ was playing hide and seek
in the wrong place. It's now properly counted before we return.
…k in! 🤦‍♂️

Dear DNS errors,
Could we maybe standardize on ONE message?
Pretty please? No?
Fine, have it your way...

Added yet another special snowflake to our regex:
'nodename nor servname provided, or not known'

At this point, I wouldn't be surprised if Windows
comes along with 'Computer says no' 🙄

(Testing is fun, they said.
It'll be easy, they said...)
@AthenaNetworks
Copy link
Author

Finally..... finally I got a working build. Tests are hard, man.

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.

3 participants