/usr/share/pyshared/ZODB/scripts/fsoids.py is in python-zodb 1:3.9.7-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python
##############################################################################
#
# Copyright (c) 2004 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"""FileStorage oid-tracer.
usage: fsoids.py [-f oid_file] Data.fs [oid]...
Display information about all occurrences of specified oids in a FileStorage.
This is meant for heavy debugging.
This includes all revisions of the oids, all objects referenced by the
oids, and all revisions of all objects referring to the oids.
If specified, oid_file is an input text file, containing one oid per
line. oids are specified as integers, in any of Python's integer
notations (typically like 0x341a). One or more oids can also be specified
on the command line.
The output is grouped by oid, from smallest to largest, and sub-grouped
by transaction, from oldest to newest.
This will not alter the FileStorage, but running against a live FileStorage
is not recommended (spurious error messages may result).
See testfsoids.py for a tutorial doctest.
"""
import sys
from ZODB.FileStorage.fsoids import Tracer
def usage():
print __doc__
def main():
import getopt
try:
opts, args = getopt.getopt(sys.argv[1:], 'f:')
if not args:
usage()
raise ValueError("Must specify a FileStorage")
path = None
for k, v in opts:
if k == '-f':
path = v
except (getopt.error, ValueError):
usage()
raise
c = Tracer(args[0])
for oid in args[1:]:
as_int = int(oid, 0) # 0 == auto-detect base
c.register_oids(as_int)
if path is not None:
for line in open(path):
as_int = int(line, 0)
c.register_oids(as_int)
if not c.oids:
raise ValueError("no oids specified")
c.run()
c.report()
if __name__ == "__main__":
main()
|