2012-04-08 08:43:30 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2012-04-12 02:05:43 +00:00
|
|
|
|
""" Deroff.py, ported to Python from the venerable deroff.c """
|
|
|
|
|
|
2012-04-15 11:41:20 +00:00
|
|
|
|
import sys, re, string
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
2012-06-18 20:59:07 +00:00
|
|
|
|
IS_PY3 = sys.version_info[0] >= 3
|
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
class Deroffer:
|
2012-04-15 08:15:10 +00:00
|
|
|
|
|
|
|
|
|
g_specs_specletter = {
|
|
|
|
|
# Output composed latin1 letters
|
2019-05-05 10:09:25 +00:00
|
|
|
|
"-D": "\320",
|
|
|
|
|
"Sd": "\360",
|
|
|
|
|
"Tp": "\376",
|
|
|
|
|
"TP": "\336",
|
|
|
|
|
"AE": "\306",
|
|
|
|
|
"ae": "\346",
|
|
|
|
|
"OE": "OE",
|
|
|
|
|
"oe": "oe",
|
|
|
|
|
":a": "\344",
|
|
|
|
|
":A": "\304",
|
|
|
|
|
":e": "\353",
|
|
|
|
|
":E": "\313",
|
|
|
|
|
":i": "\357",
|
|
|
|
|
":I": "\317",
|
|
|
|
|
":o": "\366",
|
|
|
|
|
":O": "\326",
|
|
|
|
|
":u": "\374",
|
|
|
|
|
":U": "\334",
|
|
|
|
|
":y": "\377",
|
|
|
|
|
"ss": "\337",
|
|
|
|
|
"'A": "\301",
|
|
|
|
|
"'E": "\311",
|
|
|
|
|
"'I": "\315",
|
|
|
|
|
"'O": "\323",
|
|
|
|
|
"'U": "\332",
|
|
|
|
|
"'Y": "\335",
|
|
|
|
|
"'a": "\341",
|
|
|
|
|
"'e": "\351",
|
|
|
|
|
"'i": "\355",
|
|
|
|
|
"'o": "\363",
|
|
|
|
|
"'u": "\372",
|
|
|
|
|
"'y": "\375",
|
|
|
|
|
"^A": "\302",
|
|
|
|
|
"^E": "\312",
|
|
|
|
|
"^I": "\316",
|
|
|
|
|
"^O": "\324",
|
|
|
|
|
"^U": "\333",
|
|
|
|
|
"^a": "\342",
|
|
|
|
|
"^e": "\352",
|
|
|
|
|
"^i": "\356",
|
|
|
|
|
"^o": "\364",
|
|
|
|
|
"^u": "\373",
|
|
|
|
|
"`A": "\300",
|
|
|
|
|
"`E": "\310",
|
|
|
|
|
"`I": "\314",
|
|
|
|
|
"`O": "\322",
|
|
|
|
|
"`U": "\331",
|
|
|
|
|
"`a": "\340",
|
|
|
|
|
"`e": "\350",
|
|
|
|
|
"`i": "\354",
|
|
|
|
|
"`o": "\362",
|
|
|
|
|
"`u": "\371",
|
|
|
|
|
"~A": "\303",
|
|
|
|
|
"~N": "\321",
|
|
|
|
|
"~O": "\325",
|
|
|
|
|
"~a": "\343",
|
|
|
|
|
"~n": "\361",
|
|
|
|
|
"~o": "\365",
|
|
|
|
|
",C": "\307",
|
|
|
|
|
",c": "\347",
|
|
|
|
|
"/l": "/l",
|
|
|
|
|
"/L": "/L",
|
|
|
|
|
"/o": "\370",
|
|
|
|
|
"/O": "\330",
|
|
|
|
|
"oA": "\305",
|
|
|
|
|
"oa": "\345",
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# Ligatures
|
2019-05-05 10:09:25 +00:00
|
|
|
|
"fi": "fi",
|
|
|
|
|
"ff": "ff",
|
|
|
|
|
"fl": "fl",
|
|
|
|
|
"Fi": "ffi",
|
|
|
|
|
"Ff": "fff",
|
|
|
|
|
"Fl": "ffl",
|
2012-04-15 08:15:10 +00:00
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
g_specs = {
|
2019-05-05 10:09:25 +00:00
|
|
|
|
"mi": "-",
|
|
|
|
|
"en": "-",
|
|
|
|
|
"hy": "-",
|
|
|
|
|
"em": "--",
|
|
|
|
|
"lq": "“",
|
|
|
|
|
"rq": "”",
|
|
|
|
|
"Bq": ",,",
|
|
|
|
|
"oq": "`",
|
|
|
|
|
"cq": "'",
|
|
|
|
|
"aq": "'",
|
|
|
|
|
"dq": '"',
|
|
|
|
|
"or": "|",
|
|
|
|
|
"at": "@",
|
|
|
|
|
"sh": "#",
|
|
|
|
|
"Eu": "\244",
|
|
|
|
|
"eu": "\244",
|
|
|
|
|
"Do": "$",
|
|
|
|
|
"ct": "\242",
|
|
|
|
|
"Fo": "\253",
|
|
|
|
|
"Fc": "\273",
|
|
|
|
|
"fo": "<",
|
|
|
|
|
"fc": ">",
|
|
|
|
|
"r!": "\241",
|
|
|
|
|
"r?": "\277",
|
|
|
|
|
"Of": "\252",
|
|
|
|
|
"Om": "\272",
|
|
|
|
|
"pc": "\267",
|
|
|
|
|
"S1": "\271",
|
|
|
|
|
"S2": "\262",
|
|
|
|
|
"S3": "\263",
|
|
|
|
|
"<-": "<-",
|
|
|
|
|
"->": "->",
|
|
|
|
|
"<>": "<->",
|
|
|
|
|
"ua": "^",
|
|
|
|
|
"da": "v",
|
|
|
|
|
"lA": "<=",
|
|
|
|
|
"rA": "=>",
|
|
|
|
|
"hA": "<=>",
|
|
|
|
|
"uA": "^^",
|
|
|
|
|
"dA": "vv",
|
|
|
|
|
"ba": "|",
|
|
|
|
|
"bb": "|",
|
|
|
|
|
"br": "|",
|
|
|
|
|
"bv": "|",
|
|
|
|
|
"ru": "_",
|
|
|
|
|
"ul": "_",
|
|
|
|
|
"ci": "O",
|
|
|
|
|
"bu": "o",
|
|
|
|
|
"co": "\251",
|
|
|
|
|
"rg": "\256",
|
|
|
|
|
"tm": "(TM)",
|
|
|
|
|
"dd": "||",
|
|
|
|
|
"dg": "|",
|
|
|
|
|
"ps": "\266",
|
|
|
|
|
"sc": "\247",
|
|
|
|
|
"de": "\260",
|
|
|
|
|
"%0": "0/00",
|
|
|
|
|
"14": "\274",
|
|
|
|
|
"12": "\275",
|
|
|
|
|
"34": "\276",
|
|
|
|
|
"f/": "/",
|
|
|
|
|
"sl": "/",
|
|
|
|
|
"rs": "\\",
|
|
|
|
|
"sq": "[]",
|
|
|
|
|
"fm": "'",
|
|
|
|
|
"ha": "^",
|
|
|
|
|
"ti": "~",
|
|
|
|
|
"lB": "[",
|
|
|
|
|
"rB": "]",
|
|
|
|
|
"lC": "{",
|
|
|
|
|
"rC": "}",
|
|
|
|
|
"la": "<",
|
|
|
|
|
"ra": ">",
|
|
|
|
|
"lh": "<=",
|
|
|
|
|
"rh": "=>",
|
|
|
|
|
"tf": "therefore",
|
|
|
|
|
"~~": "~~",
|
|
|
|
|
"~=": "~=",
|
|
|
|
|
"!=": "!=",
|
|
|
|
|
"**": "*",
|
|
|
|
|
"+-": "\261",
|
|
|
|
|
"<=": "<=",
|
|
|
|
|
"==": "==",
|
|
|
|
|
"=~": "=~",
|
|
|
|
|
">=": ">=",
|
|
|
|
|
"AN": "\\/",
|
|
|
|
|
"OR": "/\\",
|
|
|
|
|
"no": "\254",
|
|
|
|
|
"te": "there exists",
|
|
|
|
|
"fa": "for all",
|
|
|
|
|
"Ah": "aleph",
|
|
|
|
|
"Im": "imaginary",
|
|
|
|
|
"Re": "real",
|
|
|
|
|
"if": "infinity",
|
|
|
|
|
"md": "\267",
|
|
|
|
|
"mo": "member of",
|
|
|
|
|
"mu": "\327",
|
|
|
|
|
"nm": "not member of",
|
|
|
|
|
"pl": "+",
|
|
|
|
|
"eq": "=",
|
|
|
|
|
"pt": "oc",
|
|
|
|
|
"pp": "perpendicular",
|
|
|
|
|
"sb": "(=",
|
|
|
|
|
"sp": "=)",
|
|
|
|
|
"ib": "(-",
|
|
|
|
|
"ip": "-)",
|
|
|
|
|
"ap": "~",
|
|
|
|
|
"is": "I",
|
|
|
|
|
"sr": "root",
|
|
|
|
|
"pd": "d",
|
|
|
|
|
"c*": "(x)",
|
|
|
|
|
"c+": "(+)",
|
|
|
|
|
"ca": "cap",
|
|
|
|
|
"cu": "U",
|
|
|
|
|
"di": "\367",
|
|
|
|
|
"gr": "V",
|
|
|
|
|
"es": "{}",
|
|
|
|
|
"CR": "_|",
|
|
|
|
|
"st": "such that",
|
|
|
|
|
"/_": "/_",
|
|
|
|
|
"lz": "<>",
|
|
|
|
|
"an": "-",
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# Output Greek
|
2019-05-05 10:09:25 +00:00
|
|
|
|
"*A": "Alpha",
|
|
|
|
|
"*B": "Beta",
|
|
|
|
|
"*C": "Xi",
|
|
|
|
|
"*D": "Delta",
|
|
|
|
|
"*E": "Epsilon",
|
|
|
|
|
"*F": "Phi",
|
|
|
|
|
"*G": "Gamma",
|
|
|
|
|
"*H": "Theta",
|
|
|
|
|
"*I": "Iota",
|
|
|
|
|
"*K": "Kappa",
|
|
|
|
|
"*L": "Lambda",
|
|
|
|
|
"*M": "Mu",
|
|
|
|
|
"*N": "Nu",
|
|
|
|
|
"*O": "Omicron",
|
|
|
|
|
"*P": "Pi",
|
|
|
|
|
"*Q": "Psi",
|
|
|
|
|
"*R": "Rho",
|
|
|
|
|
"*S": "Sigma",
|
|
|
|
|
"*T": "Tau",
|
|
|
|
|
"*U": "Upsilon",
|
|
|
|
|
"*W": "Omega",
|
|
|
|
|
"*X": "Chi",
|
|
|
|
|
"*Y": "Eta",
|
|
|
|
|
"*Z": "Zeta",
|
|
|
|
|
"*a": "alpha",
|
|
|
|
|
"*b": "beta",
|
|
|
|
|
"*c": "xi",
|
|
|
|
|
"*d": "delta",
|
|
|
|
|
"*e": "epsilon",
|
|
|
|
|
"*f": "phi",
|
|
|
|
|
"+f": "phi",
|
|
|
|
|
"*g": "gamma",
|
|
|
|
|
"*h": "theta",
|
|
|
|
|
"+h": "theta",
|
|
|
|
|
"*i": "iota",
|
|
|
|
|
"*k": "kappa",
|
|
|
|
|
"*l": "lambda",
|
|
|
|
|
"*m": "\265",
|
|
|
|
|
"*n": "nu",
|
|
|
|
|
"*o": "omicron",
|
|
|
|
|
"*p": "pi",
|
|
|
|
|
"+p": "omega",
|
|
|
|
|
"*q": "psi",
|
|
|
|
|
"*r": "rho",
|
|
|
|
|
"*s": "sigma",
|
|
|
|
|
"*t": "tau",
|
|
|
|
|
"*u": "upsilon",
|
|
|
|
|
"*w": "omega",
|
|
|
|
|
"*x": "chi",
|
|
|
|
|
"*y": "eta",
|
|
|
|
|
"*z": "zeta",
|
|
|
|
|
"ts": "sigma",
|
2012-04-15 08:15:10 +00:00
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
g_re_word = re.compile(r"[a-zA-Z_]+") # equivalent to the word() method
|
|
|
|
|
g_re_number = re.compile(r"[+-]?\d+") # equivalent to the number() method
|
|
|
|
|
g_re_esc_char = re.compile(
|
|
|
|
|
r"""([a-zA-Z_]) | # Word
|
2012-04-15 08:15:10 +00:00
|
|
|
|
([+-]?\d) | # Number
|
|
|
|
|
\\ # Backslash (for escape seq)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
""",
|
|
|
|
|
re.VERBOSE,
|
|
|
|
|
)
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
g_re_not_backslash_or_whitespace = re.compile(
|
|
|
|
|
r"[^ \t\n\r\f\v\\]+"
|
|
|
|
|
) # Match a sequence of not backslash or whitespace
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
g_re_newline_collapse = re.compile(r"\n{3,}")
|
2012-04-15 11:41:20 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
g_re_font = re.compile(
|
|
|
|
|
r"""\\f( # Starts with backslash f
|
2012-04-15 11:41:20 +00:00
|
|
|
|
(\(\S{2}) | # Open paren, then two printable chars
|
|
|
|
|
(\[\S*?\]) | # Open bracket, zero or more printable characters, then close bracket
|
|
|
|
|
\S) # Any printable character
|
2019-05-05 10:09:25 +00:00
|
|
|
|
""",
|
|
|
|
|
re.VERBOSE,
|
|
|
|
|
)
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# This gets filled in in __init__ below
|
|
|
|
|
g_macro_dict = False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def __init__(self):
|
|
|
|
|
self.reg_table = {}
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.tr_from = ""
|
|
|
|
|
self.tr_to = ""
|
|
|
|
|
self.tr = ""
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.nls = 2
|
|
|
|
|
self.specletter = False
|
|
|
|
|
self.refer = False
|
|
|
|
|
self.macro = 0
|
|
|
|
|
self.nobody = False
|
|
|
|
|
self.inlist = False
|
|
|
|
|
self.inheader = False
|
|
|
|
|
self.pic = False
|
|
|
|
|
self.tbl = False
|
|
|
|
|
self.tblstate = 0
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.tblTab = ""
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.eqn = False
|
|
|
|
|
self.skipheaders = False
|
|
|
|
|
self.skiplists = False
|
|
|
|
|
self.ignore_sonx = False
|
|
|
|
|
self.output = []
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.name = ""
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.OPTIONS = 0
|
|
|
|
|
self.FORMAT = 1
|
|
|
|
|
self.DATA = 2
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
# words is uninteresting and should be treated as false
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
if not Deroffer.g_macro_dict:
|
|
|
|
|
Deroffer.g_macro_dict = {
|
2019-05-05 10:09:25 +00:00
|
|
|
|
"SH": Deroffer.macro_sh,
|
|
|
|
|
"SS": Deroffer.macro_ss_ip,
|
|
|
|
|
"IP": Deroffer.macro_ss_ip,
|
|
|
|
|
"H ": Deroffer.macro_ss_ip,
|
|
|
|
|
"I ": Deroffer.macro_i_ir,
|
|
|
|
|
"IR": Deroffer.macro_i_ir,
|
|
|
|
|
"IB": Deroffer.macro_i_ir,
|
|
|
|
|
"B ": Deroffer.macro_i_ir,
|
|
|
|
|
"BR": Deroffer.macro_i_ir,
|
|
|
|
|
"BI": Deroffer.macro_i_ir,
|
|
|
|
|
"R ": Deroffer.macro_i_ir,
|
|
|
|
|
"RB": Deroffer.macro_i_ir,
|
|
|
|
|
"RI": Deroffer.macro_i_ir,
|
|
|
|
|
"AB": Deroffer.macro_i_ir,
|
|
|
|
|
"Nm": Deroffer.macro_Nm,
|
|
|
|
|
"] ": Deroffer.macro_close_bracket,
|
|
|
|
|
"PS": Deroffer.macro_ps,
|
|
|
|
|
"PE": Deroffer.macro_pe,
|
|
|
|
|
"TS": Deroffer.macro_ts,
|
|
|
|
|
"T&": Deroffer.macro_t_and,
|
|
|
|
|
"TE": Deroffer.macro_te,
|
|
|
|
|
"EQ": Deroffer.macro_eq,
|
|
|
|
|
"EN": Deroffer.macro_en,
|
|
|
|
|
"R1": Deroffer.macro_r1,
|
|
|
|
|
"R2": Deroffer.macro_r2,
|
|
|
|
|
"de": Deroffer.macro_de,
|
|
|
|
|
"BL": Deroffer.macro_bl_vl,
|
|
|
|
|
"VL": Deroffer.macro_bl_vl,
|
|
|
|
|
"AL": Deroffer.macro_bl_vl,
|
|
|
|
|
"LB": Deroffer.macro_bl_vl,
|
|
|
|
|
"RL": Deroffer.macro_bl_vl,
|
|
|
|
|
"ML": Deroffer.macro_bl_vl,
|
|
|
|
|
"DL": Deroffer.macro_bl_vl,
|
|
|
|
|
"BV": Deroffer.macro_bv,
|
|
|
|
|
"LE": Deroffer.macro_le,
|
|
|
|
|
"LP": Deroffer.macro_lp_pp,
|
|
|
|
|
"PP": Deroffer.macro_lp_pp,
|
|
|
|
|
"P\n": Deroffer.macro_lp_pp,
|
|
|
|
|
"ds": Deroffer.macro_ds,
|
|
|
|
|
"so": Deroffer.macro_so_nx,
|
|
|
|
|
"nx": Deroffer.macro_so_nx,
|
|
|
|
|
"tr": Deroffer.macro_tr,
|
|
|
|
|
"sp": Deroffer.macro_sp,
|
2012-04-16 02:22:30 +00:00
|
|
|
|
}
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def flush_output(self, where):
|
|
|
|
|
if where:
|
2012-04-15 08:15:10 +00:00
|
|
|
|
where.write(self.get_output())
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.output[:] = []
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def get_output(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
res = "".join(self.output)
|
|
|
|
|
clean_res = Deroffer.g_re_newline_collapse.sub("\n", res)
|
2012-04-15 08:15:10 +00:00
|
|
|
|
return clean_res
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def putchar(self, c):
|
2012-04-15 08:15:10 +00:00
|
|
|
|
self.output.append(c)
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return c
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 11:41:20 +00:00
|
|
|
|
# This gets swapped in in place of condputs the first time tr gets modified
|
|
|
|
|
def condputs_tr(self, str):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
special = (
|
|
|
|
|
self.pic
|
|
|
|
|
or self.eqn
|
|
|
|
|
or self.refer
|
|
|
|
|
or self.macro
|
|
|
|
|
or (self.skiplists and self.inlist)
|
|
|
|
|
or (self.skipheaders and self.inheader)
|
|
|
|
|
)
|
2012-04-15 08:15:10 +00:00
|
|
|
|
if not special:
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.output.append(str.translate(self.tr))
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
def condputs(self, str):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
special = (
|
|
|
|
|
self.pic
|
|
|
|
|
or self.eqn
|
|
|
|
|
or self.refer
|
|
|
|
|
or self.macro
|
|
|
|
|
or (self.skiplists and self.inlist)
|
|
|
|
|
or (self.skipheaders and self.inheader)
|
|
|
|
|
)
|
2012-11-18 10:23:22 +00:00
|
|
|
|
if not special:
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.output.append(str)
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def str_at(self, idx):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
return self.s[idx : idx + 1]
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def skip_char(self, amt=1):
|
|
|
|
|
self.s = self.s[amt:]
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def skip_leading_whitespace(self):
|
|
|
|
|
self.s = self.s.lstrip()
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def is_white(self, idx):
|
|
|
|
|
# Note this returns false for empty strings (idx >= len(self.s))
|
2019-05-05 10:09:25 +00:00
|
|
|
|
return self.s[idx : idx + 1].isspace()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
|
|
|
|
def str_eq(offset, other, len):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
return self.s[offset : offset + len] == other[:len]
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
|
|
|
|
def prch(self, idx):
|
2012-04-15 11:41:20 +00:00
|
|
|
|
# Note that this return False for the empty string (idx >= len(self.s))
|
2019-05-05 10:09:25 +00:00
|
|
|
|
ch = self.s[idx : idx + 1]
|
|
|
|
|
return ch not in " \t\n"
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
|
|
|
|
def font(self):
|
2012-04-15 11:41:20 +00:00
|
|
|
|
match = Deroffer.g_re_font.match(self.s)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not match:
|
|
|
|
|
return False
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.skip_char(match.end())
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 11:41:20 +00:00
|
|
|
|
def font2(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.s[0:2] == "\\f":
|
2012-04-15 11:41:20 +00:00
|
|
|
|
c = self.str_at(2)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if c == "(" and self.prch(3) and self.prch(4):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(5)
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c == "[":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(2)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.prch(0) and self.str_at(0) != "]":
|
|
|
|
|
self.skip_char()
|
|
|
|
|
if self.str_at(0) == "]":
|
|
|
|
|
self.skip_char()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
elif self.prch(2):
|
|
|
|
|
self.skip_char(3)
|
|
|
|
|
return True
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def comment(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# Here we require that the string start with \"
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.str_at(0) and self.str_at(0) != "\n":
|
|
|
|
|
self.skip_char()
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
|
|
|
|
def numreq(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# We require that the string starts with backslash
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.str_at(1) in "hvwud" and self.str_at(2) == "'":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.macro += 1
|
|
|
|
|
self.skip_char(3)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.str_at(0) != "'" and self.esc_char():
|
|
|
|
|
pass # Weird
|
|
|
|
|
if self.str_at(0) == "'":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
self.macro -= 1
|
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def var(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
reg = ""
|
2012-04-16 02:22:30 +00:00
|
|
|
|
s0s1 = self.s[0:2]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if s0s1 == "\\n":
|
|
|
|
|
if self.s[3:5] == "dy":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(5)
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif self.str_at(2) == "(" and self.prch(3) and self.prch(4):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(5)
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif self.str_at(2) == "[" and self.prch(3):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(3)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.str_at(0) and self.str_at(0) != "]":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
return True
|
|
|
|
|
elif self.prch(2):
|
|
|
|
|
self.skip_char(3)
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 == "\\*":
|
|
|
|
|
if self.str_at(2) == "(" and self.prch(3) and self.prch(4):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
reg = self.s[3:5]
|
|
|
|
|
self.skip_char(5)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif self.str_at(2) == "[" and self.prch(3):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(3)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.str_at(0) and self.str_at(0) != "]":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
reg = reg + self.str_at(0)
|
|
|
|
|
self.skip_char()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.s[0:1] == "]":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif self.prch(2):
|
|
|
|
|
reg = self.str_at(2)
|
|
|
|
|
self.skip_char(3)
|
|
|
|
|
else:
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if reg in self.reg_table:
|
|
|
|
|
old_s = self.s
|
|
|
|
|
self.s = self.reg_table[reg]
|
|
|
|
|
self.text_arg()
|
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def size(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# We require that the string starts with \s
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.digit(2) or (self.str_at(2) in "-+" and self.digit(3)):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(3)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.digit(0):
|
|
|
|
|
self.skip_char()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def spec(self):
|
|
|
|
|
self.specletter = False
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.s[0:2] == "\\(" and self.prch(2) and self.prch(3):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
key = self.s[2:4]
|
2012-04-15 08:15:10 +00:00
|
|
|
|
if key in Deroffer.g_specs_specletter:
|
|
|
|
|
self.condputs(Deroffer.g_specs_specletter[key])
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.specletter = True
|
2012-04-15 08:15:10 +00:00
|
|
|
|
elif key in Deroffer.g_specs:
|
|
|
|
|
self.condputs(Deroffer.g_specs[key])
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(4)
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif self.s.startswith("\\%"):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.specletter = True
|
|
|
|
|
self.skip_char(2)
|
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def esc(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# We require that the string start with backslash
|
|
|
|
|
c = self.s[1:2]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not c:
|
|
|
|
|
return False
|
|
|
|
|
if c in "eE":
|
|
|
|
|
self.condputs("\\")
|
|
|
|
|
elif c in "t":
|
|
|
|
|
self.condputs("\t")
|
|
|
|
|
elif c in "0~":
|
|
|
|
|
self.condputs(" ")
|
|
|
|
|
elif c in "|^&:":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
self.condputs(c)
|
|
|
|
|
self.skip_char(2)
|
|
|
|
|
return True
|
2012-04-15 08:15:10 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def word(self):
|
2012-04-15 08:15:10 +00:00
|
|
|
|
got_something = False
|
|
|
|
|
while True:
|
|
|
|
|
match = Deroffer.g_re_word.match(self.s)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not match:
|
|
|
|
|
break
|
2012-04-15 08:15:10 +00:00
|
|
|
|
got_something = True
|
|
|
|
|
self.condputs(match.group(0))
|
|
|
|
|
self.skip_char(match.end(0))
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# Consume all specials
|
|
|
|
|
while self.spec():
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not self.specletter:
|
|
|
|
|
break
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
return got_something
|
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def text(self):
|
2012-04-15 11:41:20 +00:00
|
|
|
|
while True:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
idx = self.s.find("\\")
|
2012-04-15 08:15:10 +00:00
|
|
|
|
if idx == -1:
|
|
|
|
|
self.condputs(self.s)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = ""
|
2012-04-15 11:41:20 +00:00
|
|
|
|
break
|
2012-04-15 08:15:10 +00:00
|
|
|
|
else:
|
|
|
|
|
self.condputs(self.s[:idx])
|
|
|
|
|
self.skip_char(idx)
|
2012-04-16 02:22:30 +00:00
|
|
|
|
if not self.esc_char_backslash():
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-15 08:15:10 +00:00
|
|
|
|
self.skip_char()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def letter(self, idx):
|
|
|
|
|
ch = self.str_at(idx)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
return ch.isalpha() or ch == "_" # underscore is used in C identifiers
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def digit(self, idx):
|
|
|
|
|
ch = self.str_at(idx)
|
|
|
|
|
return ch.isdigit()
|
|
|
|
|
|
|
|
|
|
def number(self):
|
2012-04-15 08:15:10 +00:00
|
|
|
|
match = Deroffer.g_re_number.match(self.s)
|
|
|
|
|
if not match:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
self.condputs(match.group(0))
|
|
|
|
|
self.skip_char(match.end())
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def esc_char_backslash(self):
|
|
|
|
|
# Like esc_char, but we know the string starts with a backslash
|
|
|
|
|
c = self.s[1:2]
|
|
|
|
|
if c == '"':
|
|
|
|
|
return self.comment()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c == "f":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.font()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c == "s":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.size()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c in "hvwud":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.numreq()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c in "n*":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.var()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif c == "(":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.spec()
|
|
|
|
|
else:
|
|
|
|
|
return self.esc()
|
|
|
|
|
|
2012-04-15 11:41:20 +00:00
|
|
|
|
def esc_char(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.s[0:1] == "\\":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return self.esc_char_backslash()
|
2012-04-15 11:41:20 +00:00
|
|
|
|
return self.word() or self.number()
|
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def quoted_arg(self):
|
|
|
|
|
if self.str_at(0) == '"':
|
|
|
|
|
self.skip_char()
|
|
|
|
|
while self.s and self.str_at(0) != '"':
|
|
|
|
|
if not self.esc_char():
|
|
|
|
|
if self.s:
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def text_arg(self):
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# PCA: The deroff.c textArg() disallowed quotes at the start of an argument
|
|
|
|
|
# I'm not sure if this was a bug or not
|
|
|
|
|
got_something = False
|
|
|
|
|
while True:
|
|
|
|
|
match = Deroffer.g_re_not_backslash_or_whitespace.match(self.s)
|
|
|
|
|
if match:
|
|
|
|
|
# Output the characters in the match
|
|
|
|
|
self.condputs(match.group(0))
|
|
|
|
|
self.skip_char(match.end(0))
|
|
|
|
|
got_something = True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# Next is either an escape, or whitespace, or the end
|
|
|
|
|
# If it's the whitespace or the end, we're done
|
|
|
|
|
if not self.s or self.is_white(0):
|
|
|
|
|
return got_something
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
# Try an escape
|
|
|
|
|
if not self.esc_char():
|
|
|
|
|
# Some busted escape? Just output it
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-15 08:15:10 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
got_something = True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 08:15:10 +00:00
|
|
|
|
def text_arg2(self):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if not self.esc_char():
|
|
|
|
|
if self.s and not self.is_white(0):
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
while True:
|
|
|
|
|
if not self.esc_char():
|
|
|
|
|
if self.s and not self.is_white(0):
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# Macro functions
|
|
|
|
|
def macro_sh(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
for header_str in [" SYNOPSIS", ' "SYNOPSIS', " ‹BERSICHT", ' "‹BERSICHT']:
|
2012-04-16 02:22:30 +00:00
|
|
|
|
if self.s[2:].startswith(header_str):
|
|
|
|
|
self.inheader = True
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
# Did not find a header string
|
|
|
|
|
self.inheader = False
|
|
|
|
|
self.nobody = True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_ss_ip(self):
|
|
|
|
|
self.nobody = True
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_i_ir(self):
|
|
|
|
|
pass
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-06-18 20:59:07 +00:00
|
|
|
|
def macro_Nm(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.s == "Nm\n":
|
2012-06-18 20:59:07 +00:00
|
|
|
|
self.condputs(self.name)
|
|
|
|
|
else:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.name = self.s[3:].strip() + " "
|
2012-06-18 20:59:07 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_close_bracket(self):
|
|
|
|
|
self.refer = False
|
|
|
|
|
return False
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_ps(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.pic = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_pe(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.pic = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_ts(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl, self.tblstate = True, self.OPTIONS
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_t_and(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl, self.tblstate = True, self.FORMAT
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_te(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_eq(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.eqn = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_en(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.eqn = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_r1(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.refer2 = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_r2(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.refer2 = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_de(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
macro = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_bl_vl(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.inlist = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_bv(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.str_at(2) == "L" and self.white(self.str_at(3)):
|
|
|
|
|
self.inlist = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_le(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.inlist = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_lp_pp(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_ds(self):
|
|
|
|
|
self.skip_char(2)
|
|
|
|
|
self.skip_leading_whitespace()
|
|
|
|
|
if self.str_at(0):
|
|
|
|
|
# Split at whitespace
|
|
|
|
|
comps = self.s.split(None, 2)
|
2019-11-05 22:23:46 +00:00
|
|
|
|
if len(comps) == 2:
|
2012-04-16 02:22:30 +00:00
|
|
|
|
name, value = comps
|
|
|
|
|
value = value.rstrip()
|
|
|
|
|
self.reg_table[name] = value
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_so_nx(self):
|
|
|
|
|
# We always ignore include directives
|
|
|
|
|
# deroff.c for some reason allowed this to fall through to the 'tr' case
|
|
|
|
|
# I think that was just a bug so I won't replicate it
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_tr(self):
|
|
|
|
|
self.skip_char(2)
|
|
|
|
|
self.skip_leading_whitespace()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and self.str_at(0) != "\n":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
c = self.str_at(0)
|
|
|
|
|
ns = self.str_at(1)
|
|
|
|
|
self.skip_char(2)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not ns or ns == "\n":
|
|
|
|
|
ns = " "
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.tr_from += c
|
|
|
|
|
self.tr_to += ns
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# Update our table, then swap in the slower tr-savvy condputs
|
2019-05-05 10:09:25 +00:00
|
|
|
|
try: # Python2
|
2012-06-05 11:05:53 +00:00
|
|
|
|
self.tr = string.maketrans(self.tr_from, self.tr_to)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
except AttributeError: # Python3
|
2012-06-05 11:05:53 +00:00
|
|
|
|
self.tr = "".maketrans(self.tr_from, self.tr_to)
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.condputs = self.condputs_tr
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_sp(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
def macro_other(self):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def request_or_macro(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
# s[0] is period or open single quote
|
|
|
|
|
self.skip_char()
|
|
|
|
|
s0 = self.s[1:2]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if s0 == "\\":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
if self.str_at(1) == '"':
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
pass
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == "[":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.refer = True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == "]":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.refer = False
|
|
|
|
|
self.skip_char()
|
|
|
|
|
return self.text()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == ".":
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.macro = False
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-16 02:22:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.nobody = False
|
|
|
|
|
s0s1 = self.s[0:2]
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
macro_func = Deroffer.g_macro_dict.get(s0s1, Deroffer.macro_other)
|
|
|
|
|
if macro_func(self):
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.skipheaders and self.nobody:
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and not self.is_white(0):
|
|
|
|
|
self.skip_char()
|
2012-04-16 02:22:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
|
|
|
|
while True:
|
|
|
|
|
if not self.quoted_arg() and not self.text_arg():
|
|
|
|
|
if self.s:
|
|
|
|
|
self.condputs(self.str_at(0))
|
|
|
|
|
self.skip_char()
|
|
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def request_or_macro2(self):
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
2012-04-16 02:22:30 +00:00
|
|
|
|
s0 = self.s[0:1]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if s0 == "\\":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if self.str_at(1) == '"':
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
pass
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == "[":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.refer = True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == "]":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.refer = False
|
|
|
|
|
self.skip_char()
|
|
|
|
|
return self.text()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0 == ".":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.macro = False
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.nobody = False
|
|
|
|
|
s0s1 = self.s[0:2]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if s0s1 == "SH":
|
|
|
|
|
for header_str in [" SYNOPSIS", ' "SYNOPSIS', " ‹BERSICHT", ' "‹BERSICHT']:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if self.s[2:].startswith(header_str):
|
|
|
|
|
self.inheader = True
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
# Did not find a header string
|
|
|
|
|
self.inheader = False
|
|
|
|
|
self.nobody = True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["SS", "IP", "H "]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.nobody = True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["I ", "IR", "IB", "B ", "BR", "BI", "R ", "RB", "RI", "AB"]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
pass
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["] "]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.refer = False
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["PS"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.pic = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["PE"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.pic = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["TS"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl, self.tblstate = True, self.OPTIONS
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["T&"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl, self.tblstate = True, self.FORMAT
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["TE"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.tbl = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["EQ"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.eqn = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["EN"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.eqn = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["R1"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.refer2 = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["R2"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.refer2 = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["de"]:
|
|
|
|
|
macro = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["BL", "VL", "AL", "LB", "RL", "ML", "DL"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.inlist = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["BV"]:
|
|
|
|
|
if self.str_at(2) == "L" and self.white(self.str_at(3)):
|
|
|
|
|
self.inlist = True
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["LE"]:
|
|
|
|
|
if self.is_white(2):
|
|
|
|
|
self.inlist = False
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["LP", "PP", "P\n"]:
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["ds"]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(2)
|
|
|
|
|
self.skip_leading_whitespace()
|
|
|
|
|
if self.str_at(0):
|
|
|
|
|
# Split at whitespace
|
|
|
|
|
comps = self.s.split(None, 2)
|
2019-11-05 22:23:46 +00:00
|
|
|
|
if len(comps) == 2:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
name, value = comps
|
|
|
|
|
value = value.rstrip()
|
|
|
|
|
self.reg_table[name] = value
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["so", "nx"]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
# We always ignore include directives
|
|
|
|
|
# deroff.c for some reason allowed this to fall through to the 'tr' case
|
|
|
|
|
# I think that was just a bug so I won't replicate it
|
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["tr"]:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char(2)
|
|
|
|
|
self.skip_leading_whitespace()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and self.str_at(0) != "\n":
|
2012-04-15 11:41:20 +00:00
|
|
|
|
c = self.str_at(0)
|
|
|
|
|
ns = self.str_at(1)
|
|
|
|
|
self.skip_char(2)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not ns or ns == "\n":
|
|
|
|
|
ns = " "
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.tr_from += c
|
|
|
|
|
self.tr_to += ns
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-15 11:41:20 +00:00
|
|
|
|
# Update our table, then swap in the slower tr-savvy condputs
|
2019-05-05 10:09:25 +00:00
|
|
|
|
try: # Python2
|
2012-06-05 11:05:53 +00:00
|
|
|
|
self.tr = string.maketrans(self.tr_from, self.tr_to)
|
2019-05-05 10:09:25 +00:00
|
|
|
|
except AttributeError: # Python3
|
2012-06-05 11:05:53 +00:00
|
|
|
|
self.tr = "".maketrans(self.tr_from, self.tr_to)
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs = self.condputs_tr
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2019-05-05 10:09:25 +00:00
|
|
|
|
elif s0s1 in ["sp"]:
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
|
|
|
|
else:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.skipheaders and self.nobody:
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and not self.is_white(0):
|
|
|
|
|
self.skip_char()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
|
|
|
|
while True:
|
|
|
|
|
if not self.quoted_arg() and not self.text_arg():
|
|
|
|
|
if self.s:
|
2012-04-15 11:41:20 +00:00
|
|
|
|
self.condputs(self.str_at(0))
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_char()
|
|
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def do_tbl(self):
|
|
|
|
|
if self.tblstate == self.OPTIONS:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and self.str_at(0) != ";" and self.str_at(0) != "\n":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
|
|
|
|
if not self.str_at(0).isalpha():
|
|
|
|
|
# deroff.c has a bug where it can loop forever here...we try to work around it
|
|
|
|
|
self.skip_char()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
else: # Parse option
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
option = self.s
|
2019-05-05 10:09:25 +00:00
|
|
|
|
arg = ""
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
idx = 0
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while option[idx : idx + 1].isalpha():
|
2012-04-08 08:43:30 +00:00
|
|
|
|
idx += 1
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if option[idx : idx + 1] == "(":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
option = option[:idx]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = self.s[idx + 1 :]
|
2012-04-08 08:43:30 +00:00
|
|
|
|
arg = self.s
|
|
|
|
|
else:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = ""
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if arg:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
idx = arg.find(")")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if idx != -1:
|
|
|
|
|
arg = arg[:idx]
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = self.s[idx + 1 :]
|
2012-04-08 08:43:30 +00:00
|
|
|
|
else:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
# self.skip_char()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
pass
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if option.lower() == "tab":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.tblTab = arg[0:1]
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.tblstate = self.FORMAT
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.condputs("\n")
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
elif self.tblstate == self.FORMAT:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
while self.s and self.str_at(0) != "." and self.str_at(0) != "\n":
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.skip_leading_whitespace()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.str_at(0):
|
|
|
|
|
self.skip_char()
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if self.str_at(0) == ".":
|
|
|
|
|
self.tblstate = self.DATA
|
|
|
|
|
self.condputs("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
elif self.tblstate == self.DATA:
|
|
|
|
|
if self.tblTab:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = self.s.replace(self.tblTab, "\t")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
self.text()
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def do_line(self):
|
2012-04-16 02:22:30 +00:00
|
|
|
|
if self.s[0:1] in ".'":
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if not self.request_or_macro():
|
|
|
|
|
return False
|
2012-04-08 08:43:30 +00:00
|
|
|
|
elif self.tbl:
|
|
|
|
|
self.do_tbl()
|
|
|
|
|
else:
|
|
|
|
|
self.text()
|
|
|
|
|
return True
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
def deroff(self, str):
|
2019-05-05 10:09:25 +00:00
|
|
|
|
lines = str.split("\n")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
for line in lines:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
self.s = line + "\n"
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if not self.do_line():
|
|
|
|
|
break
|
2019-05-05 10:09:25 +00:00
|
|
|
|
# self.putchar('\n')
|
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
|
|
|
|
|
def deroff_files(files):
|
|
|
|
|
for arg in files:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
sys.stderr.write(arg + "\n")
|
|
|
|
|
if arg.endswith(".gz"):
|
|
|
|
|
f = gzip.open(arg, "r")
|
2012-06-18 20:59:07 +00:00
|
|
|
|
str = f.read()
|
2019-05-05 10:09:25 +00:00
|
|
|
|
if IS_PY3:
|
|
|
|
|
str = str.decode("latin-1")
|
2012-04-08 08:43:30 +00:00
|
|
|
|
else:
|
2019-05-05 10:09:25 +00:00
|
|
|
|
f = open(arg, "r")
|
2012-06-18 20:59:07 +00:00
|
|
|
|
str = f.read()
|
2012-04-08 08:43:30 +00:00
|
|
|
|
d = Deroffer()
|
|
|
|
|
d.deroff(str)
|
|
|
|
|
d.flush_output(sys.stdout)
|
|
|
|
|
f.close()
|
|
|
|
|
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
import gzip
|
2019-05-05 10:09:25 +00:00
|
|
|
|
|
2012-04-08 08:43:30 +00:00
|
|
|
|
paths = sys.argv[1:]
|
2012-06-18 20:59:07 +00:00
|
|
|
|
if True:
|
2012-04-08 08:43:30 +00:00
|
|
|
|
deroff_files(paths)
|
|
|
|
|
else:
|
2012-04-16 02:22:30 +00:00
|
|
|
|
import cProfile, profile, pstats
|
2019-05-05 10:09:25 +00:00
|
|
|
|
|
|
|
|
|
profile.run("deroff_files(paths)", "fooprof")
|
|
|
|
|
p = pstats.Stats("fooprof")
|
|
|
|
|
p.sort_stats("time").print_stats(100)
|
|
|
|
|
# p.sort_stats('calls').print_callers(.5, 'startswith')
|