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

r.info: Output comments as one string in JSON #4216

Merged
merged 3 commits into from
Jan 15, 2025

Conversation

wenzeslaus
Copy link
Member

The part of history which appears under the comments key can be multiple lines and is stored in a format which limits line length. This is basically how r.info shows it by default in the plain output for humans. Long lines can be split and continuation is marked using a backslash.

This adds a function which puts the continued lines back together and adds newlines between the other lines. There is no newline at the end. This string is then serialized in JSON instead of the original list of strings.

This also avoids serializing the history twice when the h flag is not used, but it does change the behavior for what keys are included.

The part of history which appears under the comments key can be multiple lines and is stored in a format which limits line length. This is basically how r.info shows it by default in the plain output for humans. Long lines can be split and continuation is marked using a backslash.

This adds a function which puts the continued lines back together and adds newlines between the other lines. There is no newline at the end. This string is then serialized in JSON instead of the original list of strings.

This also avoids serializing the history twice when the h flag is not used, but it does change the behavior for what keys are included.
@github-actions github-actions bot added raster Related to raster data processing Python Related code is in Python C Related code is in C module tests Related to Test Suite labels Aug 23, 2024
@wenzeslaus
Copy link
Member Author

I assume that following #4304, I should replace strcat by G_strlcat here, no?

@nilason
Copy link
Contributor

nilason commented Sep 13, 2024

I assume that following #4304, I should replace strcat by G_strlcat here, no?

I think that would be good, and replace strncat() too. If you know it will fit into dest buffer, just suppress return value with (void).

@ninsbl
Copy link
Member

ninsbl commented Sep 22, 2024

Nice. I just noticed that the parsed history may contain empty lines. See e.g.:

print(json.loads(gs.read_command("r.info", format="json", map="basin_50K"))["comments"])

No problem, but probably worth removing?

@wenzeslaus
Copy link
Member Author

Why to remove the empty line? That's what was stored. Why to remove it? See the results with this PR:

$ grass-dev ~/grassdata/nc_spm_08_grass7/ --tmp-mapset --exec python
>>> import grass.script as gs
>>> import json
>>> print(json.loads(gs.read_command("r.info", format="json", map="basin_50K"))["comments"])
Processing mode: All in RAM

r.watershed elevation="elevation" threshold=50000 accumulation="accum_50K" drainage="draindir_50K" basin="basin_50K"
>>> print(gs.parse_command("r.info", format="json", map="basin_50K")["comments"])
Processing mode: All in RAM

r.watershed elevation="elevation" threshold=50000 accumulation="accum_50K" drainage="draindir_50K" basin="basin_50K"

@wenzeslaus
Copy link
Member Author

What do you think about showing it in JSON just as it is stored in terms of newlines? Can you review this @ninsbl?

Copy link
Member

@ninsbl ninsbl left a comment

Choose a reason for hiding this comment

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

Sorry for the late reply. No problem to keep history as is in terms of newline...

@echoix echoix merged commit 6b42b8d into OSGeo:main Jan 15, 2025
26 checks passed
@petrasovaa petrasovaa added this to the 8.5.0 milestone Jan 16, 2025
@wenzeslaus wenzeslaus deleted the r_info-one-string-comment branch January 30, 2025 13:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C Related code is in C module Python Related code is in Python raster Related to raster data processing tests Related to Test Suite
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants