1029
1039
p = combined.setdefault(name, set())
1030
1040
p.update(map(weave._idx_to_name, weave._parents[idx]))
1031
1041
return combined
1045
"""Show the weave's table-of-contents"""
1046
print '%6s %50s %10s %10s' % ('ver', 'name', 'sha1', 'parents')
1047
for i in (6, 50, 10, 10):
1050
for i in range(w.num_versions()):
1053
parent_str = ' '.join(map(str, w._parents[i]))
1054
print '%6d %-50.50s %10.10s %s' % (i, name, sha1, parent_str)
1058
def weave_stats(weave_file, pb):
1059
from bzrlib.weavefile import read_weave
1061
wf = file(weave_file, 'rb')
1063
# FIXME: doesn't work on pipes
1064
weave_size = wf.tell()
1068
for i in range(vers):
1069
pb.update('checking sizes', i, vers)
1070
for origin, lineno, line in w._extract([i]):
1075
print 'versions %9d' % vers
1076
print 'weave file %9d bytes' % weave_size
1077
print 'total contents %9d bytes' % total
1078
print 'compression ratio %9.2fx' % (float(total) / float(weave_size))
1081
print 'average size %9d bytes' % avg
1082
print 'relative size %9.2fx' % (float(weave_size) / float(avg))
1086
print """bzr weave tool
1088
Experimental tool for weave algorithm.
1091
weave init WEAVEFILE
1092
Create an empty weave file
1093
weave get WEAVEFILE VERSION
1094
Write out specified version.
1095
weave check WEAVEFILE
1096
Check consistency of all versions.
1098
Display table of contents.
1099
weave add WEAVEFILE NAME [BASE...] < NEWTEXT
1100
Add NEWTEXT, with specified parent versions.
1101
weave annotate WEAVEFILE VERSION
1102
Display origin of each line.
1103
weave merge WEAVEFILE VERSION1 VERSION2 > OUT
1104
Auto-merge two versions and display conflicts.
1105
weave diff WEAVEFILE VERSION1 VERSION2
1106
Show differences between two versions.
1110
% weave init foo.weave
1112
% weave add foo.weave ver0 < foo.txt
1115
(create updated version)
1117
% weave get foo.weave 0 | diff -u - foo.txt
1118
% weave add foo.weave ver1 0 < foo.txt
1121
% weave get foo.weave 0 > foo.txt (create forked version)
1123
% weave add foo.weave ver2 0 < foo.txt
1126
% weave merge foo.weave 1 2 > foo.txt (merge them)
1127
% vi foo.txt (resolve conflicts)
1128
% weave add foo.weave merged 1 2 < foo.txt (commit merged version)
1140
# in case we're run directly from the subdirectory
1141
sys.path.append('..')
1143
from bzrlib.weavefile import write_weave, read_weave
1144
from bzrlib.progress import ProgressBar
1159
return read_weave(file(argv[2], 'rb'))
1165
# at the moment, based on everything in the file
1167
parents = map(int, argv[4:])
1168
lines = sys.stdin.readlines()
1169
ver = w.add(name, parents, lines)
1170
write_weave(w, file(argv[2], 'wb'))
1171
print 'added version %r %d' % (name, ver)
1174
if os.path.exists(fn):
1175
raise IOError("file exists")
1177
write_weave(w, file(fn, 'wb'))
1178
elif cmd == 'get': # get one version
1180
sys.stdout.writelines(w.get_iter(int(argv[3])))
1185
v1, v2 = map(int, argv[3:5])
1188
diff_gen = bzrlib.patiencediff.unified_diff(lines1, lines2,
1189
'%s version %d' % (fn, v1),
1190
'%s version %d' % (fn, v2))
1191
sys.stdout.writelines(diff_gen)
1193
elif cmd == 'annotate':
1195
# newline is added to all lines regardless; too hard to get
1196
# reasonable formatting otherwise
1198
for origin, text in w.annotate(int(argv[3])):
1199
text = text.rstrip('\r\n')
1201
print ' | %s' % (text)
1203
print '%5d | %s' % (origin, text)
1209
elif cmd == 'stats':
1210
weave_stats(argv[2], ProgressBar())
1212
elif cmd == 'check':
1217
print '%d versions ok' % w.num_versions()
1219
elif cmd == 'inclusions':
1221
print ' '.join(map(str, w.inclusions([int(argv[3])])))
1223
elif cmd == 'parents':
1225
print ' '.join(map(str, w._parents[int(argv[3])]))
1227
elif cmd == 'plan-merge':
1228
# replaced by 'bzr weave-plan-merge'
1230
for state, line in w.plan_merge(int(argv[3]), int(argv[4])):
1232
print '%14s | %s' % (state, line),
1233
elif cmd == 'merge':
1234
# replaced by 'bzr weave-merge-text'
1236
p = w.plan_merge(int(argv[3]), int(argv[4]))
1237
sys.stdout.writelines(w.weave_merge(p))
1239
raise ValueError('unknown command %r' % cmd)
1242
if __name__ == '__main__':
1244
sys.exit(main(sys.argv))