pep8 code readability changes

Update the code to follow the pep8 style guide.

References:
  http://www.python.org/dev/peps/pep-0008/

Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #1838
This commit is contained in:
Matthew Thode 2013-11-08 15:52:06 -06:00 committed by Brian Behlendorf
parent 7a4f54688e
commit 23bc1f91fc
2 changed files with 126 additions and 85 deletions

View File

@ -326,9 +326,8 @@ def init():
usage() usage()
if len(incompat) > 0: if len(incompat) > 0:
sys.stderr.write("Incompatible field specified! -- %s\n" % ( sys.stderr.write("Incompatible field specified! -- %s\n" %
incompat, incompat)
))
usage() usage()
if opfile: if opfile:

View File

@ -34,10 +34,10 @@ import errno
bhdr = ["pool", "objset", "object", "level", "blkid", "offset", "dbsize"] bhdr = ["pool", "objset", "object", "level", "blkid", "offset", "dbsize"]
bxhdr = ["pool", "objset", "object", "level", "blkid", "offset", "dbsize", bxhdr = ["pool", "objset", "object", "level", "blkid", "offset", "dbsize",
"meta", "state", "dbholds", "list", "atype", "index", "flags", "count", "meta", "state", "dbholds", "list", "atype", "index", "flags",
"asize", "access", "mru", "gmru", "mfu", "gmfu", "l2", "l2_dattr", "count", "asize", "access", "mru", "gmru", "mfu", "gmfu", "l2",
"l2_asize", "l2_comp", "aholds", "dtype", "btype", "data_bs", "meta_bs", "l2_dattr", "l2_asize", "l2_comp", "aholds", "dtype", "btype",
"bsize", "lvls", "dholds", "blocks", "dsize"] "data_bs", "meta_bs", "bsize", "lvls", "dholds", "blocks", "dsize"]
bincompat = ["cached", "direct", "indirect", "bonus", "spill"] bincompat = ["cached", "direct", "indirect", "bonus", "spill"]
dhdr = ["pool", "objset", "object", "dtype", "cached"] dhdr = ["pool", "objset", "object", "dtype", "cached"]
@ -45,17 +45,18 @@ dxhdr = ["pool", "objset", "object", "dtype", "btype", "data_bs", "meta_bs",
"bsize", "lvls", "dholds", "blocks", "dsize", "cached", "direct", "bsize", "lvls", "dholds", "blocks", "dsize", "cached", "direct",
"indirect", "bonus", "spill"] "indirect", "bonus", "spill"]
dincompat = ["level", "blkid", "offset", "dbsize", "meta", "state", "dbholds", dincompat = ["level", "blkid", "offset", "dbsize", "meta", "state", "dbholds",
"list", "atype", "index", "flags", "count", "asize", "access", "mru", "list", "atype", "index", "flags", "count", "asize", "access",
"gmru", "mfu", "gmfu", "l2", "l2_dattr", "l2_asize", "l2_comp", "aholds"] "mru", "gmru", "mfu", "gmfu", "l2", "l2_dattr", "l2_asize",
"l2_comp", "aholds"]
thdr = ["pool", "objset", "dtype", "cached"] thdr = ["pool", "objset", "dtype", "cached"]
txhdr = ["pool", "objset", "dtype", "cached", "direct", "indirect", txhdr = ["pool", "objset", "dtype", "cached", "direct", "indirect",
"bonus", "spill"] "bonus", "spill"]
tincompat = ["object", "level", "blkid", "offset", "dbsize", "meta", "state", tincompat = ["object", "level", "blkid", "offset", "dbsize", "meta", "state",
"dbholds", "list", "atype", "index", "flags", "count", "asize", "access", "dbholds", "list", "atype", "index", "flags", "count", "asize",
"mru", "gmru", "mfu", "gmfu", "l2", "l2_dattr", "l2_asize", "l2_comp", "access", "mru", "gmru", "mfu", "gmfu", "l2", "l2_dattr",
"aholds", "btype", "data_bs", "meta_bs", "bsize", "lvls", "dholds", "l2_asize", "l2_comp", "aholds", "btype", "data_bs", "meta_bs",
"blocks", "dsize"] "bsize", "lvls", "dholds", "blocks", "dsize"]
cols = { cols = {
# hdr: [size, scale, description] # hdr: [size, scale, description]
@ -108,6 +109,7 @@ cmd = ("Usage: dbufstat.py [-bdhrtvx] [-i file] [-f fields] [-o file] "
"[-s string]\n") "[-s string]\n")
raw = 0 raw = 0
def print_incompat_helper(incompat): def print_incompat_helper(incompat):
cnt = 0 cnt = 0
for key in sorted(incompat): for key in sorted(incompat):
@ -124,6 +126,7 @@ def print_incompat_helper(incompat):
sys.stderr.write("\n\n") sys.stderr.write("\n\n")
def detailed_usage(): def detailed_usage():
sys.stderr.write("%s\n" % cmd) sys.stderr.write("%s\n" % cmd)
@ -143,13 +146,15 @@ def detailed_usage():
sys.exit(1) sys.exit(1)
def usage(): def usage():
sys.stderr.write("%s\n" % cmd) sys.stderr.write("%s\n" % cmd)
sys.stderr.write("\t -b : Print table of information for each dbuf\n") sys.stderr.write("\t -b : Print table of information for each dbuf\n")
sys.stderr.write("\t -d : Print table of information for each dnode\n") sys.stderr.write("\t -d : Print table of information for each dnode\n")
sys.stderr.write("\t -h : Print this help message\n") sys.stderr.write("\t -h : Print this help message\n")
sys.stderr.write("\t -r : Print raw values\n") sys.stderr.write("\t -r : Print raw values\n")
sys.stderr.write("\t -t : Print table of information for each dnode type\n") sys.stderr.write("\t -t : Print table of information for each dnode type"
"\n")
sys.stderr.write("\t -v : List all possible field headers and definitions" sys.stderr.write("\t -v : List all possible field headers and definitions"
"\n") "\n")
sys.stderr.write("\t -x : Print extended stats\n") sys.stderr.write("\t -x : Print extended stats\n")
@ -167,6 +172,7 @@ def usage():
sys.exit(1) sys.exit(1)
def prettynum(sz, scale, num=0): def prettynum(sz, scale, num=0):
global raw global raw
@ -194,6 +200,7 @@ def prettynum(sz, scale, num=0):
else: else:
return "%*d%s" % (sz - 1, num, suffix[index]) return "%*d%s" % (sz - 1, num, suffix[index])
def print_values(v): def print_values(v):
global hdr global hdr
global sep global sep
@ -207,6 +214,7 @@ def print_values(v):
if e.errno == errno.EPIPE: if e.errno == errno.EPIPE:
sys.exit(1) sys.exit(1)
def print_header(): def print_header():
global hdr global hdr
global sep global sep
@ -219,41 +227,70 @@ def print_header():
if e.errno == errno.EPIPE: if e.errno == errno.EPIPE:
sys.exit(1) sys.exit(1)
def get_typestring(t): def get_typestring(t):
type_strings = ["DMU_OT_NONE", type_strings = ["DMU_OT_NONE",
# general: # general:
"DMU_OT_OBJECT_DIRECTORY", "DMU_OT_OBJECT_ARRAY", "DMU_OT_OBJECT_DIRECTORY",
"DMU_OT_PACKED_NVLIST", "DMU_OT_PACKED_NVLIST_SIZE", "DMU_OT_OBJECT_ARRAY",
"DMU_OT_BPOBJ", "DMU_OT_BPOBJ_HDR", "DMU_OT_PACKED_NVLIST",
"DMU_OT_PACKED_NVLIST_SIZE",
"DMU_OT_BPOBJ",
"DMU_OT_BPOBJ_HDR",
# spa: # spa:
"DMU_OT_SPACE_MAP_HEADER", "DMU_OT_SPACE_MAP", "DMU_OT_SPACE_MAP_HEADER",
"DMU_OT_SPACE_MAP",
# zil: # zil:
"DMU_OT_INTENT_LOG", "DMU_OT_INTENT_LOG",
# dmu: # dmu:
"DMU_OT_DNODE", "DMU_OT_OBJSET", "DMU_OT_DNODE",
"DMU_OT_OBJSET",
# dsl: # dsl:
"DMU_OT_DSL_DIR", "DMU_OT_DSL_DIR_CHILD_MAP", "DMU_OT_DSL_DIR",
"DMU_OT_DSL_DS_SNAP_MAP", "DMU_OT_DSL_PROPS", "DMU_OT_DSL_DIR_CHILD_MAP",
"DMU_OT_DSL_DS_SNAP_MAP",
"DMU_OT_DSL_PROPS",
"DMU_OT_DSL_DATASET", "DMU_OT_DSL_DATASET",
# zpl: # zpl:
"DMU_OT_ZNODE", "DMU_OT_OLDACL", "DMU_OT_PLAIN_FILE_CONTENTS", "DMU_OT_ZNODE",
"DMU_OT_DIRECTORY_CONTENTS", "DMU_OT_MASTER_NODE", "DMU_OT_OLDACL",
"DMU_OT_PLAIN_FILE_CONTENTS",
"DMU_OT_DIRECTORY_CONTENTS",
"DMU_OT_MASTER_NODE",
"DMU_OT_UNLINKED_SET", "DMU_OT_UNLINKED_SET",
# zvol: # zvol:
"DMU_OT_ZVOL", "DMU_OT_ZVOL_PROP", "DMU_OT_ZVOL",
"DMU_OT_ZVOL_PROP",
# other; for testing only! # other; for testing only!
"DMU_OT_PLAIN_OTHER", "DMU_OT_UINT64_OTHER", "DMU_OT_ZAP_OTHER", "DMU_OT_PLAIN_OTHER",
"DMU_OT_UINT64_OTHER",
"DMU_OT_ZAP_OTHER",
# new object types: # new object types:
"DMU_OT_ERROR_LOG", "DMU_OT_SPA_HISTORY", "DMU_OT_ERROR_LOG",
"DMU_OT_SPA_HISTORY_OFFSETS", "DMU_OT_POOL_PROPS", "DMU_OT_SPA_HISTORY",
"DMU_OT_DSL_PERMS", "DMU_OT_ACL", "DMU_OT_SYSACL", "DMU_OT_SPA_HISTORY_OFFSETS",
"DMU_OT_FUID", "DMU_OT_FUID_SIZE", "DMU_OT_NEXT_CLONES", "DMU_OT_POOL_PROPS",
"DMU_OT_SCAN_QUEUE", "DMU_OT_USERGROUP_USED", "DMU_OT_DSL_PERMS",
"DMU_OT_USERGROUP_QUOTA", "DMU_OT_USERREFS", "DMU_OT_DDT_ZAP", "DMU_OT_ACL",
"DMU_OT_DDT_STATS", "DMU_OT_SA", "DMU_OT_SA_MASTER_NODE", "DMU_OT_SYSACL",
"DMU_OT_SA_ATTR_REGISTRATION", "DMU_OT_SA_ATTR_LAYOUTS", "DMU_OT_FUID",
"DMU_OT_SCAN_XLATE", "DMU_OT_DEDUP", "DMU_OT_DEADLIST", "DMU_OT_FUID_SIZE",
"DMU_OT_DEADLIST_HDR", "DMU_OT_DSL_CLONES", "DMU_OT_NEXT_CLONES",
"DMU_OT_SCAN_QUEUE",
"DMU_OT_USERGROUP_USED",
"DMU_OT_USERGROUP_QUOTA",
"DMU_OT_USERREFS",
"DMU_OT_DDT_ZAP",
"DMU_OT_DDT_STATS",
"DMU_OT_SA",
"DMU_OT_SA_MASTER_NODE",
"DMU_OT_SA_ATTR_REGISTRATION",
"DMU_OT_SA_ATTR_LAYOUTS",
"DMU_OT_SCAN_XLATE",
"DMU_OT_DEDUP",
"DMU_OT_DEADLIST",
"DMU_OT_DEADLIST_HDR",
"DMU_OT_DSL_CLONES",
"DMU_OT_BPOBJ_SUBOBJ"] "DMU_OT_BPOBJ_SUBOBJ"]
# If "-rr" option is used, don't convert to string representation # If "-rr" option is used, don't convert to string representation
@ -261,10 +298,11 @@ def get_typestring(t):
return "%i" % t return "%i" % t
try: try:
return type_strings[t]; return type_strings[t]
except IndexError: except IndexError:
return "%i" % t return "%i" % t
def get_compstring(c): def get_compstring(c):
comp_strings = ["ZIO_COMPRESS_INHERIT", "ZIO_COMPRESS_ON", comp_strings = ["ZIO_COMPRESS_INHERIT", "ZIO_COMPRESS_ON",
"ZIO_COMPRESS_OFF", "ZIO_COMPRESS_LZJB", "ZIO_COMPRESS_OFF", "ZIO_COMPRESS_LZJB",
@ -281,10 +319,11 @@ def get_compstring(c):
return "%i" % c return "%i" % c
try: try:
return comp_strings[c]; return comp_strings[c]
except IndexError: except IndexError:
return "%i" % c return "%i" % c
def parse_line(line, labels): def parse_line(line, labels):
global hdr global hdr
@ -307,6 +346,7 @@ def parse_line(line, labels):
return new return new
def update_dict(d, k, line, labels): def update_dict(d, k, line, labels):
pool = line[labels['pool']] pool = line[labels['pool']]
objset = line[labels['objset']] objset = line[labels['objset']]
@ -404,6 +444,7 @@ def buffers_print_all(filehandle):
for line in filehandle: for line in filehandle:
print_values(parse_line(line.split(), labels)) print_values(parse_line(line.split(), labels))
def main(): def main():
global hdr global hdr
global sep global sep
@ -499,7 +540,8 @@ def main():
usage() usage()
if len(incompat) > 0: if len(incompat) > 0:
sys.stderr.write("Incompatible field specified! -- %s\n" % incompat) sys.stderr.write("Incompatible field specified! -- %s\n" %
incompat)
usage() usage()
if ofile: if ofile:
@ -507,8 +549,8 @@ def main():
tmp = open(ofile, "w") tmp = open(ofile, "w")
sys.stdout = tmp sys.stdout = tmp
except: except IOError:
sys.stderr.write("Cannot open %s for writing\n", ofile) sys.stderr.write("Cannot open %s for writing\n" % ofile)
sys.exit(1) sys.exit(1)
if not ifile: if not ifile: