Artifact 47b2c14f5346beeedffa9ad5a663fe04ff6947fa
File
tools/cvs2fossil/lib/c2f_pimportfinal.tcl
part of check-in
[31b15fcf30]
- Split the current import pass into three, for files, changesets, and finalization (fossil rebuild).
by
aku on
2008-03-05 03:42:50.
## -*- tcl -*-
# # ## ### ##### ######## ############# #####################
## Copyright (c) 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
# # ## ### ##### ######## ############# #####################
## Pass XIV. This is the third and last of the backend passes. It
## finalizes the fossil repositories we have constructed in the
## previous import passes.
# # ## ### ##### ######## ############# #####################
## Requirements
package require Tcl 8.4 ; # Required runtime.
package require snit ; # OO system.
package require vc::tools::log ; # User feedback.
package require vc::fossil::import::cvs::repository ; # Repository management.
package require vc::fossil::import::cvs::state ; # State storage.
package require vc::fossil::import::cvs::fossil ; # Access to fossil repositories.
# # ## ### ##### ######## ############# #####################
## Register the pass with the management
vc::fossil::import::cvs::pass define \
ImportFinal \
{Finalize the import into fossil repositories} \
::vc::fossil::import::cvs::pass::importfinal
# # ## ### ##### ######## ############# #####################
##
snit::type ::vc::fossil::import::cvs::pass::importfinal {
# # ## ### ##### ######## #############
## Public API
typemethod setup {} {
# Define the names and structure of the persistent state of
# this pass.
state use space
return
}
typemethod load {} {
# Pass manager interface. Executed to load data computed by
# this pass into memory when this pass is skipped instead of
# executed.
return
}
typemethod run {} {
# Pass manager interface. Executed to perform the
# functionality of the pass.
foreach project [repository projects] {
log write 1 importfinal {Finalize project "[$project base]"}
set pid [$project id]
set fossil [fossil %AUTO%]
struct::list assign [state run {
SELECT repository, workspace
FROM space
WHERE pid = $pid
}] r w
$fossil load $r $w
# At last copy the temporary repository file to its final
# destination and release the associated memory.
set destination [$project base]
if {$destination eq ""} {
set destination [file tail [repository base?]]
}
append destination .fsl
$fossil finalize $destination ; # implies destroy
}
return
}
typemethod discard {} {
# Pass manager interface. Executed for all passes after the
# run passes, to remove all data of this pass from the state,
# as being out of date.
return
}
# # ## ### ##### ######## #############
## Internal methods
# # ## ### ##### ######## #############
## Configuration
pragma -hasinstances no ; # singleton
pragma -hastypeinfo no ; # no introspection
pragma -hastypedestroy no ; # immortal
# # ## ### ##### ######## #############
}
namespace eval ::vc::fossil::import::cvs::pass {
namespace export importfinal
namespace eval importfinal {
namespace import ::vc::fossil::import::cvs::repository
namespace import ::vc::fossil::import::cvs::state
namespace import ::vc::fossil::import::cvs::fossil
namespace import ::vc::tools::log
log register importfinal
}
}
# # ## ### ##### ######## ############# #####################
## Ready
package provide vc::fossil::import::cvs::pass::importfinal 1.0
return