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
|
## -*- tcl -*-
# # ## ### ##### ######## ############# #####################
## Copyright (c) 2007-2008 Andreas Kupries.
#
# This software is licensed as described in the file LICENSE, which
# you should have received as part of this distribution.
#
# This software consists of voluntary contributions made by many
# individuals. For exact contribution history, see the revision
# history and logs, available at http://fossil-scm.hwaci.com/fossil
# # ## ### ##### ######## ############# #####################
## Fossil, a helper class managing the access to fossil repositories.
# # ## ### ##### ######## ############# #####################
## Requirements
package require Tcl 8.4 ; # Required runtime.
package require fileutil ; # Temp.dir/file
package require snit ; # OO system.
package require vc::tools::trouble ; # Error reporting.
package require vc::tools::log ; # User feedback
package require vc::fossil::import::cvs::integrity ; # State integrity checks.
# # ## ### ##### ######## ############# #####################
##
snit::type ::vc::fossil::import::cvs::fossil {
# # ## ### ##### ######## #############
## Public API
constructor {} {
return
}
method initialize {} {
set myrepository [fileutil::tempfile cvs2fossil_repo_]
set myworkspace [fileutil::tempfile cvs2fossil_wspc_]
::file delete $myworkspace
::file mkdir $myworkspace
Do new [::file nativename $myrepository]
$self InWorkspace ; Do open [::file nativename $myrepository]
$self RestorePwd
log write 8 fossil {Scratch repository created @ $myrepository}
log write 8 fossil {Scratch workspace created @ $myworkspace }
return
}
method load {r w} {
set myrepository $r
set myworkspace $w
log write 8 fossil {Scratch repository found @ $myrepository}
log write 8 fossil {Scratch workspace found @ $myworkspace}
return
}
method space {} {
return [list $myrepository $myworkspace]
}
# # ## ### ##### ######## #############
##
method root {} {
# The id of the root manifest is hardwired into fossil. This
# manifest is created when a new repository is made (See
# 'new', in the constructor).
return 1
}
method workspace {} { return $myworkspace }
method importfiles {map} {
# map = list (instruction), instruction = add|delta
# add = list ('A', path)
# delta = list ('D', path, src)
log write 3 fossil {Importing revisions...}
array set id {}
$self InWorkspace
set n 0
set max [llength $map]
foreach insn $map {
log progress 3 fossil $n $max ; incr n
struct::list assign $insn cmd pa pb
switch -exact -- $cmd {
A {
log write 8 fossil {Importing <$pa>,}
# Result = 'inserted as record :FOO:'
# 0 1 2 3
set res [Do test-content-put $pa]
integrity assert {
[regexp {^inserted as record \d+$} $res]
} {Unable to process unexpected fossil output '$res'}
set id($pa) [lindex $res 3]
}
D {
log write 8 fossil {Compressing <$pa>, as delta of <$pb>}
Do test-content-deltify $id($pa) $id($pb) 1
}
}
}
$self RestorePwd
log write 3 fossil Done.
return [array get id]
}
method importrevision {label user message date parent revisions} {
# Massage the commit message to remember the old user name
# which did the commit in CVS.
set message "By $user:\n$message"
log write 2 fossil {== $user @ [clock format $date]}
log write 2 fossil {-> $parent}
log write 9 fossil {%% [join [split $message \n] "\n%% "]}
lappend cmd Do test-import-manifest $date $message
if {$parent ne ""} { lappend cmd -p $parent }
foreach {frid fpath flabel} $revisions {
lappend cmd -f $frid $fpath
log write 12 fossil {** <[format %5d $frid]> = <$flabel>}
}
# run fossil test-command performing the import.
log write 12 fossil { [lreplace $cmd 3 3 @@]}
$self InWorkspace
set res [eval $cmd]
$self RestorePwd
integrity assert {
[regexp {^inserted as record \d+, [0-9a-fA-F]+$} $res]
} {Unable to process unexpected fossil output '$res'}
set rid [string trim [lindex $res 3] ,]
set uuid [lindex $res 4]
log write 2 fossil {== $rid ($uuid)}
return [list $rid $uuid]
}
method tag {uuid name} {
log write 2 fossil {Tag '$name' @ $uuid}
$self InWorkspace
Do tag add sym-$name $uuid
$self RestorePwd
return
}
method branchmark {uuid name} {
# We do not mark the trunk
if {$name eq ":trunk:"} return
log write 2 fossil {Begin branch '$name' @ $uuid}
$self InWorkspace
Do tag branch sym-$name $uuid
$self RestorePwd
return
}
method branchcancel {uuid name} {
# The trunk is unmarked, thus cancellation is not needed
# either.
if {$name eq ":trunk:"} return
log write 2 fossil {Cancel branch '$name' @ $uuid}
$self InWorkspace
Do tag delete sym-$name $uuid
$self RestorePwd
return
}
method finalize {destination} {
log write 2 fossil {Finalize, rebuilding repository}
Do rebuild [::file nativename $myrepository]
::file rename -force $myrepository $destination
::file delete -force $myworkspace
$self destroy
log write 2 fossil {destination $destination}
return
}
# # ## ### ##### ######## #############
##
typemethod setlocation {path} {
set myfossilcmd $path
set myneedlocation 0
return
}
typemethod validate {} {
if {!$myneedlocation} {
if {![fileutil::test $myfossilcmd efrx msg]} {
trouble fatal "Bad path for fossil executable: $msg"
}
} else {
trouble fatal "Don't know where to find the 'fossil' executable"
}
return
}
typeconstructor {
set location [auto_execok fossil]
set myneedlocation [expr {$location eq ""}]
if {$myneedlocation} return
$type setlocation $location
return
}
# # ## ### ##### ######## #############
## State
variable mypwd {} ; # Path to last CWD
variable myrepository {} ; # Path to our fossil database.
variable myworkspace {} ; # Path to the workspace for our fossil
# database.
typevariable myfossilcmd ; # Path to fossil executable.
typevariable myneedlocation ; # Boolean, indicates if user has to
# tell us where fossil lives or not.
# # ## ### ##### ######## #############
## Internal methods
proc Do {args} {
# 8.5: exec $myfossilcmd {*}$args
log write 14 fossil {Doing '$args'}
return [eval [linsert $args 0 exec $myfossilcmd]]
}
method InWorkspace {} { set mypwd [pwd] ; cd $myworkspace ; return }
method RestorePwd {} { cd $mypwd ; set mypwd {} ; return }
# # ## ### ##### ######## #############
## Configuration
pragma -hastypeinfo no ; # no type introspection
pragma -hasinfo no ; # no object introspection
# # ## ### ##### ######## #############
}
namespace eval ::vc::fossil::import::cvs {
namespace export fossil
namespace eval fossil {
namespace import ::vc::tools::trouble
namespace import ::vc::tools::log
namespace import ::vc::fossil::import::cvs::integrity
}
}
# # ## ### ##### ######## ############# #####################
## Ready
package provide vc::fossil::import::cvs::fossil 1.0
return
|