1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
|
from argparse import SUPPRESS, HelpFormatter, _SubParsersAction, _HelpAction
from collections import OrderedDict
import datetime
import os
import time
import re
DEFAULT_GROUP_NAMES = {
# We replace ArgumentGroup title (value) with alias (key).
None: [
'positional arguments',
],
'OPTIONS': [
'optional arguments',
'options',
]
}
DEFAULT_GROUP_NAMES_SUBCOMMANDS = {
# We replace ArgumentGroup title (value) with alias (key).
"arguments:": [
'positional arguments',
],
'options:': [
'optional arguments',
'options',
]
}
# all manpage attributes that can be set via CLI or setup.cfg
MANPAGE_DATA_ATTRS = (
"authors", # just "author" in setup.cfg, can be specified multiple times
"description",
"long_description", # not in the manpage.py, we use parser.description
"project_name", # maps to distribution.get_name()
"prog",
"url",
"version",
"format",
"manual_section",
"manual_title",
"include",
"manfile",
)
# manpage sections that are handled specially, so need special treatment
# when --include'ing extra material; see Manpage.add_section.
SPECIAL_MANPAGE_SECTIONS = (
"author",
"comments",
"description",
"distribution",
"synopsis",
)
def _markup(text):
"""
Escape the text for the markdown format.
"""
if isinstance(text, str):
return text.replace('\\', '\\\\').replace('-', r'\-')
return text
def get_manpage_data_from_distribution(distribution, data):
"""
Update `data` with values from `distribution`.
"""
# authors
if not "authors" in data:
author = None
if distribution.get_author():
author = distribution.get_author()
if distribution.get_author_email():
author += " <{}>".format(distribution.get_author_email())
elif distribution.get_author_email():
author = distribution.get_author_email()
if author:
data["authors"] = [author]
attrs = list(MANPAGE_DATA_ATTRS)
attrs.remove("authors")
attrs.remove("prog") # not available, copied from 'project_name' later
attrs.remove("format") # not available, must be set in setup.cfg
# we want the utility description, not the project description
attrs.remove("description")
for attr in attrs:
if data.get(attr, None):
continue
# map data["project_name"] to distribution.get_name()
get_attr = "name" if attr == "project_name" else attr
getter = getattr(distribution, "get_" + get_attr, None)
if not getter:
continue
value = getter()
data[attr] = value
if "prog" not in data:
data["prog"] = data["project_name"]
def _get_footer_lines(data):
ret = []
project_name = data.get("project_name", "")
authors = data.get("authors")
url = data.get("url")
needs_separator = False
if authors:
ret.append('.SH AUTHOR')
for author in authors:
ret.append(".nf")
ret.append(author)
ret.append(".fi")
needs_separator = True
if url:
if needs_separator:
ret.append("")
ret.append(".SH DISTRIBUTION")
ret.append("The latest version of {0} may "
"be downloaded from".format(_markup(project_name)))
ret.append(".UR {0}".format(_markup(url)))
ret.append(".UE")
return ret
def get_footer(data):
"""
Return a manual page footer based on the data returned from
get_manpage_data_from_distribution(). Used only by the old build_manpage
module.
"""
return "\n".join(_get_footer_lines(data)) + "\n"
# This is already considered an API, and seems like a valid scenario:
# https://github.com/pypa/pipx/blob/fd6650bcaeca3088/scripts/generate_man.py
class Manpage(object):
# pylint: disable=too-many-instance-attributes
def __init__(self, parser, _data=None, format='pretty'):
"""
Manual page abstraction. Generates, with the help of formater, a manual
page by __str__() method. Please avoid using the private _data
argument (see https://github.com/praiskup/argparse-manpage/issues/7),
instead override the `self.<ATTRIBUTE>` when needed.
"""
self.prog = parser.prog
self.parser = parser
self.format = format
self._data = _data or {}
self._match_texts = []
if not getattr(parser, '_manpage', None):
self.parser._manpage = []
self.manfile = self._data.get("manfile")
if self.manfile:
if len(self._data) > 1:
raise ValueError("manfile set, so no other key is allowed")
return
self.formatter = self.parser._get_formatter()
self.mf = _ManpageFormatter(self.prog, self.formatter, format=self.format)
self.synopsis = self.parser.format_usage().split(':', 1)[-1].split()
self.date = self._data.get("date")
if not self.date:
builddate = datetime.datetime.utcfromtimestamp(
int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))
)
self.date = builddate.strftime('%Y-%m-%d')
self.source = self._data.get("project_name")
if not self.source:
self.source = self.prog
version = self._data.get("version")
if version:
self.source += " " + str(version)
self.manual = self._data.get("manual_title")
if not self.manual:
self.manual = "Generated Python Manual"
self.section = self._data.get("manual_section")
if not self.section:
self.section = 1
self.description = self._data.get("description")
include = self._data.get("include")
if include is not None:
self.parse_include(include)
def format_text(self, text):
# Wrap by parser formatter and convert to manpage format
return self.mf.format_text(self.formatter._format_text(text)).strip('\n')
def __str__(self):
if self.manfile:
with open(self.manfile) as fd:
return fd.read()
lines = []
# Header
# per man (7) man-pages: .TH title section date source manual
header = '.TH {title} "{section}" "{date}" "{source}" "{manual}"'
lines.append(header.format(
title=_markup(self.prog.upper()),
section=self.section,
date=_markup(self.date),
source=_markup(self.source),
manual=_markup(self.manual),
))
# Name
lines.append('.SH NAME')
line = self.prog
description = None
if getattr(self.parser, 'man_short_description', None):
# Let's keep this undocumented. There's a way to specify this in
# setup.cfg: 'description'
description = self.parser.man_short_description
if self.description:
description = self.description
if description:
line += " - " + description
lines.append(_markup(line))
# Synopsis
synopsis_section = self.get_extra_section("synopsis")
if self.synopsis or synopsis_section:
lines.append('.SH SYNOPSIS')
if synopsis_section:
lines.append(synopsis_section["content"])
else:
lines.append('.B {}'.format(_markup(self.synopsis[0])))
lines.append(' '.join(self.synopsis[1:]))
extra_description = None
description_section = self.get_extra_section("description")
if description_section:
extra_description = description_section["content"]
lines.extend(self.mf.format_parser(self.parser, extra_description=extra_description))
comments_section = self.get_extra_section("comments")
if self.parser.epilog or comments_section:
lines.append("")
lines.append('.SH COMMENTS')
if comments_section:
lines.append(comments_section["content"])
else:
lines.append(self.format_text(self.parser.epilog))
# Additional sections
for section in self.parser._manpage: # pylint: disable=protected-access
if section["heading"] not in SPECIAL_MANPAGE_SECTIONS:
lines.append('.SH {}'.format(section['heading'].upper()))
lines.append(section['content'])
lines.append("")
lines.extend(self.mf.format_footer(self._data))
# Finally add --include sections that match text in the page
final_lines = []
for line in lines:
final_lines.append(line)
for match in self._match_texts:
if re.search(match['match_text'], line):
final_lines.append(match['content'])
return "\n".join(final_lines).strip("\n") + "\n"
def get_extra_section(self, heading):
"""
Return supplementary section for the `Manpage` (created with
`--include`), or `None`
"""
for section in self.parser._manpage: # pylint: disable=protected-access
if section["heading"] == heading:
return section
return None
def add_section(self, heading, position, content):
"""
Add a supplementary section to a `Manpage`
"""
# Sections that need special treatment
heading = heading.lower()
if heading in ("author", "distribution"):
if heading == "author":
self._data['authors'] = [content]
elif heading == "distribution":
self._data['url'] = content
section = self.get_extra_section(heading)
if section is None:
section = {"heading": heading, "content": ""}
self.parser._manpage.append(section) # pylint: disable=protected-access
if position == '<':
section["content"] = content + section["content"]
elif position == '=':
section["content"] = content
elif position == '>':
section["content"] += content
else:
raise ValueError("invalid position " + position)
def parse_include(self, file):
"""
Parse include file and add its contents to the man page
"""
def get_section(lines, n):
for i, line in enumerate(lines[n:]):
if re.match(r'[\[/]', line):
return n + i, lines[n:n + i]
return len(lines), lines[n:]
with open(file) as f:
lines = f.readlines()
i = 0
while i < len(lines):
# Parse a header line
m = re.match(r"/([^/]+)/$", lines[i])
if m:
match_text = m.group(1)
i, section_lines = get_section(lines, i + 1)
self._match_texts.append({"match_text": match_text, "content": "".join(section_lines).strip()})
else:
m = re.match(r"\[([<=>])?([^\]]+)\]$", lines[i])
if m:
position = m.group(1) or '<'
heading = m.group(2).upper()
if heading == "NAME":
raise ValueError("Invalid include section " + heading)
i, section_lines = get_section(lines, i + 1)
self.add_section(heading, position, "".join(section_lines).strip())
else:
raise ValueError("Invalid or missing section header in include file %s:\n%s" % (file, lines[i]))
def underline(text):
"""
Wrap text with \fI for underlined text
"""
return r'\fI\,{0}\/\fR'.format(_markup(text))
def bold(text):
""" Wrap text by "bold" groff tags """
return r"\fB{0}\fR".format(_markup(text))
def quoted(text):
""" Wrap by single-quotes """
return "'{0}'".format(text)
class _ManpageFormatter(HelpFormatter):
def __init__(self, prog, old_formatter, format):
super(HelpFormatter, self).__init__()
self._prog = prog
self.of = old_formatter
assert format in ("pretty", "single-commands-section")
self.format = format
@staticmethod
def _get_aliases_str(aliases):
if not aliases:
return ""
return " (" + ", ".join(aliases) + ")"
def _format_action_invocation(self, action):
if not action.option_strings:
metavar, = self._metavar_formatter(action, action.dest)(1)
return bold(metavar)
parts = []
# if the Optional doesn't take a value, format is:
# -s, --long
if action.nargs == 0:
parts.extend(map(bold, action.option_strings))
# if the Optional takes a value, format is:
# -s ARGS, --long ARGS
else:
default = action.dest.upper()
args_string = self._format_args(action, default)
for option_string in action.option_strings:
parts.append('{} {}'.format(bold(option_string),
underline(args_string)))
return ', '.join(parts)
def _format_parser(self, parser, subcommand=None, aliases=None, help=None, extra_description=None):
# The parser "tree" looks like
# ----------------------------
# Parser -> [ActionGroup, ActionGroup, ..]
# Group -> [Action, Action, ..]
# Action -> Option
# Action -> Subparsers
# Subparser -> [Parser, Parser, ..] So called "choices".
lines = []
if subcommand:
if self.format == "pretty":
lines.append("")
# start a new section for each command
first_line = ".SH COMMAND"
first_line += " " + underline(quoted(subcommand))
elif self.format == "single-commands-section":
# do not start a new section, start subsection of COMMANDS instead
first_line = ".SS"
first_line += " " + bold(subcommand + self._get_aliases_str(aliases))
lines.append(first_line)
if help:
if self.format == "pretty":
# help is printed on top in the list of commands already
pass
elif self.format == "single-commands-section":
# print help
lines.append(help)
lines.append("")
lines.append(self.format_text(parser.format_usage()))
if parser.description or extra_description:
if subcommand:
lines.append("")
else:
lines.append(".SH DESCRIPTION")
if extra_description:
lines.append(extra_description)
if parser.description:
lines.append(self.format_text(parser.description))
is_subsequent_ag = True
for group in parser._action_groups:
ag_lines = self._format_action_group(group, subcommand)
if not ag_lines:
continue
if is_subsequent_ag:
lines.append("")
lines.extend(ag_lines)
is_subsequent_ag = True
return lines
def format_parser(self, parser, extra_description=None):
"""
Return lines Groff formatted text for given parser
"""
return self._format_parser(parser, extra_description=extra_description)
def _format_action(self, action):
parts = []
parts.append('.TP')
action_header = self._format_action_invocation(action)
parts.append(action_header)
# if there was help for the action, add lines of help text
if action.help:
help_text = self.of._format_text(self._expand_help(action)).strip('\n')
parts.append(self.format_text(help_text))
return parts
def _format_ag_subcommands(self, actions, prog):
lines = []
for action in actions:
if getattr(action, 'help', None) == SUPPRESS:
continue
lines.append('.TP')
lines.append(bold(prog) + ' ' + underline(action.dest))
if hasattr(action, 'help'):
lines.append(self.format_text(action.help))
return '\n'.join(lines)
def _format_subparsers(self, action_group, action, subcommand=None):
lines = []
if subcommand:
if self.format == "pretty":
# start a new section for each command
lines.append('.SH')
title = action_group.title.upper()
title += " " + underline(quoted(subcommand))
lines.append(title)
elif self.format == "single-commands-section":
# do not start a new section, append subsections to the COMMANDS section
pass
else:
# start a new section on top-level
lines.append('.SH')
title = action_group.title.upper()
lines.append(title)
if self.format == "pretty":
# print list of subcommands
lines.append(self._format_ag_subcommands(action._choices_actions,
subcommand or self._prog))
elif self.format == "single-commands-section":
# skip printing list of subcommands
pass
# gather (sub-)command aliases
command_aliases = {}
command_aliases_names = set()
for name, command in action._name_parser_map.items():
if command not in command_aliases:
command_aliases[command] = []
else:
command_aliases[command].append(name)
command_aliases_names.add(name)
command_help = {}
for i in action._choices_actions:
command_help[i.dest] = i.help
for name, choice in action.choices.items():
if name in command_aliases_names:
# don't print aliased commands multiple times
continue
new_subcommand = "{} {}".format(subcommand or self._prog, name)
aliases = command_aliases[choice]
help = command_help.get(name, None)
if help == SUPPRESS:
# don't print hidden commands
continue
lines.extend(self._format_parser(choice, new_subcommand, aliases, help))
return lines
def _format_action_group(self, action_group, subcommand=None):
# Parser consists of these action_groups:
# - positional arguments (no group_actions)
# - ungrouped options
# - group 1 options
# - group 2 options
# - ...
# - subparsers
content = []
some_action = False
for action in action_group._group_actions:
if action.help == SUPPRESS:
continue
if isinstance(action, _SubParsersAction):
return self._format_subparsers(action_group, action,
subcommand)
if '--help' in action.option_strings:
# TODO: put out some man page comment ..
continue
if some_action:
# Separate actions
content.append("")
some_action = True
content.extend(self._format_action(action))
# We don't print empty argument groups.
if not some_action:
return []
title = action_group.title
group_names = DEFAULT_GROUP_NAMES
if subcommand:
if self.format == "pretty":
pass
elif self.format == "single-commands-section":
group_names = DEFAULT_GROUP_NAMES_SUBCOMMANDS
for replace_with, defaults in group_names.items():
if title in defaults:
title = replace_with
if subcommand:
if self.format == "pretty":
title = title.upper() if title else ""
if title:
title += " " + underline(quoted(subcommand))
title = [] if not title else [".SH " + title]
elif self.format == "single-commands-section":
title = [] if not title else [title]
else:
title = title.upper() if title else ""
title = [] if not title else [".SH " + title]
description = []
if action_group.description:
description.append(self.format_text(action_group.description))
description.append("")
if subcommand:
if self.format == "pretty":
# don't indent the whole content of a subcommand
pass
elif self.format == "single-commands-section":
# indent the whole content of a subcommand
content = [".RS 7"] + content + [".RE"] + [""]
return title + description + content
@staticmethod
def format_text(text):
"""
Format a block of text as it was a single line in set of other lines
(e.g. no trailing newline).
"""
return _markup(text.strip('\n'))
@staticmethod
def format_footer(data):
"""
Get lines for footer.
"""
return _get_footer_lines(data)
|