feat: use stderr of print function

This commit is contained in:
Daylin Morgan 2022-10-03 16:02:30 -05:00
parent 4e57dfe0e3
commit 14b6dccbc9
6 changed files with 42 additions and 37 deletions

View file

@ -6,7 +6,7 @@ import jinja2
py_script_names = [ py_script_names = [
"help", "help",
"info", "print",
"print-ansi", "print-ansi",
"vars", "vars",
"confirm", "confirm",

View file

@ -20,8 +20,8 @@ endif
_print-ansi: _print-ansi:
$(call py,print_ansi_py) $(call py,print_ansi_py)
# functions to take f-string literals and pass to python print # functions to take f-string literals and pass to python print
tprint = $(call py,info_py,$(1)) tprint = $(call py,print_py,$(1))
tprint-sh = $(call pysh,info_py,$(1)) tprint-sh = $(call pysh,print_py,$(1))
tconfirm = $(call py,confirm_py,$(1)) tconfirm = $(call py,confirm_py,$(1))
## _update-task.mk | downloads latest development version of task.mk ## _update-task.mk | downloads latest development version of task.mk
_update-task.mk: _update-task.mk:

View file

@ -13,6 +13,7 @@ from textwrap import wrap
###- ###-
# this is just to trick the LSP during development # this is just to trick the LSP during development
from utils import ansi, cfg from utils import ansi, cfg
# -### # -###

View file

@ -1,7 +0,0 @@
#% extends "py-script.mk" %#
#% block name %#info#% endblock %#
#% block script %#
##- '$(utils_py)' -##
print(f"""$(2)""")
#% endblock %#

7
src/print.py Normal file
View file

@ -0,0 +1,7 @@
#% extends "py-script.mk" %#
#% block name %#print#% endblock %#
#% block script %#
##- '$(utils_py)' -##
###- sys is imported with utils_py -###
sys.stderr.write(f"""$(2)\n""")
#% endblock %#

58
task.mk
View file

@ -1,7 +1,7 @@
# }> [github.com/daylinmorgan/task.mk] <{ # # }> [github.com/daylinmorgan/task.mk] <{ #
# Copyright (c) 2022 Daylin Morgan # Copyright (c) 2022 Daylin Morgan
# MIT License # MIT License
# version: 22.9.28 # version: v22.9.28-dev
# #
# task.mk should be included at the bottom of your Makefile with `-include .task.mk` # task.mk should be included at the bottom of your Makefile with `-include .task.mk`
# See below for the standard configuration options that should be set prior to including this file. # See below for the standard configuration options that should be set prior to including this file.
@ -42,8 +42,8 @@ endif
_print-ansi: _print-ansi:
$(call py,print_ansi_py) $(call py,print_ansi_py)
# functions to take f-string literals and pass to python print # functions to take f-string literals and pass to python print
tprint = $(call py,info_py,$(1)) tprint = $(call py,print_py,$(1))
tprint-sh = $(call pysh,info_py,$(1)) tprint-sh = $(call pysh,print_py,$(1))
tconfirm = $(call py,confirm_py,$(1)) tconfirm = $(call py,confirm_py,$(1))
## _update-task.mk | downloads latest development version of task.mk ## _update-task.mk | downloads latest development version of task.mk
_update-task.mk: _update-task.mk:
@ -240,9 +240,9 @@ def main():
if __name__ == "__main__": if __name__ == "__main__":
main() main()
endef endef
define info_py define print_py
$(utils_py) $(utils_py)
print(f"""$(2)""") sys.stderr.write(f"""$(2)\n""")
endef endef
define print_ansi_py define print_ansi_py
$(utils_py) $(utils_py)
@ -331,27 +331,30 @@ class Ansi:
def custom(self, fg=None, bg=None): def custom(self, fg=None, bg=None):
"""use custom color""" """use custom color"""
code, end = "\033[", "m" code, end = "\033[", "m"
if fg: if not sys.stdout.isatty() or os.getenv("NO_COLOR", False):
if isinstance(fg, int): return ""
code += f"38;5;{fg}" else:
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 1: if fg:
code += f"38;5;{fg[0]}" if isinstance(fg, int):
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 3: code += f"38;5;{fg}"
code += f"38;2;{';'.join((str(i) for i in fg))}" elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 1:
else: code += f"38;5;{fg[0]}"
print("Expected one or three values for fg as a list") elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 3:
sys.exit(1) code += f"38;2;{';'.join((str(i) for i in fg))}"
if bg: else:
if isinstance(bg, int): print("Expected one or three values for fg as a list")
code += f"{';' if fg else ''}48;5;{bg}" sys.exit(1)
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 1: if bg:
code += f"{';' if fg else ''}48;5;{bg[0]}" if isinstance(bg, int):
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 3: code += f"{';' if fg else ''}48;5;{bg}"
code += f"{';' if fg else ''}48;2;{';'.join((str(i) for i in bg))}" elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 1:
else: code += f"{';' if fg else ''}48;5;{bg[0]}"
print("Expected one or three values for bg as a list") elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 3:
sys.exit(1) code += f"{';' if fg else ''}48;2;{';'.join((str(i) for i in bg))}"
return code + end else:
print("Expected one or three values for bg as a list")
sys.exit(1)
return code + end
def add_cfg(self): def add_cfg(self):
cfg_styles = { cfg_styles = {
"header": "$(HEADER_STYLE)", "header": "$(HEADER_STYLE)",
@ -371,5 +374,6 @@ class Ansi:
return f"{self.__dict__[style]}{text}{self.__dict__['end']}" return f"{self.__dict__[style]}{text}{self.__dict__['end']}"
a = ansi = Ansi() a = ansi = Ansi()
cfg = Config( cfg = Config(
"$(DIVIDER)", "$(HELP_SEP)", f"""$(EPILOG)""", f"""$(USAGE)""",int('$(WRAP)')) "$(DIVIDER)", "$(HELP_SEP)", f"""$(EPILOG)""", f"""$(USAGE)""", int("$(WRAP)")
)
endef endef