Artifact 870e1c1dce2ade201d8c2691066e37917df996fd
File
tools/cvs2fossil/lib/c2f_project.tcl
part of check-in
[042d54bae5]
- Completed integration of state with pass I, now saving projects and files into it.
by
aku on
2007-10-05 07:27:52.
## -*- tcl -*-
# # ## ### ##### ######## ############# #####################
## Copyright (c) 2007 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
# # ## ### ##### ######## ############# #####################
## Project, part of a CVS repository. Multiple instances are possible.
# # ## ### ##### ######## ############# #####################
## Requirements
package require Tcl 8.4 ; # Required runtime.
package require snit ; # OO system.
package require vc::fossil::import::cvs::state ; # State storage
# # ## ### ##### ######## ############# #####################
##
snit::type ::vc::fossil::import::cvs::project {
# # ## ### ##### ######## #############
## Public API
constructor {path} {
set mybase $path
return
}
method base {} { return $mybase }
method printbase {} {
if {$mybase eq ""} {return <Repository>}
return $mybase
}
method add {rcs usr} {
set myfiles($rcs) $usr
return
}
method files {} {
return [array names myfiles]
}
method persist {} {
state transaction {
# Project data first. Required so that we have its id
# ready for the files.
state run {
INSERT INTO project (pid, name)
VALUES (NULL, $mybase);
}
set pid [state id]
# Then all files, with proper backreference to their
# project.
foreach {rcs usr} [array get myfiles] {
state run {
INSERT INTO file (fid, pid, name, visible)
VALUES (NULL, $pid, $rcs, $usr);
}
}
}
return
}
# # ## ### ##### ######## #############
## State
variable mybase {} ; # Project directory
variable myfiles -array {} ; # Maps rcss archive to their user files.
# # ## ### ##### ######## #############
## Internal methods
pragma -hastypeinfo no ; # no type introspection
pragma -hasinfo no ; # no object introspection
pragma -hastypemethods no ; # type is not relevant.
pragma -simpledispatch yes ; # simple fast dispatch
# # ## ### ##### ######## #############
}
namespace eval ::vc::fossil::import::cvs {
namespace export project
namespace eval project {
namespace import ::vc::fossil::import::cvs::state
}
}
# # ## ### ##### ######## ############# #####################
## Ready
package provide vc::fossil::import::cvs::project 1.0
return