release: v1.0.0

This commit is contained in:
2026-05-16 17:34:32 +08:00
commit 2f521deff8
15 changed files with 4718 additions and 0 deletions

528
Releases/v1.0.0/dist/tree.sh vendored Executable file
View File

@@ -0,0 +1,528 @@
#!/usr/bin/env bash
# tree.sh - Directory tree generator
# Generates directory tree structure with optional file listing,
# markdown export, and statistics.
#
# Usage: ./tree.sh [-p PATH] [-o OUTPUT] [-d DEPTH] [-f] [-s] [-h] [-v]
#
# Version: 1.0.0
set -euo pipefail
# ── Constants ────────────────────────────────────────────────────────────────
readonly VERSION="1.0.0"
SCRIPT_NAME="$(basename "$0")"
readonly SCRIPT_NAME
readonly DEFAULT_OUTPUT="tree_output.md"
readonly IGNORE_FILE=".treeignore"
# Error codes
readonly ERR_OK=0
readonly ERR_USAGE=1
readonly ERR_PATH=2
readonly ERR_WRITE=3
# shellcheck disable=SC2034
readonly ERR_INTERNAL=4 # Fallback for unhandled errors
# ── Global State ─────────────────────────────────────────────────────────────
TARGET_PATH=""
OUTPUT_FILE="${DEFAULT_OUTPUT}"
MAX_DEPTH=0
SHOW_FILES=false
SHOW_STATS=true
declare -a IGNORE_PATTERNS=()
declare -A SEEN_INODES=()
# Counters for statistics
DIR_COUNT=0
FILE_COUNT=0
TOTAL_SIZE=0
# ── Module: parse_args ──────────────────────────────────────────────────────
# Parse command-line arguments and populate global state.
# Returns 0 on success, 1 on invalid arguments.
parse_args() {
while [[ $# -gt 0 ]]; do
case "$1" in
-p|--path)
if [[ $# -lt 2 ]]; then
echo "Error: -p/--path requires an argument" >&2
return "$ERR_USAGE"
fi
TARGET_PATH="$2"
shift 2
;;
-o|--output)
if [[ $# -lt 2 ]]; then
echo "Error: -o/--output requires an argument" >&2
return "$ERR_USAGE"
fi
OUTPUT_FILE="$2"
shift 2
;;
-d|--depth)
if [[ $# -lt 2 ]]; then
echo "Error: -d/--depth requires an argument" >&2
return "$ERR_USAGE"
fi
if ! [[ "$2" =~ ^[0-9]+$ ]] || [[ "$2" -eq 0 ]]; then
echo "Error: depth must be a positive integer" >&2
return "$ERR_USAGE"
fi
MAX_DEPTH="$2"
shift 2
;;
-f|--files)
SHOW_FILES=true
shift
;;
-s|--no-stats)
SHOW_STATS=false
shift
;;
-h|--help)
show_help
exit "$ERR_OK"
;;
-v|--version)
echo "${SCRIPT_NAME} ${VERSION}"
exit "$ERR_OK"
;;
-*)
echo "Error: unknown option '$1'" >&2
echo "Run '${SCRIPT_NAME} --help' for usage." >&2
return "$ERR_USAGE"
;;
*)
# Positional argument: treat as path
if [[ -z "$TARGET_PATH" ]]; then
TARGET_PATH="$1"
else
echo "Error: unexpected argument '$1'" >&2
return "$ERR_USAGE"
fi
shift
;;
esac
done
# Default to current directory if no path specified
if [[ -z "$TARGET_PATH" ]]; then
TARGET_PATH="."
fi
return "$ERR_OK"
}
# ── Module: show_help ───────────────────────────────────────────────────────
show_help() {
cat <<EOF
${SCRIPT_NAME} ${VERSION} - Directory tree generator
Usage: ${SCRIPT_NAME} [OPTIONS] [PATH]
Options:
-p, --path <PATH> Target directory (default: current directory)
-o, --output <FILE> Output file for markdown (default: ${DEFAULT_OUTPUT})
-d, --depth <N> Maximum recursion depth (default: unlimited)
-f, --files Also generate file tree
-s, --no-stats Suppress statistics output
-h, --help Show this help message
-v, --version Show version information
Examples:
${SCRIPT_NAME} # Tree of current directory
${SCRIPT_NAME} -p /home/user # Tree of /home/user
${SCRIPT_NAME} -p . -f -d 3 # Tree with files, depth 3
${SCRIPT_NAME} -o mytree.md # Save to mytree.md
EOF
}
# ── Module: load_ignore_config ──────────────────────────────────────────────
# Load ignore patterns from built-in defaults and .treeignore file.
# Populates the global IGNORE_PATTERNS array.
load_ignore_config() {
# Built-in default ignore patterns
IGNORE_PATTERNS=(
".git"
".svn"
".hg"
"node_modules"
"__pycache__"
".DS_Store"
"*.pyc"
"*.pyo"
".cache"
".tox"
".eggs"
"*.egg-info"
"dist"
"build"
".next"
".nuxt"
".output"
".vercel"
".terraform"
".vagrant"
".idea"
".vscode"
"*.swp"
"*.swo"
"*.swn"
"*.class"
"*.o"
"*.so"
"*.dylib"
)
# Load patterns from .treeignore in the target directory
local ignore_file
ignore_file="$(resolve_path "${TARGET_PATH}")/${IGNORE_FILE}"
if [[ -f "$ignore_file" ]]; then
local line
while IFS= read -r line || [[ -n "$line" ]]; do
# Skip empty lines and comments
line="$(echo "$line" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')"
if [[ -n "$line" && "$line" != \#* ]]; then
IGNORE_PATTERNS+=("$line")
fi
done < "$ignore_file"
fi
}
# ── Module: resolve_path ────────────────────────────────────────────────────
# Resolve a path to its absolute form.
# Arguments: $1 = path to resolve
# Outputs: resolved absolute path
resolve_path() {
local path="$1"
if [[ "$path" = /* ]]; then
echo "$path"
else
echo "$(pwd)/${path}"
fi
}
# ── Module: should_ignore ───────────────────────────────────────────────────
# Check if a given name matches any ignore pattern.
# Arguments: $1 = file or directory name
# Returns: 0 if should be ignored, 1 otherwise
should_ignore() {
local name="$1"
local pattern
for pattern in "${IGNORE_PATTERNS[@]}"; do
# Direct match
if [[ "$name" == "$pattern" ]]; then
return 0
fi
# Glob pattern match (e.g., *.pyc)
# shellcheck disable=SC2254
case "$name" in
$pattern) return 0 ;;
esac
done
return 1
}
# ── Module: traverse_directory ──────────────────────────────────────────────
# Recursively traverse directory and build tree structure.
# Arguments:
# $1 = directory path
# $2 = current depth
# $3 = prefix string for tree lines
# Outputs: tree lines to stdout
traverse_directory() {
local dir="$1"
local depth="$2"
local prefix="$3"
# Check depth limit
if [[ $MAX_DEPTH -gt 0 && $depth -ge $MAX_DEPTH ]]; then
return 0
fi
# Check if directory is readable
if [[ ! -r "$dir" ]]; then
echo "${prefix}[Permission denied]" >&2
return 0
fi
# Collect entries, sorted
local entries=()
local entry
for entry in "$dir"/* "$dir"/.*; do
# Skip . and ..
local basename
basename="$(basename "$entry")"
[[ "$basename" == "." || "$basename" == ".." ]] && continue
# Skip if doesn't exist (glob didn't match)
[[ ! -e "$entry" ]] && continue
# Check ignore
if should_ignore "$basename"; then
continue
fi
entries+=("$entry")
done
# Sort entries: directories first, then files, both alphabetical
local dirs=()
local files=()
local e
for e in "${entries[@]+"${entries[@]}"}"; do
if [[ -d "$e" ]]; then
dirs+=("$e")
else
files+=("$e")
fi
done
# Combine: dirs first, then files
local sorted=()
sorted+=("${dirs[@]+"${dirs[@]}"}")
sorted+=("${files[@]+"${files[@]}"}")
local total=${#sorted[@]}
local idx=0
for e in "${sorted[@]+"${sorted[@]}"}"; do
idx=$((idx + 1))
local basename
basename="$(basename "$e")"
local is_last=false
if [[ $idx -eq $total ]]; then
is_last=true
fi
local connector
local child_prefix
if $is_last; then
connector="└── "
child_prefix="${prefix} "
else
connector="├── "
child_prefix="${prefix}"
fi
if [[ -d "$e" ]]; then
# Inode-based cycle detection
local inode
inode="$(stat -c '%d:%i' "$e" 2>/dev/null || stat -f '%d:%i' "$e" 2>/dev/null || echo "")"
if [[ -n "$inode" && -n "${SEEN_INODES[$inode]:-}" ]]; then
echo "${prefix}${connector}${basename}/ [cycle detected, skipped]"
continue
fi
if [[ -n "$inode" ]]; then
SEEN_INODES["$inode"]=1
fi
echo "${prefix}${connector}${basename}/"
DIR_COUNT=$((DIR_COUNT + 1))
traverse_directory "$e" $((depth + 1)) "$child_prefix"
else
echo "${prefix}${connector}${basename}"
FILE_COUNT=$((FILE_COUNT + 1))
# Accumulate file size
local fsize
fsize="$(stat -c '%s' "$e" 2>/dev/null || stat -f '%z' "$e" 2>/dev/null || echo 0)"
TOTAL_SIZE=$((TOTAL_SIZE + fsize))
fi
done
}
# ── Module: render_tree ─────────────────────────────────────────────────────
# Render the directory tree starting from the target path.
# Outputs: complete tree to stdout
render_tree() {
local abs_path
abs_path="$(resolve_path "$TARGET_PATH")"
local root_name
root_name="$(basename "$abs_path")"
# Reset inode tracking and counters for each render pass
SEEN_INODES=()
DIR_COUNT=0
FILE_COUNT=0
TOTAL_SIZE=0
echo "${root_name}/"
DIR_COUNT=$((DIR_COUNT + 1))
# Track root inode for cycle detection
local root_inode
root_inode="$(stat -c '%d:%i' "$abs_path" 2>/dev/null || stat -f '%d:%i' "$abs_path" 2>/dev/null || echo "")"
if [[ -n "$root_inode" ]]; then
SEEN_INODES["$root_inode"]=1
fi
traverse_directory "$abs_path" 1 ""
}
# ── Module: collect_files ───────────────────────────────────────────────────
# Collect all files recursively from the target directory.
# Arguments:
# $1 = directory path
# $2 = current depth
# Outputs: file paths to stdout
collect_files() {
local dir="$1"
local depth="$2"
if [[ $MAX_DEPTH -gt 0 && $depth -ge $MAX_DEPTH ]]; then
return 0
fi
if [[ ! -r "$dir" ]]; then
return 0
fi
local entry
for entry in "$dir"/* "$dir"/.*; do
local basename
basename="$(basename "$entry")"
[[ "$basename" == "." || "$basename" == ".." ]] && continue
[[ ! -e "$entry" ]] && continue
if should_ignore "$basename"; then
continue
fi
if [[ -d "$entry" ]]; then
collect_files "$entry" $((depth + 1))
else
echo "$entry"
fi
done
}
# ── Module: render_file_list ────────────────────────────────────────────────
# Render the complete file list.
# Outputs: file list to stdout
render_file_list() {
local abs_path
abs_path="$(resolve_path "$TARGET_PATH")"
echo "Files:"
local file
while IFS= read -r file; do
echo " ${file}"
done < <(collect_files "$abs_path" 0 | sort)
}
# ── Module: compute_stats ───────────────────────────────────────────────────
# Compute and output statistics.
# Outputs: statistics to stdout
compute_stats() {
local size_human
if [[ $TOTAL_SIZE -ge 1073741824 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f GB\", ${TOTAL_SIZE}/1073741824}")"
elif [[ $TOTAL_SIZE -ge 1048576 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f MB\", ${TOTAL_SIZE}/1048576}")"
elif [[ $TOTAL_SIZE -ge 1024 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f KB\", ${TOTAL_SIZE}/1024}")"
else
size_human="${TOTAL_SIZE} B"
fi
echo ""
echo "Statistics:"
echo " Directories: ${DIR_COUNT}"
echo " Files: ${FILE_COUNT}"
echo " Total size: ${size_human}"
}
# ── Module: output_terminal ─────────────────────────────────────────────────
# Output tree to terminal (stdout).
output_terminal() {
render_tree
if $SHOW_FILES; then
echo ""
render_file_list
fi
if $SHOW_STATS; then
compute_stats
fi
}
# ── Module: save_markdown ───────────────────────────────────────────────────
# Save tree output to a Markdown file.
# Arguments: $1 = output file path
save_markdown() {
local outfile="$1"
local outfile_dir
outfile_dir="$(dirname "$outfile")"
# Ensure output directory exists
if [[ ! -d "$outfile_dir" ]]; then
mkdir -p "$outfile_dir" 2>/dev/null || {
echo "Error: cannot create output directory '${outfile_dir}'" >&2
exit "$ERR_WRITE"
}
fi
{
echo "# Directory Tree"
echo ""
echo "Path: \`${TARGET_PATH}\`"
echo ""
echo '```'
render_tree
echo '```'
if $SHOW_FILES; then
echo ""
echo "## Files"
echo ""
render_file_list
fi
if $SHOW_STATS; then
echo ""
echo "## Statistics"
echo ""
echo "- **Directories:** ${DIR_COUNT}"
echo "- **Files:** ${FILE_COUNT}"
local size_human
if [[ $TOTAL_SIZE -ge 1073741824 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f GB\", ${TOTAL_SIZE}/1073741824}")"
elif [[ $TOTAL_SIZE -ge 1048576 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f MB\", ${TOTAL_SIZE}/1048576}")"
elif [[ $TOTAL_SIZE -ge 1024 ]]; then
size_human="$(awk "BEGIN {printf \"%.2f KB\", ${TOTAL_SIZE}/1024}")"
else
size_human="${TOTAL_SIZE} B"
fi
echo "- **Total size:** ${size_human}"
fi
} > "$outfile" 2>/dev/null || {
echo "Error: cannot write to '${outfile}'" >&2
exit "$ERR_WRITE"
}
echo "Markdown saved to: ${outfile}"
}
# ── Main ─────────────────────────────────────────────────────────────────────
main() {
# Parse arguments
local parse_rc=0
parse_args "$@" || parse_rc=$?
if [[ $parse_rc -ne 0 ]]; then
exit "$parse_rc"
fi
# Validate target path
if [[ ! -d "$TARGET_PATH" ]]; then
echo "Error: '${TARGET_PATH}' is not a valid directory" >&2
exit "$ERR_PATH"
fi
# Load ignore configuration
load_ignore_config
# Output to terminal
output_terminal
# Save markdown
save_markdown "$OUTPUT_FILE"
exit "$ERR_OK"
}
# Entry point
main "$@"

654
Releases/v1.0.0/dist/tree_gen.py vendored Normal file
View File

@@ -0,0 +1,654 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
tree_gen.py - 目录树生成脚本 (Windows 平台)
功能: F013-F020
- 接收路径输入(命令行参数)
- 加载忽略配置
- 递归遍历目录
- 生成目录树/文件树
- 终端输出
- Markdown 保存
- 统计信息
技术选型: Python 3.8+ 标准库,零第三方依赖
"""
import argparse
import fnmatch
import os
import sys
from pathlib import Path
from datetime import datetime
# =============================================================================
# 模块 1: 默认忽略列表 & 配置
# =============================================================================
DEFAULT_IGNORE = {
".git", ".svn", ".hg",
"node_modules", "bower_components",
"__pycache__", ".pytest_cache",
".idea", ".vscode",
"dist", "build", "target",
".DS_Store", "Thumbs.db",
"venv", ".venv", "env",
}
# 通配符模式(用于 fnmatch 匹配)
DEFAULT_GLOB_IGNORE = {"*.pyc"}
# =============================================================================
# 模块 2: ArgParser
# =============================================================================
class ArgParser:
"""解析命令行参数 (F013)"""
@staticmethod
def parse_args(args=None):
parser = argparse.ArgumentParser(
prog="tree_gen.py",
description="目录树生成脚本 - 生成目录结构和文件列表",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
示例:
python tree_gen.py # 当前目录
python tree_gen.py /path/to/project # 指定目录
python tree_gen.py -d 2 src/ # 限制深度为 2
python tree_gen.py -f -o files.md . # 仅文件树,输出到 files.md
python tree_gen.py -D -i .gitignore . # 仅目录树,使用 .gitignore
""",
)
parser.add_argument(
"path",
nargs="?",
default=".",
help="目标目录路径(默认: 当前目录)",
)
parser.add_argument(
"-o", "--output",
default="tree_output.md",
help="Markdown 输出文件路径(默认: tree_output.md",
)
parser.add_argument(
"-d", "--depth",
type=int,
default=None,
help="最大递归深度(默认: 无限制)",
)
parser.add_argument(
"-f", "--files-only",
action="store_true",
help="仅显示文件树",
)
parser.add_argument(
"-D", "--dirs-only",
action="store_true",
help="仅显示目录树",
)
parser.add_argument(
"-i", "--ignore",
dest="ignore_file",
default=None,
help="忽略配置文件路径(默认: 目标目录下的 .treeignore",
)
return parser.parse_args(args)
# =============================================================================
# 模块 3: IgnoreLoader
# =============================================================================
class IgnoreLoader:
"""加载忽略配置 (F014)"""
@staticmethod
def load(ignore_file_path=None, target_dir=None):
"""
加载忽略配置。
优先级:
1. 命令行指定的 ignore 文件
2. 目标目录下的 .treeignore
3. 目标目录下的 .gitignore作为备选
4. 内置默认忽略列表
Returns:
tuple: (ignore_set, glob_ignore_set)
"""
ignore_set = set(DEFAULT_IGNORE)
glob_ignore_set = set(DEFAULT_GLOB_IGNORE)
# 确定配置文件路径
config_path = None
if ignore_file_path:
config_path = Path(ignore_file_path)
elif target_dir:
treeignore = Path(target_dir) / ".treeignore"
if treeignore.is_file():
config_path = treeignore
else:
gitignore = Path(target_dir) / ".gitignore"
if gitignore.is_file():
config_path = gitignore
# 解析配置文件
if config_path and config_path.is_file():
try:
with open(config_path, "r", encoding="utf-8", errors="replace") as f:
for line in f:
line = line.strip()
# 跳过空行和注释
if not line or line.startswith("#"):
continue
# 移除尾部的斜杠(目录标记)
clean = line.rstrip("/")
# 判断是否为通配符模式
if any(c in clean for c in "*?["):
glob_ignore_set.add(clean)
else:
ignore_set.add(clean)
except (IOError, OSError):
# 配置文件读取失败,使用默认配置
print(f"警告: 无法读取忽略配置文件 {config_path},使用默认配置", file=sys.stderr)
return ignore_set, glob_ignore_set
# =============================================================================
# 模块 4: DirectoryScanner
# =============================================================================
class DirectoryScanner:
"""递归遍历目录,生成树形结构 (F015)"""
def __init__(self, ignore_set, glob_ignore_set, max_depth=None):
self.ignore_set = ignore_set
self.glob_ignore_set = glob_ignore_set
self.max_depth = max_depth
self._seen_real_paths = set() # 用于检测符号链接循环
def should_ignore(self, name):
"""判断是否应该忽略该名称"""
# 精确匹配
if name in self.ignore_set:
return True
# 通配符匹配
for pattern in self.glob_ignore_set:
if fnmatch.fnmatch(name, pattern):
return True
return False
def scan(self, root_path):
"""
扫描目录,返回树形字典。
Args:
root_path: 根目录路径
Returns:
dict: 树形结构字典
Raises:
FileNotFoundError: 路径不存在
"""
root = Path(root_path).resolve()
if not root.exists():
raise FileNotFoundError(f"路径不存在: {root}")
if not root.is_dir():
raise NotADirectoryError(f"不是目录: {root}")
self._seen_real_paths = set()
return self._scan_node(root, depth=0, is_root=True)
def _scan_node(self, path, depth, is_root=False):
"""递归扫描单个节点"""
name = path.name if path.parent != path else str(path)
is_dir = path.is_dir()
node = {
"name": name,
"path": path,
"is_dir": is_dir,
"children": [],
"size": 0,
}
if is_dir:
# 检查深度限制
if self.max_depth is not None and depth >= self.max_depth:
return node
# 检测符号链接循环(根节点跳过)
if not is_root:
try:
real_path = str(path.resolve())
if real_path in self._seen_real_paths:
print(f"警告: 检测到符号链接循环,跳过: {path}", file=sys.stderr)
return node
self._seen_real_paths.add(real_path)
except (OSError, ValueError):
print(f"警告: 无法解析路径,跳过: {path}", file=sys.stderr)
return node
# 读取目录内容
try:
entries = sorted(path.iterdir(), key=lambda p: (not p.is_dir(), p.name.lower()))
except PermissionError:
print(f"警告: 权限不足,跳过目录: {path}", file=sys.stderr)
return node
except OSError as e:
print(f"警告: 读取目录失败 ({e}),跳过: {path}", file=sys.stderr)
return node
for entry in entries:
if self.should_ignore(entry.name):
continue
# 对于符号链接,检查目标是否有效
if entry.is_symlink():
try:
entry.resolve() # 验证目标存在
except (OSError, ValueError):
continue
child = self._scan_node(entry, depth + 1)
if child:
node["children"].append(child)
else:
# 文件大小
try:
node["size"] = path.stat().st_size
except (OSError, PermissionError):
node["size"] = 0
return node
# =============================================================================
# 模块 5: TreeFormatter
# =============================================================================
class TreeFormatter:
"""生成树形文本输出 (F016, F017)"""
# 树形字符
BRANCH = "├── "
LAST_BRANCH = "└── "
PIPE = ""
SPACE = " "
@staticmethod
def format_tree(tree_node, dirs_only=False, files_only=False, is_root=True):
"""
格式化树形结构为文本。
Args:
tree_node: 树形字典
dirs_only: 仅显示目录
files_only: 仅显示文件
is_root: 是否为根节点
Returns:
list: 文本行列表
"""
lines = []
if is_root:
# 根节点特殊处理
name = tree_node["name"]
if tree_node["is_dir"]:
lines.append(f"{name}/")
else:
lines.append(name)
children = tree_node.get("children", [])
if dirs_only:
children = [c for c in children if c["is_dir"]]
elif files_only:
children = [c for c in children if not c["is_dir"]]
for i, child in enumerate(children):
is_last = (i == len(children) - 1)
prefix = ""
sub_lines = TreeFormatter._format_children(child, prefix, is_last, dirs_only, files_only)
lines.extend(sub_lines)
else:
# 非根节点由 _format_children 处理
pass
return lines
@staticmethod
def _format_children(node, prefix, is_last, dirs_only, files_only):
"""递归格式化子节点"""
lines = []
# 当前节点的连接符
connector = TreeFormatter.LAST_BRANCH if is_last else TreeFormatter.BRANCH
name = node["name"]
if node["is_dir"]:
lines.append(f"{prefix}{connector}{name}/")
else:
lines.append(f"{prefix}{connector}{name}")
# 计算子节点的前缀
child_prefix = prefix + (TreeFormatter.SPACE if is_last else TreeFormatter.PIPE)
# 获取子节点
children = node.get("children", [])
if dirs_only:
children = [c for c in children if c["is_dir"]]
elif files_only:
children = [c for c in children if not c["is_dir"]]
for i, child in enumerate(children):
child_is_last = (i == len(children) - 1)
sub_lines = TreeFormatter._format_children(child, child_prefix, child_is_last, dirs_only, files_only)
lines.extend(sub_lines)
return lines
@staticmethod
def format_file_list(tree_node, dirs_only=False, files_only=False):
"""
生成文件列表(带完整路径)(F017)
Args:
tree_node: 树形字典
dirs_only: 仅显示目录
files_only: 仅显示文件
Returns:
list: (路径, 大小) 元组列表
"""
items = []
TreeFormatter._collect_files(tree_node, items, dirs_only, files_only)
return items
@staticmethod
def _collect_files(node, items, dirs_only, files_only):
"""递归收集文件和目录"""
path = str(node["path"])
if node["is_dir"]:
if not files_only:
items.append((path, 0))
for child in node.get("children", []):
TreeFormatter._collect_files(child, items, dirs_only, files_only)
else:
if not dirs_only:
items.append((path, node.get("size", 0)))
# =============================================================================
# 模块 6: TerminalOutput
# =============================================================================
class TerminalOutput:
"""终端输出 (F018)"""
@staticmethod
def setup_encoding():
"""设置终端 UTF-8 编码"""
try:
if hasattr(sys.stdout, "reconfigure"):
sys.stdout.reconfigure(encoding="utf-8")
except (AttributeError, ValueError):
pass
@staticmethod
def display(tree_lines, statistics=None):
"""
在终端显示树形结构和统计信息。
Args:
tree_lines: 树形文本行列表
statistics: 统计信息字典(可选)
"""
TerminalOutput.setup_encoding()
print()
for line in tree_lines:
print(line)
print()
if statistics:
print("=" * 50)
print(f" 目录数: {statistics['dir_count']}")
print(f" 文件数: {statistics['file_count']}")
print(f" 总大小: {statistics['total_size_str']}")
print("=" * 50)
# =============================================================================
# 模块 7: MarkdownWriter
# =============================================================================
class MarkdownWriter:
"""Markdown 文件保存 (F019)"""
@staticmethod
def write(output_path, tree_lines, file_list, statistics, root_path):
"""
写入 Markdown 文件。
Args:
output_path: 输出文件路径
tree_lines: 树形文本行列表
file_list: 文件列表
statistics: 统计信息
root_path: 根目录路径
Returns:
bool: 是否成功写入
"""
try:
with open(output_path, "w", encoding="utf-8-sig") as f:
# 标题
f.write(f"# 目录树 - {Path(root_path).name}\n\n")
f.write(f"> 生成时间: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n")
# 目录树
f.write("## 目录结构\n\n")
f.write("```\n")
for line in tree_lines:
f.write(line + "\n")
f.write("```\n\n")
# 文件列表
if file_list:
f.write("## 文件列表\n\n")
f.write("| 序号 | 文件路径 | 大小 |\n")
f.write("|------|----------|------|\n")
for idx, (path, size) in enumerate(file_list, 1):
size_str = MarkdownWriter._format_size(size) if size > 0 else "-"
# 转义 Markdown 特殊字符
safe_path = path.replace("|", "\\|")
f.write(f"| {idx} | `{safe_path}` | {size_str} |\n")
f.write("\n")
# 统计信息
if statistics:
f.write("## 统计信息\n\n")
f.write(f"- **目录数**: {statistics['dir_count']}\n")
f.write(f"- **文件数**: {statistics['file_count']}\n")
f.write(f"- **总大小**: {statistics['total_size_str']}\n")
return True
except (IOError, OSError) as e:
print(f"警告: 无法写入 Markdown 文件 {output_path} ({e}),回退到仅终端输出", file=sys.stderr)
return False
@staticmethod
def _format_size(size_bytes):
"""格式化文件大小"""
if size_bytes < 1024:
return f"{size_bytes} B"
elif size_bytes < 1024 * 1024:
return f"{size_bytes / 1024:.1f} KB"
elif size_bytes < 1024 * 1024 * 1024:
return f"{size_bytes / (1024 * 1024):.1f} MB"
else:
return f"{size_bytes / (1024 * 1024 * 1024):.1f} GB"
# =============================================================================
# 模块 8: StatisticsCollector
# =============================================================================
class StatisticsCollector:
"""统计信息收集 (F020)"""
@staticmethod
def collect(tree_node, dirs_only=False, files_only=False):
"""
收集统计信息。
Args:
tree_node: 树形字典
dirs_only: 仅统计目录
files_only: 仅统计文件
Returns:
dict: 统计信息字典
"""
stats = {
"dir_count": 0,
"file_count": 0,
"total_size": 0,
"total_size_str": "0 B",
}
StatisticsCollector._count(tree_node, stats, dirs_only, files_only)
# 格式化总大小
stats["total_size_str"] = MarkdownWriter._format_size(stats["total_size"])
return stats
@staticmethod
def _count(node, stats, dirs_only=False, files_only=False):
"""递归计数"""
if node["is_dir"]:
if not files_only:
stats["dir_count"] += 1
for child in node.get("children", []):
StatisticsCollector._count(child, stats, dirs_only, files_only)
else:
if not dirs_only:
stats["file_count"] += 1
stats["total_size"] += node.get("size", 0)
# =============================================================================
# 主程序
# =============================================================================
def main():
"""主入口函数"""
# 解析命令行参数 (F013)
args = ArgParser.parse_args()
# 确定目标路径
target_path = Path(args.path).resolve()
# 检查路径是否存在
if not target_path.exists():
print(f"错误: 路径不存在: {target_path}", file=sys.stderr)
sys.exit(1)
if not target_path.is_dir():
print(f"错误: 不是目录: {target_path}", file=sys.stderr)
sys.exit(1)
# 加载忽略配置 (F014)
ignore_set, glob_ignore_set = IgnoreLoader.load(
ignore_file_path=args.ignore_file,
target_dir=target_path,
)
# 扫描目录 (F015)
scanner = DirectoryScanner(
ignore_set=ignore_set,
glob_ignore_set=glob_ignore_set,
max_depth=args.depth,
)
try:
tree = scanner.scan(target_path)
except (FileNotFoundError, NotADirectoryError) as e:
print(f"错误: {e}", file=sys.stderr)
sys.exit(1)
# 生成树形文本 (F016, F017)
tree_lines = TreeFormatter.format_tree(
tree,
dirs_only=args.dirs_only,
files_only=args.files_only,
)
# 收集文件列表
file_list = TreeFormatter.format_file_list(
tree,
dirs_only=args.dirs_only,
files_only=args.files_only,
)
# 收集统计信息 (F020)
statistics = StatisticsCollector.collect(
tree,
dirs_only=args.dirs_only,
files_only=args.files_only,
)
# 终端输出 (F018)
TerminalOutput.display(tree_lines, statistics)
# Markdown 保存 (F019)
if not args.dirs_only and not args.files_only:
# 默认模式:保存完整树
MarkdownWriter.write(
output_path=args.output,
tree_lines=tree_lines,
file_list=file_list,
statistics=statistics,
root_path=target_path,
)
print(f"Markdown 已保存到: {Path(args.output).resolve()}")
elif args.files_only:
# 文件树模式
MarkdownWriter.write(
output_path=args.output,
tree_lines=tree_lines,
file_list=file_list,
statistics=statistics,
root_path=target_path,
)
print(f"文件树 Markdown 已保存到: {Path(args.output).resolve()}")
else:
# 目录树模式
MarkdownWriter.write(
output_path=args.output,
tree_lines=tree_lines,
file_list=file_list,
statistics=statistics,
root_path=target_path,
)
print(f"目录树 Markdown 已保存到: {Path(args.output).resolve()}")
if __name__ == "__main__":
main()