1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
# Copyright (C) 2008 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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 General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Import processor that dump stats about the input (and doesn't import)."""
from __future__ import absolute_import
from .. import (
commands,
processor,
reftracker,
)
from ..helpers import (
invert_dict,
invert_dictset,
)
import stat
class InfoProcessor(processor.ImportProcessor):
"""An import processor that dumps statistics about the input.
No changes to the current repository are made.
As well as providing useful information about an import
stream before importing it, this processor is useful for
benchmarking the speed at which data can be extracted from
the source.
"""
def __init__(self, params=None, verbose=0, outf=None):
processor.ImportProcessor.__init__(
self, params, verbose, outf=outf)
def pre_process(self):
# Init statistics
self.cmd_counts = {}
for cmd in commands.COMMAND_NAMES:
self.cmd_counts[cmd] = 0
self.file_cmd_counts = {}
for fc in commands.FILE_COMMAND_NAMES:
self.file_cmd_counts[fc] = 0
self.parent_counts = {}
self.max_parent_count = 0
self.committers = set()
self.separate_authors_found = False
self.symlinks_found = False
self.executables_found = False
self.sha_blob_references = False
self.lightweight_tags = 0
# Blob usage tracking
self.blobs = {}
for usage in ['new', 'used', 'unknown', 'unmarked']:
self.blobs[usage] = set()
self.blob_ref_counts = {}
# Head tracking
self.reftracker = reftracker.RefTracker()
# Stuff to cache: a map from mark to # of times that mark is merged
self.merges = {}
# Stuff to cache: these are maps from mark to sets
self.rename_old_paths = {}
self.copy_source_paths = {}
def post_process(self):
# Dump statistics
cmd_names = commands.COMMAND_NAMES
fc_names = commands.FILE_COMMAND_NAMES
self._dump_stats_group(
"Command counts",
[(c.decode('utf-8'), self.cmd_counts[c]) for c in cmd_names], str)
self._dump_stats_group(
"File command counts",
[(c.decode('utf-8'), self.file_cmd_counts[c]) for c in fc_names],
str)
# Commit stats
if self.cmd_counts[b'commit']:
p_items = []
for i in range(self.max_parent_count + 1):
if i in self.parent_counts:
count = self.parent_counts[i]
p_items.append(("parents-%d" % i, count))
merges_count = len(self.merges)
p_items.append(('total revisions merged', merges_count))
flags = {
'separate authors found': self.separate_authors_found,
'executables': self.executables_found,
'symlinks': self.symlinks_found,
'blobs referenced by SHA': self.sha_blob_references,
}
self._dump_stats_group("Parent counts", p_items, str)
self._dump_stats_group(
"Commit analysis", sorted(flags.items()), _found)
heads = invert_dictset(self.reftracker.heads)
self._dump_stats_group(
"Head analysis",
[(k.decode('utf-8'),
', '.join([m.decode('utf-8') for m in v]))
for (k, v) in heads.items()], None,
_iterable_as_config_list)
# note("\t%d\t%s" % (len(self.committers), 'unique committers'))
self._dump_stats_group("Merges", self.merges.items(), None)
# We only show the rename old path and copy source paths when -vv
# (verbose=2) is specified. The output here for mysql's data can't
# be parsed currently so this bit of code needs more work anyhow ..
if self.verbose >= 2:
self._dump_stats_group(
"Rename old paths",
self.rename_old_paths.items(), len,
_iterable_as_config_list)
self._dump_stats_group(
"Copy source paths",
self.copy_source_paths.items(), len,
_iterable_as_config_list)
# Blob stats
if self.cmd_counts[b'blob']:
# In verbose mode, don't list every blob used
if self.verbose:
del self.blobs['used']
self._dump_stats_group(
"Blob usage tracking",
[(k, set([v1.decode() for v1 in v]))
for (k, v) in self.blobs.items()],
len, _iterable_as_config_list)
if self.blob_ref_counts:
blobs_by_count = invert_dict(self.blob_ref_counts)
blob_items = sorted(blobs_by_count.items())
self._dump_stats_group(
"Blob reference counts",
blob_items, len, _iterable_as_config_list)
# Other stats
if self.cmd_counts[b'reset']:
reset_stats = {
'lightweight tags': self.lightweight_tags,
}
self._dump_stats_group("Reset analysis", reset_stats.items())
def _dump_stats_group(self, title, items, normal_formatter=None,
verbose_formatter=None):
"""Dump a statistics group.
In verbose mode, do so as a config file so
that other processors can load the information if they want to.
:param normal_formatter: the callable to apply to the value
before displaying it in normal mode
:param verbose_formatter: the callable to apply to the value
before displaying it in verbose mode
"""
if self.verbose:
self.outf.write("[%s]\n" % (title,))
for name, value in items:
if verbose_formatter is not None:
value = verbose_formatter(value)
if type(name) == str:
name = name.replace(' ', '-')
self.outf.write("%s = %s\n" % (name, value))
self.outf.write("\n")
else:
self.outf.write("%s:\n" % (title,))
for name, value in items:
if normal_formatter is not None:
value = normal_formatter(value)
self.outf.write("\t%s\t%s\n" % (value, name))
def progress_handler(self, cmd):
"""Process a ProgressCommand."""
self.cmd_counts[cmd.name] += 1
def blob_handler(self, cmd):
"""Process a BlobCommand."""
self.cmd_counts[cmd.name] += 1
if cmd.mark is None:
self.blobs['unmarked'].add(cmd.id)
else:
self.blobs['new'].add(cmd.id)
# Marks can be re-used so remove it from used if already there.
# Note: we definitely do NOT want to remove it from multi if
# it's already in that set.
try:
self.blobs['used'].remove(cmd.id)
except KeyError:
pass
def checkpoint_handler(self, cmd):
"""Process a CheckpointCommand."""
self.cmd_counts[cmd.name] += 1
def commit_handler(self, cmd):
"""Process a CommitCommand."""
self.cmd_counts[cmd.name] += 1
self.committers.add(cmd.committer)
if cmd.author is not None:
self.separate_authors_found = True
for fc in cmd.iter_files():
self.file_cmd_counts[fc.name] += 1
if isinstance(fc, commands.FileModifyCommand):
if fc.mode & 0o111:
self.executables_found = True
if stat.S_ISLNK(fc.mode):
self.symlinks_found = True
if fc.dataref is not None:
if fc.dataref[0] == ':':
self._track_blob(fc.dataref)
else:
self.sha_blob_references = True
elif isinstance(fc, commands.FileRenameCommand):
self.rename_old_paths.setdefault(cmd.id, set()).add(
fc.old_path)
elif isinstance(fc, commands.FileCopyCommand):
self.copy_source_paths.setdefault(cmd.id, set()).add(
fc.src_path)
# Track the heads
parents = self.reftracker.track_heads(cmd)
# Track the parent counts
parent_count = len(parents)
try:
self.parent_counts[parent_count] += 1
except KeyError:
self.parent_counts[parent_count] = 1
if parent_count > self.max_parent_count:
self.max_parent_count = parent_count
# Remember the merges
if cmd.merges:
for merge in cmd.merges:
if merge in self.merges:
self.merges[merge] += 1
else:
self.merges[merge] = 1
def reset_handler(self, cmd):
"""Process a ResetCommand."""
self.cmd_counts[cmd.name] += 1
if cmd.ref.startswith(b'refs/tags/'):
self.lightweight_tags += 1
else:
if cmd.from_ is not None:
self.reftracker.track_heads_for_ref(
cmd.ref, cmd.from_)
def tag_handler(self, cmd):
"""Process a TagCommand."""
self.cmd_counts[cmd.name] += 1
def feature_handler(self, cmd):
"""Process a FeatureCommand."""
self.cmd_counts[cmd.name] += 1
feature = cmd.feature_name
if feature not in commands.FEATURE_NAMES:
self.warning(
"feature %s is not supported - parsing may fail"
% (feature,))
def _track_blob(self, mark):
if mark in self.blob_ref_counts:
self.blob_ref_counts[mark] += 1
pass
elif mark in self.blobs['used']:
self.blob_ref_counts[mark] = 2
self.blobs['used'].remove(mark)
elif mark in self.blobs['new']:
self.blobs['used'].add(mark)
self.blobs['new'].remove(mark)
else:
self.blobs['unknown'].add(mark)
def _found(b):
"""Format a found boolean as a string."""
return ['no', 'found'][b]
def _iterable_as_config_list(s):
"""Format an iterable as a sequence of comma-separated strings.
To match what ConfigObj expects, a single item list has a trailing comma.
"""
items = sorted(s)
if len(items) == 1:
return "%s," % (items[0],)
else:
return ", ".join(items)
|