146 lines
2.9 KiB
Go
146 lines
2.9 KiB
Go
package filetree
|
|
|
|
import (
|
|
"archive/tar"
|
|
"bytes"
|
|
"crypto/md5"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
const (
|
|
Unchanged DiffType = iota
|
|
Changed
|
|
Added
|
|
Removed
|
|
)
|
|
|
|
// NodeData is the payload for a FileNode
|
|
type NodeData struct {
|
|
ViewInfo ViewInfo
|
|
FileInfo FileInfo
|
|
DiffType DiffType
|
|
}
|
|
|
|
// ViewInfo contains UI specific detail for a specific FileNode
|
|
type ViewInfo struct {
|
|
Collapsed bool
|
|
Hidden bool
|
|
}
|
|
|
|
// FileInfo contains tar metadata for a specific FileNode
|
|
type FileInfo struct {
|
|
Path string
|
|
TypeFlag byte
|
|
MD5sum [16]byte
|
|
TarHeader tar.Header
|
|
}
|
|
|
|
// DiffType defines the comparison result between two FileNodes
|
|
type DiffType int
|
|
|
|
// NewNodeData creates an empty NodeData struct for a FileNode
|
|
func NewNodeData() *NodeData {
|
|
return &NodeData{
|
|
ViewInfo: *NewViewInfo(),
|
|
FileInfo: FileInfo{},
|
|
DiffType: Unchanged,
|
|
}
|
|
}
|
|
|
|
// Copy duplicates a NodeData
|
|
func (data *NodeData) Copy() *NodeData {
|
|
return &NodeData{
|
|
ViewInfo: *data.ViewInfo.Copy(),
|
|
FileInfo: *data.FileInfo.Copy(),
|
|
DiffType: data.DiffType,
|
|
}
|
|
}
|
|
|
|
// NewViewInfo creates a default ViewInfo
|
|
func NewViewInfo() (view *ViewInfo) {
|
|
return &ViewInfo{
|
|
Collapsed: false,
|
|
Hidden: false,
|
|
}
|
|
}
|
|
|
|
// Copy duplicates a ViewInfo
|
|
func (view *ViewInfo) Copy() (newView *ViewInfo) {
|
|
newView = NewViewInfo()
|
|
*newView = *view
|
|
return newView
|
|
}
|
|
|
|
// NewFileInfo extracts the metadata from a tar header and file contents and generates a new FileInfo object.
|
|
func NewFileInfo(reader *tar.Reader, header *tar.Header, path string) FileInfo {
|
|
if header.Typeflag == tar.TypeDir {
|
|
return FileInfo{
|
|
Path: path,
|
|
TypeFlag: header.Typeflag,
|
|
MD5sum: [16]byte{},
|
|
TarHeader: *header,
|
|
}
|
|
}
|
|
fileBytes := make([]byte, header.Size)
|
|
_, err := reader.Read(fileBytes)
|
|
if err != nil && err != io.EOF {
|
|
panic(err)
|
|
}
|
|
|
|
return FileInfo{
|
|
Path: path,
|
|
TypeFlag: header.Typeflag,
|
|
MD5sum: md5.Sum(fileBytes),
|
|
TarHeader: *header,
|
|
}
|
|
}
|
|
|
|
// Copy duplicates a FileInfo
|
|
func (data *FileInfo) Copy() *FileInfo {
|
|
if data == nil {
|
|
return nil
|
|
}
|
|
return &FileInfo{
|
|
Path: data.Path,
|
|
TypeFlag: data.TypeFlag,
|
|
MD5sum: data.MD5sum,
|
|
TarHeader: data.TarHeader,
|
|
}
|
|
}
|
|
|
|
// Compare determines the DiffType between two FileInfos based on the type and contents of each given FileInfo
|
|
func (data *FileInfo) Compare(other FileInfo) DiffType {
|
|
if data.TypeFlag == other.TypeFlag {
|
|
if bytes.Compare(data.MD5sum[:], other.MD5sum[:]) == 0 {
|
|
return Unchanged
|
|
}
|
|
}
|
|
return Changed
|
|
}
|
|
|
|
// String of a DiffType
|
|
func (diff DiffType) String() string {
|
|
switch diff {
|
|
case Unchanged:
|
|
return "Unchanged"
|
|
case Changed:
|
|
return "Changed"
|
|
case Added:
|
|
return "Added"
|
|
case Removed:
|
|
return "Removed"
|
|
default:
|
|
return fmt.Sprintf("%d", int(diff))
|
|
}
|
|
}
|
|
|
|
// merge two DiffTypes into a single result. Essentially, return the given value unless they two values differ,
|
|
// in which case we can only determine that there is "a change".
|
|
func (diff DiffType) merge(other DiffType) DiffType {
|
|
if diff == other {
|
|
return diff
|
|
}
|
|
return Changed
|
|
}
|