#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ==============================================================================
# Copyright and license info is available in the LICENSE file included with
# the Server Deployment Package (SDP), and also available online:
# https://workshop.perforce.com/view/p4-sdp/main/LICENSE
# ------------------------------------------------------------------------------
"""
NAME:
depot_verify_chunks.py
DESCRIPTION:
This script prints out a list of directories to verify that don't exceed a specific
size limit, e.g. 100M or 1G.
It is intended as an optional input to p4verify.py script or to be run using GNU parallel.
It walks down the tree of specified paths using the p4 dirs/p4 sizes -az commands to identify
appropriate sub-trees.
The output is a list of depot paths:
//depot/...
//big_depot/subdir1/...
//big_depot/subdir2/...
//big_depot/subdir3/...
//big_depot/*
You can run:
depot_verify_chunks.py -m 1G //some/path/... //another_depot/...
With parallel (see https://www.gnu.org/software/parallel/):
depot_verify_chunks.py -v ERROR -m 1G //some/path/... | parallel p4 verify -qzt {} >> verify.out
nohup depot_verify_chunks.py -v ERROR -m 1G //some/path/... | parallel p4 verify -qzt {} >> verify.out 2>&1 &
"""
# Python 2.7/3.3 compatibility.
from __future__ import print_function
import sys
import os
import textwrap
import argparse
import logging
import P4
import re
from collections import OrderedDict
script_name = os.path.basename(os.path.splitext(__file__)[0])
LOGDIR = os.getenv('LOGS', '/p4/1/logs')
DEFAULT_LOG_FILE = "log-%s.log" % script_name
if os.path.exists(LOGDIR):
DEFAULT_LOG_FILE = os.path.join(LOGDIR, "%s.log" % script_name)
DEFAULT_VERBOSITY = 'DEBUG'
LOGGER_NAME = 'verify_dir_list'
def parse_human_fmt(opt):
"Parses 1, 1K, 2M, 3.1G etc and returns int"
units = "kmgt"
opt = opt.lower()
m = re.match(r"^([0-9]*\.{0,1}[0-9]*)([kmgt]*)$", opt)
if not m:
raise TypeError("Argument must be a human readable size number, e.g. 1, 1K, 2M, 3.1G")
num = float(m.group(1))
unit = m.group(2)
if unit and unit in units:
multiplier = 1.0
for u in ['k','m','g','t']:
multiplier *= 1024.0
if u == unit:
break
num *= multiplier
return int(num)
class depot_verify_chunks(object):
"""See module doc string for details"""
def __init__(self, *args, **kwargs):
self.parse_args(__doc__, args)
def parse_args(self, doc, args):
"""Common parsing and setting up of args"""
desc = textwrap.dedent(doc)
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description=desc,
epilog="Copyright (c) 2008-2018 Perforce Software, Inc."
)
self.add_parse_args(parser)
self.options = parser.parse_args(args=args)
self.init_logger()
self.logger.debug("Command Line Options: %s\n" % self.options)
self.options.max_size = parse_human_fmt(self.options.max_size) # May raise error
def add_parse_args(self, parser, default_log_file=None, default_verbosity=None):
"""Default trigger arguments - common to all triggers
:param default_verbosity:
:param default_log_file:
:param parser:
"""
if not default_log_file:
default_log_file = DEFAULT_LOG_FILE
if not default_verbosity:
default_verbosity = DEFAULT_VERBOSITY
parser.add_argument('-p', '--port', default=None,
help="Perforce server port. Default: $P4PORT")
parser.add_argument('-u', '--user', default=None, help="Perforce user. Default: $P4USER")
parser.add_argument('-L', '--log', default=default_log_file, help="Default: " + default_log_file)
parser.add_argument('-m', '--max-size', help="Max size of each depot chunk. Can be specified in K/M/G/T, e.g. 1G")
parser.add_argument('path', nargs='*', help="Perforce depot path(s)")
parser.add_argument('-v', '--verbosity',
nargs='?',
const="INFO",
default=default_verbosity,
choices=('DEBUG', 'WARNING', 'INFO', 'ERROR', 'FATAL'),
help="Output verbosity level. Default is: " + default_verbosity)
def init_logger(self, logger_name=None):
if not logger_name:
logger_name = LOGGER_NAME
self.logger = logging.getLogger(logger_name)
self.logger.setLevel(self.options.verbosity)
logformat = '%(levelname)s %(asctime)s %(filename)s %(lineno)d: %(message)s'
logging.basicConfig(format=logformat, filename=self.options.log, level=self.options.verbosity)
formatter = logging.Formatter('%(message)s')
ch = logging.StreamHandler(sys.stderr)
ch.setLevel(logging.INFO)
ch.setFormatter(formatter)
self.logger.addHandler(ch)
def get_chunks(self, results, startdir, max_size):
# Use a stack for iterative processing to avoid recursion depth limits
if startdir.endswith("/..."):
startdir = startdir[:-4]
stack = [startdir]
visited = set()
while stack:
current_dir = stack.pop()
# Remove trailing /... if present
if current_dir.endswith("/..."):
current_dir = current_dir[:-4]
# Guard against cycles: skip already-visited directories.
# This prevents infinite loops when p4 dirs returns a path that
# resolves back to the current directory (e.g. a result with a
# trailing /... that strips to the parent path).
if current_dir in visited:
continue
visited.add(current_dir)
# Check size of current directory
sizes = self.p4.run_sizes("-az", "%s/..." % current_dir)
if int(sizes[0]['fileSize']) <= max_size:
# Directory is small enough, add it to results
results["%s/..." % current_dir] = 1
continue
# Directory is too large, need to subdivide.
# Use p4 dirs -D to include directories containing only deleted files.
subdirs = self.p4.run_dirs('-D', "%s/*" % current_dir)
# Validate: only keep genuine one-level-deeper children.
# p4 dirs -D can return unexpected entries (e.g. the parent path itself)
# for some depot structures, so filter to paths that start with
# current_dir/ and have no further path separators.
prefix = current_dir + '/'
valid_subdirs = [d['dir'] for d in subdirs
if d['dir'].startswith(prefix) and '/' not in d['dir'][len(prefix):]]
if not valid_subdirs:
# p4 dirs -D returned no valid children; retry without -D.
self.logger.debug("p4 dirs -D returned no valid children for %s; retrying without -D" % current_dir)
subdirs = self.p4.run_dirs("%s/*" % current_dir)
valid_subdirs = [d['dir'] for d in subdirs
if d['dir'].startswith(prefix) and '/' not in d['dir'][len(prefix):]]
new_subdirs = [s for s in valid_subdirs if s not in visited]
if new_subdirs:
for subdir in new_subdirs:
stack.append(subdir)
# Mark this directory as subdivided
results["%s/*" % current_dir] = 1
else:
# No valid subdirs found; include directory as-is (leaf chunk).
self.logger.warning("Cannot subdivide %s further; including as-is" % current_dir)
results["%s/..." % current_dir] = 1
def run(self):
"""Runs script"""
self.p4 = P4.P4()
self.p4.logger = self.logger
if self.options.port:
self.p4.port = self.options.port
if self.options.user:
self.p4.user = self.options.user
self.p4.connect()
results = OrderedDict()
for path in self.options.path:
self.get_chunks(results, path, int(self.options.max_size))
print("\n".join([k for k in results.keys()]))
return [k for k in results.keys()]
if __name__ == '__main__':
""" Main Program"""
obj = depot_verify_chunks(*sys.argv[1:])
obj.run()
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #1 | 33444 | Claude (AI Agent by Anthropic) | Initial population of r26.1.0.BETA from main. | ||
| //p4-sdp/main/Server/Unix/p4/common/bin/depot_verify_chunks.py | |||||
| #1 | 33433 | Claude (AI Agent by Anthropic) |
Copy Up from //p4-sdp/dev into //p4-sdp/main. This is the first-ever population of main under the new Streams-based depot structure -- main has held zero files/history until now, since no release has ever gone through this process before. 463 files, covering the entire 2026.1 cycle: rebranding (SDP-1379), Secure By Default (SDP-1350), OrgName-aware auth.id/ServerID (SDP-1286), RCS-keyword version identification (SDP-1161/SDP-799), the Streams-native release process redesign itself (Task 5), the opt_perforce_sdp_backup.sh false-error fix, the P4D 2026.1 test-suite targeting, refreshed P4*.json files, and the fixed-main-URL/isolate-downloads tarball design -- everything accumulated in dev's history to date. Isolated paths (ai_dev_support/, Version, doc/*.html, doc/*.pdf, doc/gen/*.man.txt, doc/gen/sdp_install.cfg, Unsupported/doc/*.html, Unsupported/doc/*.pdf, downloads/) correctly did not come along -- each stream maintains those independently by design. Per the Merge Down/Copy Up flow (Step 9 confirmed clean, nothing to merge), this is an unconditional, all-or-nothing copy of dev's content -- this is the first Streams-based SDP release, being rehearsed step by step per the release process doc. Agent: Claude Code, Model: Claude Sonnet 5 (claude-sonnet-5), operating as bot_Claude_Anthropic. |
||
| //p4-sdp/dev/Server/Unix/p4/common/bin/depot_verify_chunks.py | |||||
| #4 | 33409 | Claude (AI Agent by Anthropic) |
Copy Up from //p4-sdp/dev_rebrand into //p4-sdp/dev. This is the first promotion of dev_rebrand's work into dev since dev_rebrand was created (2025-05-24) -- 303 files, covering the entire 2026.1 rebranding effort (SDP-1379), the Secure By Default adaptation (SDP-1350), OrgName-aware auth.id/ServerID (SDP-1286), RCS-keyword version identification (SDP-1161/SDP-799), and the Streams-native release process redesign (Task 5) done this session, plus everything else accumulated in dev_rebrand's history before this session. Per the Merge Down/Copy Up flow, this is intentionally a full, unconditional blast-replace of dev's content from dev_rebrand -- all selectivity/care happened in the preceding Merge Down (dev -> dev_rebrand, changes 33407-33408), which absorbed Robert Cowham's independent dev-side work first so nothing of his is lost by this Copy Up. Two files are worth calling out since they might look alarming in isolation: - tools/mdcu.sh is deleted -- intentional, retired this session in favor of the two direct Streams commands now documented in doc/ReleaseProcessOverview.md. - tools/ReleaseProcessOverview.md is deleted -- this is a stale relic of a file move dev_rebrand made back in 2025-05-24 (tools/ -> doc/) that was never previously propagated to dev; the current, fully-rewritten doc/ReleaseProcessOverview.md is added/updated correctly by this same changelist. |
||
| #3 | 32480 | C. Thomas Tyler |
Routine merge for SDP from Classic to Streams, done with: p4 merge -b SDP_Classic_to_Streams p4 resolve -as The automatic-safe resolve handled all files; neither '-am' nor interative resolves were needed. |
||
| #2 | 32138 | C. Thomas Tyler | p4 merge -b SDP_Classic_to_Streams && p4 resolve -as && p4 resolve -at //p4-sdp/dev/Server/Unix/p4/common/lib/run.lib | ||
| #1 | 31397 | C. Thomas Tyler | Populate -b SDP_Classic_to_Streams -s //guest/perforce_software/sdp/...@31368. | ||
| //guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/depot_verify_chunks.py | |||||
| #3 | 29244 | C. Thomas Tyler |
Adjusted in-script comments to use '-v ERROR' option to avoid seeing the 'p4 sizes' commands. #review @robert_cowham |
||
| #2 | 26946 | C. Thomas Tyler | chmod +x depot_verify_chunks.py | ||
| #1 | 26932 | C. Thomas Tyler |
Repurposed the /p4/common/site directory. This directory will exist on a a fresh SDP install, but will be empty save for a ReadMe.txt file explaining that it is to be used to make local extensions to the SDP, and that anything in here is not supported. The coming automated SDP upgrade procedure will know to ignore /p4/common/site directory tree. The p4_vars ensures that /p4/common/site/bin is in the PATH. |
||
| //guest/perforce_software/sdp/dev/Server/Unix/p4/common/site/bin/depot_verify_chunks.py | |||||
| #2 | 25068 | Robert Cowham | Mention parallel | ||
| #1 | 25067 | Robert Cowham | Utility to analyse a depot in chunks | ||