#!/usr/bin/perl -w # # VSS to Perforce converter, phase II: improve metadata # # This script sorts the metadata output (first step in phase II). # # $Id: //guest/hari_krishna_dara/perforce/utils/vsstop4/dev/sortmeta.pl#1 $ # require 5.0; use strict; use integer; use lib '.'; use convert; use Change; open(CHANGES, "<$convert::metadata_dir/changes.ns") or die "can't open for read: $!"; open(NEWCHANGES, ">$convert::metadata_dir/changes") or die "can't open for write: $!"; my ($index,$c,@timestamp_and_index); # read 'em in for($index=0;$c=get Change(\*CHANGES);$index++) { push(@timestamp_and_index, [ $c->timestamp, $index, $c ]); } # sort them by timestamp, then file location @timestamp_and_index = sort { ($$a[0] <=> $$b[0]) || ($$b[1] <=> $$a[1]) } @timestamp_and_index; # write 'em out my $ti; foreach $ti (@timestamp_and_index) { $$ti[2]->put(\*NEWCHANGES); } close(CHANGES); close(NEWCHANGES); unlink("$convert::metadata_dir/changes.ns"); # delete the "not sorted" version
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 5093 | Hari Krishna Dara |
Populating perforce branch. I will be adding p4admin files to it. |
||
//guest/perforce_software/utils/vsstop4/dev/sortmeta.pl | |||||
#1 | 3927 | Robert Cowham | Dev branch | ||
//guest/perforce_software/utils/vsstop4/main/sortmeta.pl | |||||
#3 | 3639 | Robert Cowham |
Changed filetype and inserted ID string. Fixed typo. |
||
#2 | 2165 | Robert Cowham | Merged in changes from Guest branch | ||
#1 | 2160 | Robert Cowham | Main version from .zip file from http://www.perforce.com/perforce/loadsupp.html#conv page |