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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
|
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
'''workspace extensions for mercurial
This extension contains a number of commands to help you work within
the OpenSolaris consolidations.
Common uses:
Show diffs relative to parent workspace - pdiffs
Check source style rules - nits
Run pre-putback checks - pbchk
Collapse all your changes into a single changeset - recommit'''
#
# NB: This assumes the normal directory structure, with this
# extension 2 levels below .../lib/python.
#
# If you change that, change this
#
import sys, os, stat, termios, atexit
sys.path.insert(1, "%s/../../" % os.path.dirname(__file__))
from onbld.Scm import Version
from mercurial import util
try:
Version.check_version()
except Version.VersionMismatch, badversion:
raise util.Abort("Version Mismatch:\n %s\n" % badversion)
import ConfigParser
from mercurial import cmdutil, node, ignore
from onbld.Scm.WorkSpace import WorkSpace, ActiveEntry
from onbld.Scm.Backup import CdmBackup
from onbld.Checks import Cddl, Comments, Copyright, CStyle, HdrChk
from onbld.Checks import JStyle, Keywords, Mapfile, Rti, onSWAN
def yes_no(ui, msg, default):
if default:
prompt = ' [Y/n]:'
defanswer = 'y'
else:
prompt = ' [y/N]:'
defanswer = 'n'
if ui.interactive and sys.stdin.isatty():
resp = ui.prompt(msg + prompt, r'([Yy(es)?|[Nn]o?)?',
default=defanswer)
if not resp:
return default
elif resp[0] in ['Y', 'y']:
return True
else:
return False
else:
return default
def _buildfilelist(repo, args):
'''build a list of files in which we're interested
If no files are specified, then we'll default to using
the entire active list.
Returns a dictionary, wherein the keys are cwd-relative file paths,
and the values (when present) are entries from the active list.
Instead of warning the user explicitly about files not in the active
list, we'll attempt to do checks on them.'''
fdict = {}
#
# If the user specified files on the command line, we'll only check
# those files. We won't pull the active list at all. That means we
# won't be smart about skipping deleted files and such, so the user
# needs to be smart enough to not explicitly specify a nonexistent
# file path. Which seems reasonable.
#
if args:
for f in args:
fdict[f] = None
#
# Otherwise, if no files were listed explicitly, we assume that the
# checks should be run on all files in the active list. So we determine
# it here.
#
# Tracking the file paths is a slight optimization, in that multiple
# check functions won't need to derive it themselves. This also dovetails
# nicely with the expectation that explicitly specified files will be
# ${CWD}-relative paths, so the fdict keyspace will be consistent either
# way.
#
else:
active = wslist[repo].active()
for e in sorted(active):
fdict[wslist[repo].filepath(e.name)] = e
return fdict
def not_check(repo, cmd):
'''return a function which returns boolean indicating whether a file
should be skipped for CMD.'''
#
# The ignore routines need a canonical path to the file (relative to the
# repo root), whereas the check commands get paths relative to the cwd.
#
# Wrap our argument such that the path is canonified before it is checked.
#
def canonified_check(ignfunc):
def f(path):
cpath = util.canonpath(repo.root, repo.getcwd(), path)
return ignfunc(cpath)
return f
ignorefiles = []
for f in [ repo.join('cdm/%s.NOT' % cmd),
repo.wjoin('exception_lists/%s' % cmd) ]:
if os.path.exists(f):
ignorefiles.append(f)
if ignorefiles:
ign = ignore.ignore(repo.root, ignorefiles, repo.ui.warn)
return canonified_check(ign)
else:
return util.never
#
# Adding a reference to WorkSpace from a repo causes a circular reference
# repo <-> WorkSpace.
#
# This prevents repo, WorkSpace and members thereof from being garbage
# collected. Since transactions are aborted when the transaction object
# is collected, and localrepo holds a reference to the most recently created
# transaction, this prevents transactions from cleanly aborting.
#
# Instead, we hold the repo->WorkSpace association in a dictionary, breaking
# that dependence.
#
wslist = {}
def reposetup(ui, repo):
if repo.local() and repo not in wslist:
wslist[repo] = WorkSpace(repo)
ui.setconfig('hooks', 'preoutgoing.cdm_pbconfirm',
'python:hgext_cdm.pbconfirm')
def pbconfirm(ui, repo, hooktype, source):
def wrapper(settings=None):
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, settings)
if source == 'push':
if not yes_no(ui, "Are you sure you wish to push?", False):
return 1
else:
settings = termios.tcgetattr(sys.stdin.fileno())
orig = list(settings)
atexit.register(wrapper, orig)
settings[3] = settings[3] & (~termios.ISIG) # c_lflag
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, settings)
def cdm_pdiffs(ui, repo, *pats, **opts):
'''list workspace diffs relative to parent workspace
The parent tip is taken to be the latest revision shared between
us and the parent workspace.'''
parent = opts['parent']
diffs = wslist[repo].pdiff(pats, opts, parent=parent)
if diffs:
ui.write(diffs)
def cdm_list(ui, repo, **opts):
'''list files changed relative to parent workspace
The parent tip is taken to be the latest revision shared between
us and the parent workspace.'''
wanted = []
if opts['added']:
wanted.append(ActiveEntry.ADDED)
if opts['modified']:
wanted.append(ActiveEntry.MODIFIED)
if opts['removed']:
wanted.append(ActiveEntry.REMOVED)
act = wslist[repo].active(opts['parent'])
chngmap = {ActiveEntry.MODIFIED: 'modified',
ActiveEntry.ADDED: 'added',
ActiveEntry.REMOVED: 'removed'}
lst = {}
for entry in act:
if wanted and (entry.change not in wanted):
continue
chngstr = chngmap[entry.change]
if chngstr not in lst:
lst[chngstr] = []
lst[chngstr].append(entry)
for chng in sorted(lst.keys()):
ui.write(chng + ':\n')
for elt in sorted(lst[chng]):
if elt.is_renamed():
ui.write('\t%s (renamed from %s)\n' % (elt.name,
elt.parentname))
elif elt.is_copied():
ui.write('\t%s (copied from %s)\n' % (elt.name,
elt.parentname))
else:
ui.write('\t%s\n' % elt.name)
def cdm_arcs(ui, repo, parent=None):
'show all ARC cases in checkin comments'
act = wslist[repo].active(parent)
# We take a set of the appropriate comments to eliminate duplicates.
for elt in set(filter(Comments.isARC, act.comments())):
ui.write(elt + '\n')
def cdm_bugs(ui, repo, parent=None):
'show all bug IDs in checkin comments'
act = wslist[repo].active(parent)
for elt in set(filter(Comments.isBug, act.comments())):
ui.write(elt + '\n')
def cdm_comments(ui, repo, parent=None):
'show checkin comments for active files'
act = wslist[repo].active(parent)
for elt in act.comments():
ui.write(elt + '\n')
def cdm_renamed(ui, repo, parent=None):
'''show renamed active files
Renamed files are shown in the format
newname oldname
One pair per-line.'''
act = wslist[repo].active(parent)
for entry in sorted(filter(lambda x: x.is_renamed(), act)):
ui.write('%s %s\n' % (entry.name, entry.parentname))
def cdm_comchk(ui, repo, **opts):
'''check checkin comments for active files
Check that checkin comments conform to O/N rules.'''
active = wslist[repo].active(opts.get('parent'))
ui.write('Comments check:\n')
check_db = not opts.get('nocheck')
return Comments.comchk(active.comments(), check_db=check_db, output=ui)
def cdm_cddlchk(ui, repo, *args, **opts):
'''check for a valid CDDL block in active files
See http://www.opensolaris.org/os/community/on/devref_toc/devref_7/#7_2_3_nonformatting_considerations
for more info.'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('CDDL block check:\n')
lenient = True
ret = 0
exclude = not_check(repo, 'cddlchk')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
elif e and e.is_added():
lenient = False
else:
lenient = True
fh = open(f, 'r')
ret |= Cddl.cddlchk(fh, lenient=lenient, output=ui)
fh.close()
return ret
def cdm_mapfilechk(ui, repo, *args, **opts):
'''check for a valid MAPFILE header block in active files
Check that all link-editor mapfiles contain the standard mapfile
header comment directing the reader to the document containing
Solaris object versioning rules (README.mapfile).'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('Mapfile comment check:\n')
ret = 0
exclude = not_check(repo, 'mapfilechk')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif f.find('mapfile') == -1:
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= Mapfile.mapfilechk(fh, output=ui)
fh.close()
return ret
def cdm_copyright(ui, repo, *args, **opts):
'''check active files for valid copyrights
Check that all active files have a valid copyright containing the
current year (and *only* the current year).
See http://www.opensolaris.org/os/project/muskoka/on_dev/golden_rules.txt
for more info.'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('Copyright check:\n')
ret = 0
exclude = not_check(repo, 'copyright')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= Copyright.copyright(fh, output=ui)
fh.close()
return ret
def cdm_hdrchk(ui, repo, *args, **opts):
'''check active header files conform to O/N rules'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('Header format check:\n')
ret = 0
exclude = not_check(repo, 'hdrchk')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif not f.endswith('.h'):
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= HdrChk.hdrchk(fh, lenient=True, output=ui)
fh.close()
return ret
def cdm_cstyle(ui, repo, *args, **opts):
'''check active C source files conform to the C Style Guide
See http://opensolaris.org/os/community/documentation/getting_started_docs/cstyle.ms.pdf'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('C style check:\n')
ret = 0
exclude = not_check(repo, 'cstyle')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif not (f.endswith('.c') or f.endswith('.h')):
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= CStyle.cstyle(fh, output=ui,
picky=True, check_posix_types=True,
check_continuation=True)
fh.close()
return ret
def cdm_jstyle(ui, repo, *args, **opts):
'check active Java source files for common stylistic errors'
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('Java style check:\n')
ret = 0
exclude = not_check(repo, 'jstyle')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif not f.endswith('.java'):
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= JStyle.jstyle(fh, output=ui, picky=True)
fh.close()
return ret
def cdm_permchk(ui, repo, *args, **opts):
'''check active files permission - warn +x (execute) mode'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('File permission check:\n')
exeFiles = []
exclude = not_check(repo, 'permchk')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
mode = stat.S_IMODE(os.stat(f)[stat.ST_MODE])
if mode & stat.S_IEXEC:
exeFiles.append(f)
if len(exeFiles) > 0:
ui.write('Warning: the following active file(s) have executable mode '
'(+x) permission set,\nremove unless intentional:\n')
for fname in exeFiles:
ui.write(" %s\n" % fname)
return len(exeFiles) > 0
def cdm_tagchk(ui, repo, **opts):
'''check if .hgtags is active and issue warning
Tag sharing among repositories is restricted to gatekeepers'''
active = wslist[repo].active(opts.get('parent'))
ui.write('Checking for new tags:\n')
if ".hgtags" in active:
tfile = wslist[repo].filepath('.hgtags')
ptip = active.parenttip.rev()
ui.write('Warning: Workspace contains new non-local tags.\n'
'Only gatekeepers should add or modify such tags.\n'
'Use the following commands to revert these changes:\n'
' hg revert -r%d %s\n'
' hg commit %s\n'
'You should also recommit before integration\n' %
(ptip, tfile, tfile))
return 1
return 0
def cdm_branchchk(ui, repo, **opts):
'''check if multiple heads (or branches) are present, or if
branch changes are made'''
ui.write('Checking for multiple heads (or branches):\n')
heads = set(repo.heads())
parents = set([x.node() for x in repo.workingctx().parents()])
#
# We care if there's more than one head, and those heads aren't
# identical to the dirstate parents (if they are identical, it's
# an uncommitted merge which mergechk will catch, no need to
# complain twice).
#
if len(heads) > 1 and heads != parents:
ui.write('Workspace has multiple heads (or branches):\n')
for head in [repo.changectx(head) for head in heads]:
ui.write(" %d:%s\t%s\n" %
(head.rev(), str(head), head.description().splitlines()[0]))
ui.write('You must merge and recommit.\n')
return 1
ui.write('\nChecking for branch changes:\n')
if repo.dirstate.branch() != 'default':
ui.write("Warning: Workspace tip has named branch: '%s'\n"
"Only gatekeepers should push new branches.\n"
"Use the following commands to restore the branch name:\n"
" hg branch [-f] default\n"
" hg commit\n"
"You should also recommit before integration\n" %
(repo.dirstate.branch()))
return 1
branches = repo.branchtags().keys()
if len(branches) > 1:
ui.write('Warning: Workspace has named branches:\n')
for t in branches:
if t == 'default':
continue
ui.write("\t%s\n" % t)
ui.write("Only gatekeepers should push new branches.\n"
"Use the following commands to remove extraneous branches.\n"
" hg branch [-f] default\n"
" hg commit"
"You should also recommit before integration\n")
return 1
return 0
def cdm_rtichk(ui, repo, **opts):
'''check active bug/RFEs for approved RTIs
Only works on SWAN.'''
if opts.get('nocheck') or os.path.exists(repo.join('cdm/rtichk.NOT')):
ui.status('Skipping RTI checks...\n')
return 0
if not onSWAN():
ui.write('RTI checks only work on SWAN, skipping...\n')
return 0
parent = wslist[repo].parent(opts.get('parent'))
active = wslist[repo].active(parent)
ui.write('RTI check:\n')
bugs = []
for com in active.comments():
match = Comments.isBug(com)
if match and match.group(1) not in bugs:
bugs.append(match.group(1))
# RTI normalizes the gate path for us
return int(not Rti.rti(bugs, gatePath=parent, output=ui))
def cdm_keywords(ui, repo, *args, **opts):
'''check source files do not contain SCCS keywords'''
filelist = opts.get('filelist') or _buildfilelist(repo, args)
ui.write('Keywords check:\n')
ret = 0
exclude = not_check(repo, 'keywords')
for f, e in filelist.iteritems():
if e and e.is_removed():
continue
elif (e or opts.get('honour_nots')) and exclude(f):
ui.status('Skipping %s...\n' % f)
continue
fh = open(f, 'r')
ret |= Keywords.keywords(fh, output=ui)
fh.close()
return ret
#
# NB:
# There's no reason to hook this up as an invokable command, since
# we have 'hg status', but it must accept the same arguments.
#
def cdm_outchk(ui, repo, **opts):
'''Warn the user if they have uncommitted changes'''
ui.write('Checking for uncommitted changes:\n')
st = wslist[repo].modified()
if st:
ui.write('Warning: the following files have uncommitted changes:\n')
for elt in st:
ui.write(' %s\n' % elt)
return 1
return 0
def cdm_mergechk(ui, repo, **opts):
'''Warn the user if their workspace contains merges'''
active = wslist[repo].active(opts.get('parent'))
ui.write('Checking for merges:\n')
merges = filter(lambda x: len(x.parents()) == 2 and x.parents()[1],
active.revs)
if merges:
ui.write('Workspace contains the following merges:\n')
for rev in merges:
desc = rev.description().splitlines()
ui.write(' %s:%s\t%s\n' %
(rev.rev() or "working", str(rev),
desc and desc[0] or "*** uncommitted change ***"))
return 1
return 0
def run_checks(ws, cmds, *args, **opts):
'''Run CMDS (with OPTS) over active files in WS'''
ret = 0
flist = _buildfilelist(ws.repo, args)
for cmd in cmds:
name = cmd.func_name.split('_')[1]
if not ws.ui.configbool('cdm', name, True):
ws.ui.status('Skipping %s check...\n' % name)
else:
ws.ui.pushbuffer()
result = cmd(ws.ui, ws.repo, filelist=flist,
honour_nots=True, *args, **opts)
ret |= result
output = ws.ui.popbuffer()
if not ws.ui.quiet or result != 0:
ws.ui.write(output, '\n')
return ret
def cdm_nits(ui, repo, *args, **opts):
'''check for stylistic nits in active files
Run cddlchk, copyright, cstyle, hdrchk, jstyle, mapfilechk,
permchk, and keywords checks.'''
cmds = [cdm_cddlchk,
cdm_copyright,
cdm_cstyle,
cdm_hdrchk,
cdm_jstyle,
cdm_mapfilechk,
cdm_permchk,
cdm_keywords]
return run_checks(wslist[repo], cmds, *args, **opts)
def cdm_pbchk(ui, repo, *args, **opts):
'''pre-putback check all active files
Run cddlchk, comchk, copyright, cstyle, hdrchk, jstyle, mapfilechk,
permchk, tagchk, branchchk, keywords and rtichk checks. Additionally,
warn about uncommitted changes.'''
#
# The current ordering of these is that the commands from cdm_nits
# run first in the same order as they would in cdm_nits. Then the
# pbchk specifics run
#
cmds = [cdm_cddlchk,
cdm_copyright,
cdm_cstyle,
cdm_hdrchk,
cdm_jstyle,
cdm_mapfilechk,
cdm_permchk,
cdm_keywords,
cdm_comchk,
cdm_tagchk,
cdm_branchchk,
cdm_rtichk,
cdm_outchk,
cdm_mergechk]
return run_checks(wslist[repo], cmds, *args, **opts)
def cdm_recommit(ui, repo, **opts):
'''compact outgoing deltas into a single, conglomerate delta'''
if not os.getcwd().startswith(repo.root):
raise util.Abort('recommit is not safe to run with -R')
if wslist[repo].modified():
raise util.Abort('workspace has uncommitted changes')
if wslist[repo].merged():
raise util.Abort('workspace contains uncommitted merge')
if wslist[repo].branched():
raise util.Abort('workspace contains uncommitted branch')
if wslist[repo].mq_applied():
raise util.Abort("workspace has Mq patches applied")
wlock = repo.wlock()
lock = repo.lock()
heads = repo.heads()
if len(heads) > 1:
ui.warn('Workspace has multiple heads (or branches):\n')
for head in heads:
ui.warn('\t%d\n' % repo.changelog.rev(head))
raise util.Abort('you must merge before recommitting')
active = wslist[repo].active(opts['parent'])
if len(active.revs) <= 0:
raise util.Abort("no changes to recommit")
if len(active.files()) <= 0:
ui.warn("Recommitting %d active changesets, but no active files\n" %
len(active.revs))
#
# During the course of a recommit, any file bearing a name matching the
# source name of any renamed file will be clobbered by the operation.
#
# As such, we ask the user before proceeding.
#
bogosity = [f.parentname for f in active if f.is_renamed() and
os.path.exists(repo.wjoin(f.parentname))]
if bogosity:
ui.warn("The following file names are the original name of a rename "
"and also present\n"
"in the working directory:\n")
for fname in bogosity:
ui.warn(" %s\n" % fname)
if not yes_no(ui, "These files will be removed by recommit. Continue?",
False):
raise util.Abort("recommit would clobber files")
user = opts['user'] or ui.username()
message = cmdutil.logmessage(opts) or ui.edit('\n'.join(active.comments()),
user)
if not message:
raise util.Abort('empty commit message')
name = backup_name(repo.root)
bk = CdmBackup(ui, wslist[repo], name)
if bk.need_backup():
if yes_no(ui, 'Do you want to backup files first?', True):
bk.backup()
oldtags = repo.tags()
clearedtags = [(name, nd, repo.changelog.rev(nd), local)
for name, nd, local in active.tags()]
wslist[repo].squishdeltas(active, message, user=user)
if clearedtags:
ui.write("Removed tags:\n")
for name, nd, rev, local in clearedtags:
ui.write(" %s %s:%s%s\n" % (name, rev, node.short(nd),
(local and ' (local)') or ''))
for ntag, nnode in repo.tags().items():
if ntag in oldtags and ntag != "tip":
if oldtags[ntag] != nnode:
ui.write("tag %s now refers to revision %d:%s\n" %
(ntag, repo.changelog.rev(nnode), node.short(nnode)))
def do_eval(cmd, files, root, changedir=True):
if not changedir:
os.chdir(root)
for path in sorted(files):
dirn, base = os.path.split(path)
if changedir:
os.chdir(os.path.join(root, dirn))
os.putenv('workspace', root)
os.putenv('filepath', path)
os.putenv('dir', dirn)
os.putenv('file', base)
os.system(cmd)
def cdm_eval(ui, repo, *command, **opts):
'''run cmd for each active file
cmd can refer to:
$file - active file basename.
$dir - active file dirname.
$filepath - path from workspace root to active file.
$workspace - full path to workspace root.
For example "hg eval 'echo $dir; hg log -l3 $file'" will show the last
the 3 log entries for each active file, preceded by its directory.'''
act = wslist[repo].active(opts['parent'])
cmd = ' '.join(command)
files = [x.name for x in act if not x.is_removed()]
do_eval(cmd, files, repo.root, not opts['remain'])
def cdm_apply(ui, repo, *command, **opts):
'''apply cmd to all active files
For example 'hg apply wc -l' outputs a line count of active files.'''
act = wslist[repo].active(opts['parent'])
if opts['remain']:
appnd = ' $filepath'
else:
appnd = ' $file'
cmd = ' '.join(command) + appnd
files = [x.name for x in act if not x.is_removed()]
do_eval(cmd, files, repo.root, not opts['remain'])
def cdm_reparent(ui, repo, parent):
'''reparent your workspace
Updates the 'default' path.'''
filename = repo.join('hgrc')
p = ui.expandpath(parent)
if not p:
raise util.Abort("could not find parent: %s" % parent)
cp = util.configparser()
try:
cp.read(filename)
except ConfigParser.ParsingError, inst:
raise util.Abort('failed to parse %s\n%s' % (filename, inst))
try:
fh = open(filename, 'w')
except IOError, e:
raise util.Abort('Failed to open workspace configuration: %s' % e)
if not cp.has_section('paths'):
cp.add_section('paths')
cp.set('paths', 'default', p)
cp.write(fh)
fh.close()
def backup_name(fullpath):
'''Create a backup directory name based on the specified path.
In most cases this is the basename of the path specified, but
certain cases are handled specially to create meaningful names'''
special = ['usr/closed']
fullpath = fullpath.rstrip(os.path.sep).split(os.path.sep)
#
# If a path is 'special', we append the basename of the path to
# the path element preceding the constant, special, part.
#
# Such that for instance:
# /foo/bar/onnv-fixes/usr/closed
# has a backup name of:
# onnv-fixes-closed
#
for elt in special:
elt = elt.split(os.path.sep)
pathpos = len(elt)
if fullpath[-pathpos:] == elt:
return "%s-%s" % (fullpath[-pathpos - 1], elt[-1])
else:
return fullpath[-1]
def cdm_backup(ui, repo, if_newer=False):
'''make backup copies of all workspace changes
Backups will be stored in ~/cdm.backup/<basename of workspace>.'''
name = backup_name(repo.root)
bk = CdmBackup(ui, wslist[repo], name)
if if_newer and not bk.need_backup():
ui.status('backup is up-to-date\n')
else:
bk.backup()
def cdm_restore(ui, repo, backup, **opts):
'''restore workspace from backup
Restores a workspace from the specified backup directory and generation
(which defaults to the latest).'''
if not os.getcwd().startswith(repo.root):
raise util.Abort('restore is not safe to run with -R')
if wslist[repo].modified():
raise util.Abort('Workspace has uncommitted changes')
if wslist[repo].merged():
raise util.Abort('Workspace has an uncommitted merge')
if wslist[repo].branched():
raise util.Abort('Workspace has an uncommitted branch')
if opts['generation']:
gen = int(opts['generation'])
else:
gen = None
if os.path.exists(backup):
backup = os.path.abspath(backup)
bk = CdmBackup(ui, wslist[repo], backup)
bk.restore(gen)
def cdm_webrev(ui, repo, **opts):
'''generate webrev and optionally upload it
This command passes all arguments to webrev script'''
webrev_args = ""
for key in opts.keys():
if opts[key]:
if type(opts[key]) == type(True):
webrev_args += '-' + key + ' '
else:
webrev_args += '-' + key + ' ' + opts[key] + ' '
retval = os.system('webrev ' + webrev_args)
if retval != 0:
return retval - 255
return 0
cmdtable = {
'apply': (cdm_apply, [('p', 'parent', '', 'parent workspace'),
('r', 'remain', None, 'do not change directories')],
'hg apply [-p PARENT] [-r] command...'),
'arcs': (cdm_arcs, [('p', 'parent', '', 'parent workspace')],
'hg arcs [-p PARENT]'),
'^backup|bu': (cdm_backup, [('t', 'if-newer', None,
'only backup if workspace files are newer')],
'hg backup [-t]'),
'branchchk': (cdm_branchchk, [('p', 'parent', '', 'parent workspace')],
'hg branchchk [-p PARENT]'),
'bugs': (cdm_bugs, [('p', 'parent', '', 'parent workspace')],
'hg bugs [-p PARENT]'),
'cddlchk': (cdm_cddlchk, [('p', 'parent', '', 'parent workspace')],
'hg cddlchk [-p PARENT]'),
'comchk': (cdm_comchk, [('p', 'parent', '', 'parent workspace'),
('N', 'nocheck', None,
'do not compare comments with databases')],
'hg comchk [-p PARENT]'),
'comments': (cdm_comments, [('p', 'parent', '', 'parent workspace')],
'hg comments [-p PARENT]'),
'copyright': (cdm_copyright, [('p', 'parent', '', 'parent workspace')],
'hg copyright [-p PARENT]'),
'cstyle': (cdm_cstyle, [('p', 'parent', '', 'parent workspace')],
'hg cstyle [-p PARENT]'),
'eval': (cdm_eval, [('p', 'parent', '', 'parent workspace'),
('r', 'remain', None, 'do not change directories')],
'hg eval [-p PARENT] [-r] command...'),
'hdrchk': (cdm_hdrchk, [('p', 'parent', '', 'parent workspace')],
'hg hdrchk [-p PARENT]'),
'jstyle': (cdm_jstyle, [('p', 'parent', '', 'parent workspace')],
'hg jstyle [-p PARENT]'),
'keywords': (cdm_keywords, [('p', 'parent', '', 'parent workspace')],
'hg keywords [-p PARENT]'),
'^list|active': (cdm_list, [('p', 'parent', '', 'parent workspace'),
('r', 'removed', None, 'show removed files'),
('a', 'added', None, 'show added files'),
('m', 'modified', None, 'show modified files')],
'hg list [-amrRu] [-p PARENT]'),
'mapfilechk': (cdm_mapfilechk, [('p', 'parent', '', 'parent workspace')],
'hg mapfilechk [-p PARENT]'),
'^nits': (cdm_nits, [('p', 'parent', '', 'parent workspace')],
'hg nits [-p PARENT]'),
'^pbchk': (cdm_pbchk, [('p', 'parent', '', 'parent workspace'),
('N', 'nocheck', None, 'skip RTI check')],
'hg pbchk [-N] [-p PARENT]'),
'permchk': (cdm_permchk, [('p', 'parent', '', 'parent workspace')],
'hg permchk [-p PARENT]'),
'^pdiffs': (cdm_pdiffs, [('p', 'parent', '', 'parent workspace'),
('a', 'text', None, 'treat all files as text'),
('g', 'git', None, 'use extended git diff format'),
('w', 'ignore-all-space', None,
'ignore white space when comparing lines'),
('b', 'ignore-space-change', None,
'ignore changes in the amount of white space'),
('B', 'ignore-blank-lines', None,
'ignore changes whos lines are all blank'),
('U', 'unified', 3,
'number of lines of context to show'),
('I', 'include', [],
'include names matching the given patterns'),
('X', 'exclude', [],
'exclude names matching the given patterns')],
'hg pdiffs [OPTION...] [-p PARENT] [FILE...]'),
'^recommit|reci': (cdm_recommit, [('p', 'parent', '', 'parent workspace'),
('f', 'force', None, 'force operation'),
('m', 'message', '',
'use <text> as commit message'),
('l', 'logfile', '',
'read commit message from file'),
('u', 'user', '',
'record user as committer')],
'hg recommit [-f] [-p PARENT]'),
'renamed': (cdm_renamed, [('p', 'parent', '', 'parent workspace')],
'hg renamed [-p PARENT]'),
'reparent': (cdm_reparent, [], 'hg reparent PARENT'),
'^restore': (cdm_restore, [('g', 'generation', '', 'generation number')],
'hg restore [-g GENERATION] BACKUP'),
'rtichk': (cdm_rtichk, [('p', 'parent', '', 'parent workspace'),
('N', 'nocheck', None, 'skip RTI check')],
'hg rtichk [-N] [-p PARENT]'),
'tagchk': (cdm_tagchk, [('p', 'parent', '', 'parent workspace')],
'hg tagchk [-p PARENT]'),
'webrev': (cdm_webrev, [('D', 'D', '', 'delete remote webrev'),
('i', 'i', '', 'include file'),
('l', 'l', '', 'extract file list from putback -n'),
('N', 'N', None, 'supress comments'),
('n', 'n', None, 'do not generate webrev'),
('O', 'O', None, 'OpenSolaris mode'),
('o', 'o', '', 'output directory'),
('p', 'p', '', 'use specified parent'),
('t', 't', '', 'upload target'),
('U', 'U', None, 'upload the webrev'),
('w', 'w', '', 'use wx active file')],
'hg webrev [WEBREV_OPTIONS]'),
}
|