sapling/eden/scm/edenscm/scmposix.py
Muir Manders e615b04866 config: use correct system config path when editing
Summary: Get system config path from Rust rather than the legacy logic that had become completely disconnected from where we actually load configs from.

Reviewed By: bolinfest

Differential Revision: D40492820

fbshipit-source-id: 6ab6fc2b8243fa92dbd55b638f85f5fcbf6f27bd
2022-10-21 15:17:26 -07:00

66 lines
1.6 KiB
Python

# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
# Copyright 2013 Mercurial Contributors
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
import array
import errno
import fcntl
import os
import sys
from . import encoding, pycompat, util
def _rcfiles(path):
rcs = [os.path.join(path, "hgrc")]
rcdir = os.path.join(path, "hgrc.d")
try:
rcs.extend(
[
os.path.join(rcdir, f)
for f, kind in util.listdir(rcdir)
if f.endswith(".rc")
]
)
except OSError:
pass
return rcs
def termsize(ui):
try:
import termios
TIOCGWINSZ = termios.TIOCGWINSZ # unavailable on IRIX (issue3449)
except (AttributeError, ImportError):
return 80, 24
for dev in (ui.ferr, ui.fout, ui.fin):
try:
try:
fd = dev.fileno()
except AttributeError:
continue
if not os.isatty(fd):
continue
arri = fcntl.ioctl(fd, TIOCGWINSZ, "\0" * 8)
height, width = array.array(r"h", arri)[:2]
if width > 0 and height > 0:
return width, height
except ValueError:
pass
except IOError as e:
if e[0] == errno.EINVAL:
pass
else:
raise
return 80, 24