mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 18:18:25 +00:00
cccdc98426
Extract a number of string and format-related functions to netlib.strutils.
74 lines
1.6 KiB
Python
74 lines
1.6 KiB
Python
import os
|
|
import sys
|
|
import netlib.utils
|
|
|
|
from netlib import strutils
|
|
|
|
|
|
class MemBool(object):
|
|
|
|
"""
|
|
Truth-checking with a memory, for use in chained if statements.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.v = None
|
|
|
|
def __call__(self, v):
|
|
self.v = v
|
|
return bool(v)
|
|
|
|
|
|
def parse_anchor_spec(s):
|
|
"""
|
|
Return a tuple, or None on error.
|
|
"""
|
|
if "=" not in s:
|
|
return None
|
|
return tuple(s.split("=", 1))
|
|
|
|
|
|
def xrepr(s):
|
|
return repr(s)[1:-1]
|
|
|
|
|
|
def escape_unprintables(s):
|
|
"""
|
|
Like inner_repr, but preserves line breaks.
|
|
"""
|
|
s = s.replace(b"\r\n", b"PATHOD_MARKER_RN")
|
|
s = s.replace(b"\n", b"PATHOD_MARKER_N")
|
|
s = strutils.bytes_to_escaped_str(s)
|
|
s = s.replace("PATHOD_MARKER_RN", "\n")
|
|
s = s.replace("PATHOD_MARKER_N", "\n")
|
|
return s
|
|
|
|
|
|
data = netlib.utils.Data(__name__)
|
|
|
|
|
|
def daemonize(stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): # pragma: no cover
|
|
try:
|
|
pid = os.fork()
|
|
if pid > 0:
|
|
sys.exit(0)
|
|
except OSError as e:
|
|
sys.stderr.write("fork #1 failed: (%d) %s\n" % (e.errno, e.strerror))
|
|
sys.exit(1)
|
|
os.chdir("/")
|
|
os.umask(0)
|
|
os.setsid()
|
|
try:
|
|
pid = os.fork()
|
|
if pid > 0:
|
|
sys.exit(0)
|
|
except OSError as e:
|
|
sys.stderr.write("fork #2 failed: (%d) %s\n" % (e.errno, e.strerror))
|
|
sys.exit(1)
|
|
si = open(stdin, 'rb')
|
|
so = open(stdout, 'a+b')
|
|
se = open(stderr, 'a+b', 0)
|
|
os.dup2(si.fileno(), sys.stdin.fileno())
|
|
os.dup2(so.fileno(), sys.stdout.fileno())
|
|
os.dup2(se.fileno(), sys.stderr.fileno())
|