seafile_recovery/command.go

41 lines
825 B
Go
Raw Normal View History

2021-04-22 09:29:04 +00:00
package main
import(
"log"
)
2021-04-23 14:44:42 +00:00
func cmdHead(config *configCollect) {
2021-04-22 09:29:04 +00:00
rc := NewRepoCommits(config)
rc.CollectDescs()
log.Println("Repo contains", len(rc.CommitDesc), "commits")
rc.CollectContent()
rc.BuildGraph()
2021-04-22 10:38:52 +00:00
log.Println("Repo has", len(rc.Root), "sources")
2021-04-22 14:15:54 +00:00
if len(rc.Root) > 1 {
for cn, _ := range rc.Root {
log.Println("Commit "+cn.Id+"\n"+cn.Content.String())
}
}
2021-04-22 10:38:52 +00:00
2021-04-22 09:29:04 +00:00
rc.FindLeafs()
2021-04-22 10:38:52 +00:00
log.Println("Repo has", len(rc.Leafs), "sinks")
2021-04-22 09:29:04 +00:00
rc.ChooseHead()
log.Println("Proposing following HEAD:\n"+rc.Head.Content.String())
}
2021-04-22 20:43:44 +00:00
2021-04-23 14:44:42 +00:00
2021-04-23 20:22:26 +00:00
type LsWalker struct { }
func (lw* LsWalker) onDir(dn *DirNode) {
log.Println(dn.String())
}
func (lw* LsWalker) onFile(fn *FileNode) {
log.Println(fn.String())
}
func cmdLs(config *configCollect) {
en := NewEntryNode(config)
en.Walk(new(LsWalker))
2021-04-22 20:43:44 +00:00
}