nodes.py
788 lines
| 25.0 KiB
| text/x-python
|
PythonLexer
r5608 | # Copyright (C) 2014-2024 RhodeCode GmbH | |||
r1 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU Affero General Public License | ||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
""" | ||||
Module holding everything related to vcs nodes, with vcs2 architecture. | ||||
""" | ||||
r5647 | ||||
r5075 | import functools | |||
r1577 | import os | |||
r1 | import stat | |||
from zope.cachedescriptors.property import Lazy as LazyProperty | ||||
r796 | from rhodecode.config.conf import LANGUAGES_EXTENSIONS_MAP | |||
r5075 | from rhodecode.lib.str_utils import safe_str, safe_bytes | |||
from rhodecode.lib.hash_utils import md5 | ||||
r1 | from rhodecode.lib.vcs import path as vcspath | |||
r5647 | from rhodecode.lib.vcs.backends.base import EmptyCommit | |||
r1 | from rhodecode.lib.vcs.conf.mtypes import get_mimetypes_db | |||
r5647 | from rhodecode.lib.vcs.exceptions import NodeError | |||
from rhodecode.lib.vcs_common import NodeKind, FILEMODE_DEFAULT | ||||
r1 | ||||
r5647 | LARGEFILE_PREFIX = ".hglf" | |||
r1 | ||||
class NodeState: | ||||
r5647 | ADDED = "added" | |||
CHANGED = "changed" | ||||
NOT_CHANGED = "not changed" | ||||
REMOVED = "removed" | ||||
r5075 | ||||
r1 | ||||
r5647 | # TODO: not sure if that should be bytes or str ? | |||
# most probably bytes because content should be bytes and we check it | ||||
BIN_BYTE_MARKER = b"\0" | ||||
r1 | ||||
r5075 | @functools.total_ordering | |||
r1 | class Node(object): | |||
""" | ||||
Simplest class representing file or directory on repository. SCM backends | ||||
should use ``FileNode`` and ``DirNode`` subclasses rather than ``Node`` | ||||
directly. | ||||
Node's ``path`` cannot start with slash as we operate on *relative* paths | ||||
only. Moreover, every single node is identified by the ``path`` attribute, | ||||
so it cannot end with slash, too. Otherwise, path could lead to mistakes. | ||||
""" | ||||
r5647 | ||||
r5075 | # RTLO marker allows swapping text, and certain | |||
# security attacks could be used with this | ||||
r5647 | RTLO_MARKER = "\u202e" | |||
r5075 | ||||
r1 | commit = None | |||
r5075 | def __init__(self, path: bytes, kind): | |||
r1 | self._validate_path(path) # can throw exception if path is invalid | |||
r5075 | ||||
r5647 | self.bytes_path: bytes = path.rstrip(b"/") # store for mixed encoding, and raw version | |||
self.str_path: str = safe_str(self.bytes_path) # we store paths as str | ||||
self.path: str = self.str_path | ||||
r5075 | ||||
r5647 | if self.bytes_path == b"" and kind != NodeKind.DIR: | |||
raise NodeError("Only DirNode and its subclasses may be initialized with empty path") | ||||
r1 | self.kind = kind | |||
if self.is_root() and not self.is_dir(): | ||||
raise NodeError("Root node cannot be FILE kind") | ||||
r5075 | def __eq__(self, other): | |||
if type(self) is not type(other): | ||||
return False | ||||
r5647 | for attr in ["name", "path", "kind"]: | |||
r5075 | if getattr(self, attr) != getattr(other, attr): | |||
return False | ||||
if self.is_file(): | ||||
# FileNode compare, we need to fallback to content compare | ||||
return None | ||||
else: | ||||
# For DirNode's check without entering each dir | ||||
self_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
other_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
if self_nodes_paths != other_nodes_paths: | ||||
return False | ||||
return True | ||||
def __lt__(self, other): | ||||
if self.kind < other.kind: | ||||
return True | ||||
if self.kind > other.kind: | ||||
return False | ||||
if self.path < other.path: | ||||
return True | ||||
if self.path > other.path: | ||||
return False | ||||
def __repr__(self): | ||||
r5647 | maybe_path = getattr(self, "path", "UNKNOWN_PATH") | |||
return f"<{self.__class__.__name__} {maybe_path!r}>" | ||||
r5075 | ||||
def __str__(self): | ||||
return self.name | ||||
def _validate_path(self, path: bytes): | ||||
self._assert_bytes(path) | ||||
r5647 | if path.startswith(b"/"): | |||
r1 | raise NodeError( | |||
r5075 | f"Cannot initialize Node objects with slash at " | |||
f"the beginning as only relative paths are supported. " | ||||
r5647 | f"Got {path}" | |||
) | ||||
r5075 | ||||
r5647 | @classmethod | |||
def _assert_bytes(cls, value): | ||||
r5075 | if not isinstance(value, bytes): | |||
raise TypeError(f"Bytes required as input, got {type(value)} of {value}.") | ||||
r1 | ||||
@LazyProperty | ||||
def parent(self): | ||||
r5647 | parent_path: bytes = self.get_parent_path() | |||
r1 | if parent_path: | |||
if self.commit: | ||||
return self.commit.get_node(parent_path) | ||||
return DirNode(parent_path) | ||||
return None | ||||
@LazyProperty | ||||
r2162 | def has_rtlo(self): | |||
"""Detects if a path has right-to-left-override marker""" | ||||
r5075 | return self.RTLO_MARKER in self.str_path | |||
r2162 | ||||
@LazyProperty | ||||
r1 | def dir_path(self): | |||
""" | ||||
Returns name of the directory from full path of this vcs node. Empty | ||||
string is returned if there's no directory in the path | ||||
""" | ||||
r5647 | _parts = self.path.rstrip("/").rsplit("/", 1) | |||
r1 | if len(_parts) == 2: | |||
r5075 | return _parts[0] | |||
r5647 | return "" | |||
r1 | ||||
@LazyProperty | ||||
def name(self): | ||||
""" | ||||
Returns name of the node so if its path | ||||
then only last part is returned. | ||||
""" | ||||
r5647 | return self.str_path.rstrip("/").split("/")[-1] | |||
r1 | ||||
@property | ||||
def kind(self): | ||||
return self._kind | ||||
@kind.setter | ||||
def kind(self, kind): | ||||
r5647 | if hasattr(self, "_kind"): | |||
r1 | raise NodeError("Cannot change node's kind") | |||
else: | ||||
self._kind = kind | ||||
# Post setter check (path's trailing slash) | ||||
r5647 | if self.str_path.endswith("/"): | |||
r1 | raise NodeError("Node's path cannot end with slash") | |||
r5075 | def get_parent_path(self) -> bytes: | |||
r1 | """ | |||
Returns node's parent path or empty string if node is root. | ||||
""" | ||||
if self.is_root(): | ||||
r5647 | return b"" | |||
str_path = vcspath.dirname(self.bytes_path.rstrip(b"/")) + b"/" | ||||
r5075 | ||||
return safe_bytes(str_path) | ||||
r1 | ||||
def is_file(self): | ||||
""" | ||||
Returns ``True`` if node's kind is ``NodeKind.FILE``, ``False`` | ||||
otherwise. | ||||
""" | ||||
return self.kind == NodeKind.FILE | ||||
def is_dir(self): | ||||
""" | ||||
Returns ``True`` if node's kind is ``NodeKind.DIR``, ``False`` | ||||
otherwise. | ||||
""" | ||||
return self.kind == NodeKind.DIR | ||||
def is_root(self): | ||||
""" | ||||
Returns ``True`` if node is a root node and ``False`` otherwise. | ||||
""" | ||||
r5647 | return self.kind == NodeKind.DIR and self.path == "" | |||
r1 | ||||
def is_submodule(self): | ||||
""" | ||||
Returns ``True`` if node's kind is ``NodeKind.SUBMODULE``, ``False`` | ||||
otherwise. | ||||
""" | ||||
return self.kind == NodeKind.SUBMODULE | ||||
def is_largefile(self): | ||||
""" | ||||
Returns ``True`` if node's kind is ``NodeKind.LARGEFILE``, ``False`` | ||||
otherwise | ||||
""" | ||||
r5647 | return self.kind == NodeKind.LARGE_FILE | |||
r1 | ||||
def is_link(self): | ||||
if self.commit: | ||||
r5647 | return self.commit.is_link(self.bytes_path) | |||
r1 | return False | |||
class FileNode(Node): | ||||
""" | ||||
Class representing file nodes. | ||||
:attribute: path: path to the node, relative to repository's root | ||||
:attribute: content: if given arbitrary sets content of the file | ||||
:attribute: commit: if given, first time content is accessed, callback | ||||
:attribute: mode: stat mode for a node. Default is `FILEMODE_DEFAULT`. | ||||
""" | ||||
r5647 | ||||
r1355 | _filter_pre_load = [] | |||
r1 | ||||
r5651 | def __init__(self, path: bytes, content: bytes | None = None, commit=None, mode=None, pre_load=None, pre_load_data=None): | |||
r1 | """ | |||
Only one of ``content`` and ``commit`` may be given. Passing both | ||||
would raise ``NodeError`` exception. | ||||
:param path: relative path to the node | ||||
:param content: content may be passed to constructor | ||||
:param commit: if given, will use it to lazily fetch content | ||||
:param mode: ST_MODE (i.e. 0100644) | ||||
""" | ||||
if content and commit: | ||||
raise NodeError("Cannot use both content and commit") | ||||
r5075 | ||||
super().__init__(path, kind=NodeKind.FILE) | ||||
r1 | self.commit = commit | |||
r5075 | if content and not isinstance(content, bytes): | |||
# File content is one thing that inherently must be bytes | ||||
# we support passing str too, and convert the content | ||||
content = safe_bytes(content) | ||||
r1 | self._content = content | |||
self._mode = mode or FILEMODE_DEFAULT | ||||
r5651 | if pre_load_data: | |||
self._store_pre_load(pre_load_data) | ||||
else: | ||||
self._set_bulk_properties(pre_load) | ||||
r1355 | ||||
r5075 | def __eq__(self, other): | |||
r5091 | eq = super().__eq__(other) | |||
r5075 | if eq is not None: | |||
return eq | ||||
return self.content == other.content | ||||
def __hash__(self): | ||||
r5647 | raw_id = getattr(self.commit, "raw_id", "") | |||
r5075 | return hash((self.path, raw_id)) | |||
def __lt__(self, other): | ||||
r5091 | lt = super().__lt__(other) | |||
r5075 | if lt is not None: | |||
return lt | ||||
return self.content < other.content | ||||
def __repr__(self): | ||||
r5647 | short_id = getattr(self.commit, "short_id", "") | |||
return f"<{self.__class__.__name__} path={self.str_path!r}, short_id={short_id}>" | ||||
r5075 | ||||
r1355 | def _set_bulk_properties(self, pre_load): | |||
if not pre_load: | ||||
return | ||||
r5647 | pre_load = [entry for entry in pre_load if entry not in self._filter_pre_load] | |||
r1355 | if not pre_load: | |||
return | ||||
r5075 | remote = self.commit.get_remote() | |||
r5647 | result = remote.bulk_file_request(self.commit.raw_id, self.bytes_path, pre_load) | |||
r5075 | ||||
r5651 | self._store_pre_load(result.items()) | |||
def _store_pre_load(self, pre_load_data): | ||||
for attr, value in pre_load_data: | ||||
r5075 | if attr == "flags": | |||
r5647 | self.__dict__["mode"] = safe_str(value) | |||
r5075 | elif attr == "size": | |||
r5647 | self.__dict__["size"] = value | |||
r5075 | elif attr == "data": | |||
r5647 | self.__dict__["_content"] = value | |||
r5075 | elif attr == "is_binary": | |||
r5647 | self.__dict__["is_binary"] = value | |||
r5075 | elif attr == "md5": | |||
r5647 | self.__dict__["md5"] = value | |||
r5075 | else: | |||
r5647 | raise ValueError(f"Unsupported attr in bulk_property: {attr}") | |||
r1355 | ||||
r1 | @LazyProperty | |||
def mode(self): | ||||
""" | ||||
Returns lazily mode of the FileNode. If `commit` is not set, would | ||||
use value given at initialization or `FILEMODE_DEFAULT` (default). | ||||
""" | ||||
if self.commit: | ||||
r5647 | mode = self.commit.get_file_mode(self.bytes_path) | |||
r1 | else: | |||
mode = self._mode | ||||
return mode | ||||
r501 | @LazyProperty | |||
r5075 | def raw_bytes(self) -> bytes: | |||
r501 | """ | |||
Returns lazily the raw bytes of the FileNode. | ||||
""" | ||||
r1 | if self.commit: | |||
r501 | if self._content is None: | |||
r5647 | self._content = self.commit.get_file_content(self.bytes_path) | |||
r501 | content = self._content | |||
r1 | else: | |||
content = self._content | ||||
return content | ||||
r5075 | def content_uncached(self): | |||
""" | ||||
Returns lazily content of the FileNode. | ||||
""" | ||||
if self.commit: | ||||
r5647 | content = self.commit.get_file_content(self.bytes_path) | |||
r5075 | else: | |||
content = self._content | ||||
return content | ||||
r3895 | def stream_bytes(self): | |||
""" | ||||
Returns an iterator that will stream the content of the file directly from | ||||
vcsserver without loading it to memory. | ||||
""" | ||||
if self.commit: | ||||
r5647 | return self.commit.get_file_content_streamed(self.bytes_path) | |||
r3896 | raise NodeError("Cannot retrieve stream_bytes without related commit attribute") | |||
r3895 | ||||
r3460 | def metadata_uncached(self): | |||
""" | ||||
Returns md5, binary flag of the file node, without any cache usage. | ||||
""" | ||||
r3479 | content = self.content_uncached() | |||
r3460 | ||||
r5075 | is_binary = bool(content and BIN_BYTE_MARKER in content) | |||
r3460 | size = 0 | |||
if content: | ||||
size = len(content) | ||||
r3479 | ||||
return is_binary, md5(content), size, content | ||||
r5075 | @LazyProperty | |||
def content(self) -> bytes: | ||||
r3479 | """ | |||
r5075 | Returns lazily content of the FileNode. | |||
""" | ||||
content = self.raw_bytes | ||||
if content and not isinstance(content, bytes): | ||||
r5647 | raise ValueError(f"Content is of type {type(content)} instead of bytes") | |||
r3479 | return content | |||
r3460 | ||||
r501 | @LazyProperty | |||
r5075 | def str_content(self) -> str: | |||
return safe_str(self.raw_bytes) | ||||
r1 | ||||
@LazyProperty | ||||
def size(self): | ||||
if self.commit: | ||||
r5647 | return self.commit.get_file_size(self.bytes_path) | |||
raise NodeError("Cannot retrieve size of the file without related commit attribute") | ||||
r1 | ||||
@LazyProperty | ||||
def message(self): | ||||
if self.commit: | ||||
return self.last_commit.message | ||||
r5647 | raise NodeError("Cannot retrieve message of the file without related " "commit attribute") | |||
r1 | ||||
@LazyProperty | ||||
def last_commit(self): | ||||
if self.commit: | ||||
r3850 | pre_load = ["author", "date", "message", "parents"] | |||
r5647 | return self.commit.get_path_commit(self.bytes_path, pre_load=pre_load) | |||
raise NodeError("Cannot retrieve last commit of the file without related commit attribute") | ||||
r1 | ||||
def get_mimetype(self): | ||||
""" | ||||
Mimetype is calculated based on the file's content. If ``_mimetype`` | ||||
attribute is available, it will be returned (backends which store | ||||
mimetypes or can easily recognize them, should set this private | ||||
attribute to indicate that type should *NOT* be calculated). | ||||
""" | ||||
r5647 | if hasattr(self, "_mimetype"): | |||
if isinstance(self._mimetype, (tuple, list)) and len(self._mimetype) == 2: | ||||
r1 | return self._mimetype | |||
else: | ||||
r5647 | raise NodeError("given _mimetype attribute must be an 2 element list or tuple") | |||
r1 | ||||
db = get_mimetypes_db() | ||||
mtype, encoding = db.guess_type(self.name) | ||||
if mtype is None: | ||||
r4666 | if not self.is_largefile() and self.is_binary: | |||
r5647 | mtype = "application/octet-stream" | |||
r1 | encoding = None | |||
else: | ||||
r5647 | mtype = "text/plain" | |||
r1 | encoding = None | |||
# try with pygments | ||||
try: | ||||
from pygments.lexers import get_lexer_for_filename | ||||
r5647 | ||||
r1 | mt = get_lexer_for_filename(self.name).mimetypes | |||
except Exception: | ||||
mt = None | ||||
if mt: | ||||
mtype = mt[0] | ||||
return mtype, encoding | ||||
@LazyProperty | ||||
def mimetype(self): | ||||
""" | ||||
Wrapper around full mimetype info. It returns only type of fetched | ||||
mimetype without the encoding part. use get_mimetype function to fetch | ||||
full set of (type,encoding) | ||||
""" | ||||
return self.get_mimetype()[0] | ||||
@LazyProperty | ||||
def mimetype_main(self): | ||||
r5647 | return self.mimetype.split("/")[0] | |||
r1 | ||||
r1357 | @classmethod | |||
def get_lexer(cls, filename, content=None): | ||||
r1 | from pygments import lexers | |||
r796 | ||||
r5647 | extension = filename.split(".")[-1] | |||
r796 | lexer = None | |||
r1357 | ||||
r1 | try: | |||
r5647 | lexer = lexers.guess_lexer_for_filename(filename, content, stripnl=False) | |||
r1 | except lexers.ClassNotFound: | |||
r5075 | pass | |||
r796 | ||||
# try our EXTENSION_MAP | ||||
if not lexer: | ||||
try: | ||||
r1357 | lexer_class = LANGUAGES_EXTENSIONS_MAP.get(extension) | |||
r796 | if lexer_class: | |||
lexer = lexers.get_lexer_by_name(lexer_class[0]) | ||||
except lexers.ClassNotFound: | ||||
r5075 | pass | |||
r796 | ||||
if not lexer: | ||||
r1 | lexer = lexers.TextLexer(stripnl=False) | |||
r796 | ||||
r1 | return lexer | |||
@LazyProperty | ||||
r1357 | def lexer(self): | |||
""" | ||||
Returns pygment's lexer class. Would try to guess lexer taking file's | ||||
content, name and mimetype. | ||||
""" | ||||
r5075 | # TODO: this is more proper, but super heavy on investigating the type based on the content | |||
r5647 | # self.get_lexer(self.name, self.content) | |||
r5075 | ||||
return self.get_lexer(self.name) | ||||
r1357 | ||||
@LazyProperty | ||||
r1 | def lexer_alias(self): | |||
""" | ||||
Returns first alias of the lexer guessed for this file. | ||||
""" | ||||
return self.lexer.aliases[0] | ||||
@LazyProperty | ||||
def history(self): | ||||
""" | ||||
Returns a list of commit for this file in which the file was changed | ||||
""" | ||||
if self.commit is None: | ||||
r5647 | raise NodeError("Unable to get commit for this FileNode") | |||
return self.commit.get_path_history(self.bytes_path) | ||||
r1 | ||||
@LazyProperty | ||||
def annotate(self): | ||||
""" | ||||
Returns a list of three element tuples with lineno, commit and line | ||||
""" | ||||
if self.commit is None: | ||||
r5647 | raise NodeError("Unable to get commit for this FileNode") | |||
r3850 | pre_load = ["author", "date", "message", "parents"] | |||
r5647 | return self.commit.get_file_annotate(self.bytes_path, pre_load=pre_load) | |||
r1 | ||||
r501 | @LazyProperty | |||
r1 | def is_binary(self): | |||
""" | ||||
Returns True if file has binary content. | ||||
""" | ||||
r3896 | if self.commit: | |||
r5647 | return self.commit.is_node_binary(self.bytes_path) | |||
r3896 | else: | |||
raw_bytes = self._content | ||||
r5075 | return bool(raw_bytes and BIN_BYTE_MARKER in raw_bytes) | |||
@LazyProperty | ||||
def md5(self): | ||||
""" | ||||
Returns md5 of the file node. | ||||
""" | ||||
if self.commit: | ||||
r5647 | return self.commit.node_md5_hash(self.bytes_path) | |||
r5075 | else: | |||
raw_bytes = self._content | ||||
# TODO: this sucks, we're computing md5 on potentially super big stream data... | ||||
return md5(raw_bytes) | ||||
r1 | ||||
@LazyProperty | ||||
def extension(self): | ||||
"""Returns filenode extension""" | ||||
r5647 | return self.name.split(".")[-1] | |||
r1 | ||||
@property | ||||
def is_executable(self): | ||||
""" | ||||
Returns ``True`` if file has executable flag turned on. | ||||
""" | ||||
return bool(self.mode & stat.S_IXUSR) | ||||
def get_largefile_node(self): | ||||
""" | ||||
Try to return a Mercurial FileNode from this node. It does internal | ||||
checks inside largefile store, if that file exist there it will | ||||
create special instance of LargeFileNode which can get content from | ||||
LF store. | ||||
""" | ||||
r1577 | if self.commit: | |||
r5647 | return self.commit.get_largefile_node(self.bytes_path) | |||
r1 | ||||
r5075 | def count_lines(self, content: str | bytes, count_empty=False): | |||
if isinstance(content, str): | ||||
r5647 | newline_marker = "\n" | |||
r5075 | elif isinstance(content, bytes): | |||
r5647 | newline_marker = b"\n" | |||
r5075 | else: | |||
r5647 | raise ValueError("content must be bytes or str got {type(content)} instead") | |||
r3962 | ||||
if count_empty: | ||||
all_lines = 0 | ||||
empty_lines = 0 | ||||
for line in content.splitlines(True): | ||||
r5075 | if line == newline_marker: | |||
r3962 | empty_lines += 1 | |||
all_lines += 1 | ||||
return all_lines, all_lines - empty_lines | ||||
else: | ||||
# fast method | ||||
r5075 | empty_lines = all_lines = content.count(newline_marker) | |||
r3962 | if all_lines == 0 and content: | |||
# one-line without a newline | ||||
empty_lines = all_lines = 1 | ||||
return all_lines, empty_lines | ||||
r1 | def lines(self, count_empty=False): | |||
all_lines, empty_lines = 0, 0 | ||||
if not self.is_binary: | ||||
r501 | content = self.content | |||
r3962 | all_lines, empty_lines = self.count_lines(content, count_empty=count_empty) | |||
r1 | return all_lines, empty_lines | |||
class DirNode(Node): | ||||
""" | ||||
DirNode stores list of files and directories within this node. | ||||
Nodes may be used standalone but within repository context they | ||||
r3925 | lazily fetch data within same repository's commit. | |||
r1 | """ | |||
r5075 | def __init__(self, path, nodes=(), commit=None, default_pre_load=None): | |||
r1 | """ | |||
Only one of ``nodes`` and ``commit`` may be given. Passing both | ||||
would raise ``NodeError`` exception. | ||||
:param path: relative path to the node | ||||
:param nodes: content may be passed to constructor | ||||
:param commit: if given, will use it to lazily fetch content | ||||
""" | ||||
if nodes and commit: | ||||
raise NodeError("Cannot use both nodes and commit") | ||||
r5091 | super().__init__(path, NodeKind.DIR) | |||
r1 | self.commit = commit | |||
self._nodes = nodes | ||||
r5647 | self.default_pre_load = default_pre_load or ["is_binary", "size"] | |||
r5075 | ||||
def __iter__(self): | ||||
r5091 | yield from self.nodes | |||
r5075 | ||||
def __eq__(self, other): | ||||
r5091 | eq = super().__eq__(other) | |||
r5075 | if eq is not None: | |||
return eq | ||||
# check without entering each dir | ||||
self_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
other_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
return self_nodes_paths == other_nodes_paths | ||||
def __lt__(self, other): | ||||
r5091 | lt = super().__lt__(other) | |||
r5075 | if lt is not None: | |||
return lt | ||||
# check without entering each dir | ||||
self_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
other_nodes_paths = list(sorted(n.path for n in self.nodes)) | ||||
return self_nodes_paths < other_nodes_paths | ||||
r1 | ||||
@LazyProperty | ||||
def content(self): | ||||
r5075 | raise NodeError(f"{self} represents a dir and has no `content` attribute") | |||
r1 | ||||
@LazyProperty | ||||
def nodes(self): | ||||
if self.commit: | ||||
r5647 | nodes = self.commit.get_nodes(self.bytes_path, pre_load=self.default_pre_load) | |||
r1 | else: | |||
nodes = self._nodes | ||||
return sorted(nodes) | ||||
@LazyProperty | ||||
def files(self): | ||||
r5091 | return sorted(node for node in self.nodes if node.is_file()) | |||
r1 | ||||
@LazyProperty | ||||
def dirs(self): | ||||
r5091 | return sorted(node for node in self.nodes if node.is_dir()) | |||
r1 | ||||
@LazyProperty | ||||
def state(self): | ||||
raise NodeError("Cannot access state of DirNode") | ||||
@LazyProperty | ||||
def size(self): | ||||
size = 0 | ||||
r5647 | for root, dirs, files in self.commit.walk(self.bytes_path): | |||
r1 | for f in files: | |||
size += f.size | ||||
return size | ||||
r3275 | @LazyProperty | |||
def last_commit(self): | ||||
if self.commit: | ||||
r3850 | pre_load = ["author", "date", "message", "parents"] | |||
r5647 | return self.commit.get_path_commit(self.bytes_path, pre_load=pre_load) | |||
raise NodeError("Cannot retrieve last commit of the file without related commit attribute") | ||||
r3275 | ||||
r1 | def __repr__(self): | |||
r5647 | short_id = getattr(self.commit, "short_id", "") | |||
return f"<{self.__class__.__name__} path={self.str_path!r}, short_id={short_id}>" | ||||
r1 | ||||
class RootNode(DirNode): | ||||
""" | ||||
DirNode being the root node of the repository. | ||||
""" | ||||
def __init__(self, nodes=(), commit=None): | ||||
r5647 | super().__init__(path=b"", nodes=nodes, commit=commit) | |||
r1 | ||||
def __repr__(self): | ||||
r5647 | short_id = getattr(self.commit, "short_id", "") | |||
return f"<{self.__class__.__name__} path={self.str_path!r}, short_id={short_id}>" | ||||
r1 | ||||
class SubModuleNode(Node): | ||||
""" | ||||
represents a SubModule of Git or SubRepo of Mercurial | ||||
""" | ||||
r5647 | ||||
r1 | is_binary = False | |||
size = 0 | ||||
def __init__(self, name, url=None, commit=None, alias=None): | ||||
r5649 | self.path: bytes = name | |||
r5647 | self.str_path: str = safe_str(self.path) # we store paths as str | |||
r1 | self.kind = NodeKind.SUBMODULE | |||
self.alias = alias | ||||
# we have to use EmptyCommit here since this can point to svn/git/hg | ||||
# submodules we cannot get from repository | ||||
r5649 | self.commit = EmptyCommit(safe_str(commit), alias=alias) | |||
self.url = safe_str(url) or self._extract_submodule_url() | ||||
r1 | ||||
def __repr__(self): | ||||
r5647 | short_id = getattr(self.commit, "short_id", "") | |||
return f"<{self.__class__.__name__} {self.str_path!r} @ {short_id}>" | ||||
r1 | ||||
def _extract_submodule_url(self): | ||||
r5649 | # TODO: find a way to parse gits submodule file and extract the linking URL | |||
return safe_str(self.path) | ||||
r1 | ||||
@LazyProperty | ||||
def name(self): | ||||
""" | ||||
Returns name of the node so if its path | ||||
then only last part is returned. | ||||
""" | ||||
r5647 | org = self.str_path.rstrip("/").split("/")[-1] | |||
return f"{org} @ {self.commit.short_id}" | ||||
r1 | ||||
class LargeFileNode(FileNode): | ||||
r1577 | def __init__(self, path, url=None, commit=None, alias=None, org_path=None): | |||
r5075 | self._validate_path(path) # can throw exception if path is invalid | |||
self.org_path = org_path # as stored in VCS as LF pointer | ||||
r5647 | self.bytes_path = path.rstrip(b"/") # store for __repr__ | |||
self.str_path = safe_str(self.bytes_path) | ||||
self.path = self.str_path | ||||
r5075 | ||||
r5647 | self.kind = NodeKind.LARGE_FILE | |||
r1577 | self.alias = alias | |||
r5647 | self._content = b"" | |||
r1577 | ||||
r5075 | def _validate_path(self, path: bytes): | |||
r1 | """ | |||
r5075 | we override check since the LargeFileNode path is system absolute, but we check for bytes only | |||
r1 | """ | |||
r5075 | self._assert_bytes(path) | |||
r1 | ||||
r1577 | def __repr__(self): | |||
r5647 | return f"<{self.__class__.__name__} {self.org_path} -> {self.str_path!r}>" | |||
r1577 | ||||
@LazyProperty | ||||
def size(self): | ||||
return os.stat(self.path).st_size | ||||
@LazyProperty | ||||
r501 | def raw_bytes(self): | |||
r5647 | with open(self.path, "rb") as f: | |||
r1627 | content = f.read() | |||
r1577 | return content | |||
@LazyProperty | ||||
def name(self): | ||||
""" | ||||
Overwrites name to be the org lf path | ||||
""" | ||||
return self.org_path | ||||
r3895 | ||||
def stream_bytes(self): | ||||
r5647 | with open(self.path, "rb") as stream: | |||
r3895 | while True: | |||
data = stream.read(16 * 1024) | ||||
if not data: | ||||
break | ||||
yield data | ||||