1
0
Fork 0
go-asink/events.go

56 lines
1.6 KiB
Go
Raw Normal View History

package asink
2013-02-13 07:31:10 -05:00
import (
"os"
)
2013-02-13 07:31:10 -05:00
//event type
2013-02-11 23:16:19 -05:00
type EventType uint32
const (
2013-02-11 23:17:12 -05:00
UPDATE = 1 << iota
2013-02-11 23:16:19 -05:00
DELETE
)
2013-02-13 07:31:10 -05:00
//event status
type EventStatus uint32
const (
//the state of the event on the local asink instance on which it originated:
2013-02-13 07:31:10 -05:00
NOTICED = 1 << iota //watcher.go has been notified that a file changed
COPIED_TO_TMP //temporary version saved off
HASHED //hash taken of tmp file
CACHED //tmp file renamed to its hash
UPLOADED //tmp file has been successfully uploaded to storage
ON_SERVER //server has been successfully notified of event
//the state of the event on the asink instance notified that it occurred elsewhere
NOTIFIED //we've been told a file has been changed remotely
DOWNLOADED //event has been downloaded and stored in the local file cache
SYNCED //everything has been done to ensure the affected file is up-to-date
2013-02-13 07:31:10 -05:00
)
2013-02-11 23:16:19 -05:00
type Event struct {
2013-02-22 00:06:10 -05:00
Id int64
LocalId int64
Type EventType
Status EventStatus
Path string
Hash string
Predecessor string
2013-02-22 00:06:10 -05:00
Timestamp int64
Permissions os.FileMode
2013-02-22 00:06:10 -05:00
InDB bool `json:"-"` //defaults to false. Omitted from json marshalling.
2013-02-11 23:16:19 -05:00
}
2013-08-13 20:42:51 -04:00
func (e *Event) IsUpdate() bool {
2013-02-11 23:17:12 -05:00
return e.Type&UPDATE == UPDATE
2013-02-11 23:16:19 -05:00
}
2013-08-13 20:42:51 -04:00
func (e *Event) IsDelete() bool {
2013-02-11 23:17:12 -05:00
return e.Type&DELETE == DELETE
2013-02-11 23:16:19 -05:00
}
func (e *Event) IsSameEvent(e2 *Event) bool {
return (e.Type == e2.Type && e.Path == e2.Path && e.Hash == e2.Hash && e.Predecessor == e2.Predecessor && e.Timestamp == e2.Timestamp && e.Permissions == e2.Permissions)
}