colorer: Avoid duplication and move it to litex/gen.

This commit is contained in:
Florent Kermarrec 2022-11-03 09:49:51 +01:00
parent 3986a5b27e
commit 507ffb72b5
7 changed files with 26 additions and 29 deletions

View File

@ -2,6 +2,8 @@ import sys
from litex.tools.litex_client import RemoteClient
# Python-Data Import Helper ------------------------------------------------------------------------
def get_data_mod(data_type, data_name):
"""Get the pythondata-{}-{} module or raise a useful error message."""
imp = "import pythondata_{}_{} as dm".format(data_type, data_name)

View File

@ -1,22 +1,10 @@
import sys
import time
# Helpers ------------------------------------------------------------------------------------------
def colorer(s, color="bright"): # FIXME: Move colorer to litex.common?
header = {
"bright": "\x1b[1m",
"green": "\x1b[32m",
"cyan": "\x1b[36m",
"red": "\x1b[31m",
"yellow": "\x1b[33m",
"underline": "\x1b[4m"}[color]
trailer = "\x1b[0m"
return header + str(s) + trailer
# Compat -------------------------------------------------------------------------------------------
# Compatibility Layer ------------------------------------------------------------------------------
def compat_notice(name, date, info=""):
from litex.gen import colorer
print("Compat: {name} is {deprecated} since {date} and will soon no longer work, please {update}. {info}".format(
name = colorer(name),
deprecated = colorer("deprecated", color="red"),

View File

@ -6,6 +6,19 @@
from migen import *
# Generic Helpers ----------------------------------------------------------------------------------
def colorer(s, color="bright"):
header = {
"bright": "\x1b[1m",
"green": "\x1b[32m",
"cyan": "\x1b[36m",
"red": "\x1b[31m",
"yellow": "\x1b[33m",
"underline": "\x1b[4m"}[color]
trailer = "\x1b[0m"
return header + str(s) + trailer
# Bit/Bytes Reversing ------------------------------------------------------------------------------
def reverse_bits(s):

View File

@ -9,7 +9,7 @@ import math
from migen import Record
from litex.soc.integration.soc import colorer
from litex.gen import colorer
logging.basicConfig(level=logging.INFO)

View File

@ -19,10 +19,12 @@ import struct
import shutil
from litex import get_data_mod
from litex.gen import colorer
from litex.build.tools import write_to_file
from litex.soc.integration import export, soc_core
from litex.soc.integration.soc import colorer
from litex.soc.cores import cpu
from litex.soc.integration import export, soc_core
# Helpers ------------------------------------------------------------------------------------------

View File

@ -15,6 +15,9 @@ import datetime
from math import log2, ceil
from migen import *
from litex.gen import colorer
from litex.gen import LiteXModule
from litex.soc.cores import cpu
@ -33,17 +36,6 @@ logging.basicConfig(level=logging.INFO)
def auto_int(x):
return int(x, 0)
def colorer(s, color="bright"):
header = {
"bright": "\x1b[1m",
"green": "\x1b[32m",
"cyan": "\x1b[36m",
"red": "\x1b[31m",
"yellow": "\x1b[33m",
"underline": "\x1b[4m"}[color]
trailer = "\x1b[0m"
return header + str(s) + trailer
def build_time(with_time=True):
fmt = "%Y-%m-%d %H:%M:%S" if with_time else "%Y-%m-%d"
return datetime.datetime.fromtimestamp(time.time()).strftime(fmt)

View File

@ -16,7 +16,7 @@ python3 = sys.executable
# Helpers ------------------------------------------------------------------------------------------
def colorer(s, color="bright"): # FIXME: Move colorer to litex.common?
def colorer(s, color="bright"):
header = {
"bright" : "\x1b[1m",
"green" : "\x1b[1m\x1b[32m",