2019-10-10 00:26:28 +03:00
|
|
|
|
package services
|
|
|
|
|
|
|
|
|
|
import (
|
2020-09-29 19:55:07 +03:00
|
|
|
|
"github.com/muety/wakapi/config"
|
2019-10-10 17:47:19 +03:00
|
|
|
|
"log"
|
2019-10-11 10:06:34 +03:00
|
|
|
|
"runtime"
|
2019-10-10 00:26:28 +03:00
|
|
|
|
"time"
|
|
|
|
|
|
2019-10-11 10:06:34 +03:00
|
|
|
|
"github.com/jasonlvhit/gocron"
|
2019-10-10 00:26:28 +03:00
|
|
|
|
"github.com/jinzhu/gorm"
|
2020-03-31 13:22:17 +03:00
|
|
|
|
"github.com/muety/wakapi/models"
|
2019-10-10 00:26:28 +03:00
|
|
|
|
)
|
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
const (
|
2020-10-09 22:37:16 +03:00
|
|
|
|
aggregateIntervalDays int = 1
|
2019-10-10 17:47:19 +03:00
|
|
|
|
)
|
|
|
|
|
|
2019-10-10 00:26:28 +03:00
|
|
|
|
type AggregationService struct {
|
2020-09-29 19:55:07 +03:00
|
|
|
|
Config *config.Config
|
2019-10-10 00:26:28 +03:00
|
|
|
|
Db *gorm.DB
|
|
|
|
|
UserService *UserService
|
|
|
|
|
SummaryService *SummaryService
|
|
|
|
|
HeartbeatService *HeartbeatService
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-24 18:32:26 +03:00
|
|
|
|
func NewAggregationService(db *gorm.DB, userService *UserService, summaryService *SummaryService, heartbeatService *HeartbeatService) *AggregationService {
|
|
|
|
|
return &AggregationService{
|
2020-09-29 19:55:07 +03:00
|
|
|
|
Config: config.Get(),
|
2020-05-24 18:32:26 +03:00
|
|
|
|
Db: db,
|
|
|
|
|
UserService: userService,
|
|
|
|
|
SummaryService: summaryService,
|
|
|
|
|
HeartbeatService: heartbeatService,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-10 00:26:28 +03:00
|
|
|
|
type AggregationJob struct {
|
2019-10-10 17:47:19 +03:00
|
|
|
|
UserID string
|
2019-10-10 00:26:28 +03:00
|
|
|
|
From time.Time
|
|
|
|
|
To time.Time
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 10:06:34 +03:00
|
|
|
|
// Schedule a job to (re-)generate summaries every day shortly after midnight
|
|
|
|
|
func (srv *AggregationService) Schedule() {
|
2019-10-10 17:47:19 +03:00
|
|
|
|
jobs := make(chan *AggregationJob)
|
|
|
|
|
summaries := make(chan *models.Summary)
|
2019-10-11 10:06:34 +03:00
|
|
|
|
defer close(jobs)
|
|
|
|
|
defer close(summaries)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
|
2019-10-11 10:06:34 +03:00
|
|
|
|
for i := 0; i < runtime.NumCPU(); i++ {
|
2019-10-10 17:47:19 +03:00
|
|
|
|
go srv.summaryWorker(jobs, summaries)
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-04 11:37:38 +03:00
|
|
|
|
for i := 0; i < int(srv.Config.Db.MaxConn); i++ {
|
2019-10-10 17:47:19 +03:00
|
|
|
|
go srv.persistWorker(summaries)
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 10:16:42 +03:00
|
|
|
|
// Run once initially
|
|
|
|
|
srv.trigger(jobs)
|
|
|
|
|
|
2020-10-16 17:21:13 +03:00
|
|
|
|
gocron.Every(1).Day().At(srv.Config.App.AggregationTime).Do(srv.trigger, jobs)
|
2019-10-11 10:06:34 +03:00
|
|
|
|
<-gocron.Start()
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
func (srv *AggregationService) summaryWorker(jobs <-chan *AggregationJob, summaries chan<- *models.Summary) {
|
|
|
|
|
for job := range jobs {
|
2019-11-07 14:56:05 +03:00
|
|
|
|
if summary, err := srv.SummaryService.Construct(job.From, job.To, &models.User{ID: job.UserID}, true); err != nil {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Printf("Failed to generate summary (%v, %v, %s) – %v.\n", job.From, job.To, job.UserID, err)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
} else {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Printf("Successfully generated summary (%v, %v, %s).\n", job.From, job.To, job.UserID)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
summaries <- summary
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-10 00:26:28 +03:00
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
func (srv *AggregationService) persistWorker(summaries <-chan *models.Summary) {
|
|
|
|
|
for summary := range summaries {
|
2019-10-11 09:00:02 +03:00
|
|
|
|
if err := srv.SummaryService.Insert(summary); err != nil {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Printf("Failed to save summary (%v, %v, %s) – %v.\n", summary.UserID, summary.FromTime, summary.ToTime, err)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 10:06:34 +03:00
|
|
|
|
func (srv *AggregationService) trigger(jobs chan<- *AggregationJob) error {
|
|
|
|
|
log.Println("Generating summaries.")
|
|
|
|
|
|
2019-10-10 00:26:28 +03:00
|
|
|
|
users, err := srv.UserService.GetAll()
|
|
|
|
|
if err != nil {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Println(err)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
return err
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 09:00:02 +03:00
|
|
|
|
latestSummaries, err := srv.SummaryService.GetLatestByUser()
|
2019-10-10 00:26:28 +03:00
|
|
|
|
if err != nil {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Println(err)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
return err
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 09:00:02 +03:00
|
|
|
|
userSummaryTimes := make(map[string]time.Time)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
for _, s := range latestSummaries {
|
2020-10-16 15:49:22 +03:00
|
|
|
|
userSummaryTimes[s.UserID] = s.ToTime.T()
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
missingUserIDs := make([]string, 0)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
for _, u := range users {
|
|
|
|
|
if _, ok := userSummaryTimes[u.ID]; !ok {
|
2019-10-10 17:47:19 +03:00
|
|
|
|
missingUserIDs = append(missingUserIDs, u.ID)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
firstHeartbeats, err := srv.HeartbeatService.GetFirstUserHeartbeats(missingUserIDs)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
if err != nil {
|
2019-10-11 10:06:34 +03:00
|
|
|
|
log.Println(err)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
return err
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for id, t := range userSummaryTimes {
|
2019-10-11 09:00:02 +03:00
|
|
|
|
generateUserJobs(id, t, jobs)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, h := range firstHeartbeats {
|
2019-10-11 09:00:02 +03:00
|
|
|
|
generateUserJobs(h.UserID, time.Time(h.Time), jobs)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
}
|
2019-10-10 00:26:28 +03:00
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func generateUserJobs(userId string, lastAggregation time.Time, jobs chan<- *AggregationJob) {
|
|
|
|
|
var from, to time.Time
|
|
|
|
|
end := getStartOfToday().Add(-1 * time.Second)
|
|
|
|
|
|
|
|
|
|
if lastAggregation.Hour() == 0 {
|
|
|
|
|
from = lastAggregation
|
|
|
|
|
} else {
|
2019-11-08 00:56:52 +03:00
|
|
|
|
from = time.Date(
|
|
|
|
|
lastAggregation.Year(),
|
|
|
|
|
lastAggregation.Month(),
|
2020-03-09 19:30:23 +03:00
|
|
|
|
lastAggregation.Day()+aggregateIntervalDays,
|
2019-11-08 00:56:52 +03:00
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
lastAggregation.Location(),
|
|
|
|
|
)
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-10 17:47:19 +03:00
|
|
|
|
for from.Before(end) && to.Before(end) {
|
2019-11-08 00:56:52 +03:00
|
|
|
|
to = time.Date(
|
|
|
|
|
from.Year(),
|
|
|
|
|
from.Month(),
|
2020-03-09 19:30:23 +03:00
|
|
|
|
from.Day()+aggregateIntervalDays,
|
2019-11-08 00:56:52 +03:00
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
from.Location(),
|
|
|
|
|
)
|
2019-10-10 17:47:19 +03:00
|
|
|
|
jobs <- &AggregationJob{userId, from, to}
|
|
|
|
|
from = to
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func getStartOfToday() time.Time {
|
|
|
|
|
now := time.Now()
|
|
|
|
|
return time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 1, now.Location())
|
2019-10-10 00:26:28 +03:00
|
|
|
|
}
|