2019-11-21 16:19:22 +00:00
|
|
|
package protocol
|
2019-07-17 22:25:42 +00:00
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
const clockBumpInMs = uint64(time.Minute / time.Millisecond)
|
2019-07-17 22:25:42 +00:00
|
|
|
|
|
|
|
// CalcMessageClock calculates a new clock value for Message.
|
Move to protobuf for Message type (#1706)
* Use a single Message type `v1/message.go` and `message.go` are the same now, and they embed `protobuf.ChatMessage`
* Use `SendChatMessage` for sending chat messages, this is basically the old `Send` but a bit more flexible so we can send different message types (stickers,commands), and not just text.
* Remove dedup from services/shhext. Because now we process in status-protocol, dedup makes less sense, as those messages are going to be processed anyway, so removing for now, we can re-evaluate if bringing it to status-go or not.
* Change the various retrieveX method to a single one:
`RetrieveAll` will be processing those messages that it can process (Currently only `Message`), and return the rest in `RawMessages` (still transit). The format for the response is:
`Chats`: -> The chats updated by receiving the message
`Messages`: -> The messages retrieved (already matched to a chat)
`Contacts`: -> The contacts updated by the messages
`RawMessages` -> Anything else that can't be parsed, eventually as we move everything to status-protocol-go this will go away.
2019-12-05 16:25:34 +00:00
|
|
|
// It is used to properly sort messages and accommodate the fact
|
2019-07-17 22:25:42 +00:00
|
|
|
// that time might be different on each device.
|
2019-12-02 15:34:05 +00:00
|
|
|
func CalcMessageClock(lastObservedValue uint64, timeInMs uint64) uint64 {
|
2019-07-17 22:25:42 +00:00
|
|
|
clock := lastObservedValue
|
2019-12-02 15:34:05 +00:00
|
|
|
if clock < timeInMs {
|
2019-07-17 22:25:42 +00:00
|
|
|
// Added time should be larger than time skew tollerance for a message.
|
|
|
|
// Here, we use 1 minute which is larger than accepted message time skew by Whisper.
|
2019-12-02 15:34:05 +00:00
|
|
|
clock = timeInMs + clockBumpInMs
|
2019-07-17 22:25:42 +00:00
|
|
|
} else {
|
|
|
|
clock++
|
|
|
|
}
|
|
|
|
return clock
|
|
|
|
}
|