mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
Generate summary generation jobs.
This commit is contained in:
parent
851f378684
commit
43f6f33966
3
main.go
3
main.go
@ -105,8 +105,7 @@ func main() {
|
|||||||
summarySrvc := &services.SummaryService{config, db, heartbeatSrvc, aliasSrvc}
|
summarySrvc := &services.SummaryService{config, db, heartbeatSrvc, aliasSrvc}
|
||||||
aggregationSrvc := &services.AggregationService{config, db, userSrvc, summarySrvc, heartbeatSrvc}
|
aggregationSrvc := &services.AggregationService{config, db, userSrvc, summarySrvc, heartbeatSrvc}
|
||||||
|
|
||||||
sums, err := aggregationSrvc.GenerateJobs()
|
aggregationSrvc.Start(time.Second)
|
||||||
fmt.Println(sums)
|
|
||||||
|
|
||||||
// Handlers
|
// Handlers
|
||||||
heartbeatHandler := &routes.HeartbeatHandler{HeartbeatSrvc: heartbeatSrvc}
|
heartbeatHandler := &routes.HeartbeatHandler{HeartbeatSrvc: heartbeatSrvc}
|
||||||
|
@ -13,13 +13,19 @@
|
|||||||
package services
|
package services
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"container/list"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jinzhu/gorm"
|
"github.com/jinzhu/gorm"
|
||||||
"github.com/n1try/wakapi/models"
|
"github.com/n1try/wakapi/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
summaryInterval time.Duration = 24 * time.Hour
|
||||||
|
nSummaryWorkers int = 8
|
||||||
|
nPersistWorkers int = 8
|
||||||
|
)
|
||||||
|
|
||||||
type AggregationService struct {
|
type AggregationService struct {
|
||||||
Config *models.Config
|
Config *models.Config
|
||||||
Db *gorm.DB
|
Db *gorm.DB
|
||||||
@ -29,26 +35,54 @@ type AggregationService struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type AggregationJob struct {
|
type AggregationJob struct {
|
||||||
UserId string
|
UserID string
|
||||||
From time.Time
|
From time.Time
|
||||||
To time.Time
|
To time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use https://godoc.org/github.com/jasonlvhit/gocron to trigger jobs on a regular basis.
|
// Use https://godoc.org/github.com/jasonlvhit/gocron to trigger jobs on a regular basis.
|
||||||
func (srv *AggregationService) Start(interval time.Duration) {
|
func (srv *AggregationService) Start(interval time.Duration) {
|
||||||
|
jobs := make(chan *AggregationJob)
|
||||||
|
summaries := make(chan *models.Summary)
|
||||||
|
|
||||||
|
for i := 0; i < nSummaryWorkers; i++ {
|
||||||
|
go srv.summaryWorker(jobs, summaries)
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := 0; i < nPersistWorkers; i++ {
|
||||||
|
go srv.persistWorker(summaries)
|
||||||
|
}
|
||||||
|
|
||||||
|
srv.generateJobs(jobs)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srv *AggregationService) generateJobs() (*list.List, error) {
|
func (srv *AggregationService) summaryWorker(jobs <-chan *AggregationJob, summaries chan<- *models.Summary) {
|
||||||
var aggregationJobs *list.List = list.New()
|
for job := range jobs {
|
||||||
|
if summary, err := srv.SummaryService.GetSummary(job.From, job.To, &models.User{ID: job.UserID}); err != nil {
|
||||||
|
log.Printf("Failed to generate summary (%v, %v, %s) – %v.", job.From, job.To, job.UserID, err)
|
||||||
|
} else {
|
||||||
|
summaries <- summary
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (srv *AggregationService) persistWorker(summaries <-chan *models.Summary) {
|
||||||
|
for summary := range summaries {
|
||||||
|
if err := srv.SummaryService.SaveSummary(summary); err != nil {
|
||||||
|
log.Printf("Failed to save summary (%v, %v, %s) – %v.", summary.UserID, summary.FromTime, summary.ToTime, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (srv *AggregationService) generateJobs(jobs chan<- *AggregationJob) error {
|
||||||
users, err := srv.UserService.GetAll()
|
users, err := srv.UserService.GetAll()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
latestSummaries, err := srv.SummaryService.GetLatestUserSummaries()
|
latestSummaries, err := srv.SummaryService.GetLatestUserSummaries()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
userSummaryTimes := make(map[string]*time.Time)
|
userSummaryTimes := make(map[string]*time.Time)
|
||||||
@ -56,42 +90,48 @@ func (srv *AggregationService) generateJobs() (*list.List, error) {
|
|||||||
userSummaryTimes[s.UserID] = s.ToTime
|
userSummaryTimes[s.UserID] = s.ToTime
|
||||||
}
|
}
|
||||||
|
|
||||||
missingUserIds := make([]string, 0)
|
missingUserIDs := make([]string, 0)
|
||||||
for _, u := range users {
|
for _, u := range users {
|
||||||
if _, ok := userSummaryTimes[u.ID]; !ok {
|
if _, ok := userSummaryTimes[u.ID]; !ok {
|
||||||
missingUserIds = append(missingUserIds, u.ID)
|
missingUserIDs = append(missingUserIDs, u.ID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
firstHeartbeats, err := srv.HeartbeatService.GetFirstUserHeartbeats(missingUserIds)
|
firstHeartbeats, err := srv.HeartbeatService.GetFirstUserHeartbeats(missingUserIDs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
for id, t := range userSummaryTimes {
|
for id, t := range userSummaryTimes {
|
||||||
var from time.Time
|
generateUserJobs(id, *t, jobs)
|
||||||
if t.Hour() == 0 {
|
|
||||||
from = *t
|
|
||||||
} else {
|
|
||||||
nextDay := t.Add(24 * time.Hour)
|
|
||||||
from = time.Date(nextDay.Year(), nextDay.Month(), nextDay.Day(), 0, 0, 0, 0, t.Location())
|
|
||||||
}
|
|
||||||
|
|
||||||
aggregationJobs.PushBack(&AggregationJob{id, from, from.Add(24 * time.Hour)})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, h := range firstHeartbeats {
|
for _, h := range firstHeartbeats {
|
||||||
var from time.Time
|
generateUserJobs(h.UserID, time.Time(*(h.Time)), jobs)
|
||||||
var t time.Time = time.Time(*(h.Time))
|
|
||||||
if t.Hour() == 0 {
|
|
||||||
from = time.Time(*(h.Time))
|
|
||||||
} else {
|
|
||||||
nextDay := t.Add(24 * time.Hour)
|
|
||||||
from = time.Date(nextDay.Year(), nextDay.Month(), nextDay.Day(), 0, 0, 0, 0, t.Location())
|
|
||||||
}
|
|
||||||
|
|
||||||
aggregationJobs.PushBack(&AggregationJob{h.UserID, from, from.Add(24 * time.Hour)})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return aggregationJobs, nil
|
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 {
|
||||||
|
nextDay := lastAggregation.Add(24 * time.Hour)
|
||||||
|
from = time.Date(nextDay.Year(), nextDay.Month(), nextDay.Day(), 0, 0, 0, 0, lastAggregation.Location())
|
||||||
|
}
|
||||||
|
|
||||||
|
for from.Before(end) && to.Before(end) {
|
||||||
|
to = from.Add(24 * time.Hour)
|
||||||
|
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())
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package services
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/jinzhu/gorm"
|
"github.com/jinzhu/gorm"
|
||||||
"github.com/n1try/wakapi/models"
|
"github.com/n1try/wakapi/models"
|
||||||
@ -12,13 +13,9 @@ type AliasService struct {
|
|||||||
Db *gorm.DB
|
Db *gorm.DB
|
||||||
}
|
}
|
||||||
|
|
||||||
var userAliases map[string][]*models.Alias
|
var userAliases sync.Map
|
||||||
|
|
||||||
func (srv *AliasService) LoadUserAliases(userId string) error {
|
func (srv *AliasService) LoadUserAliases(userId string) error {
|
||||||
if userAliases == nil {
|
|
||||||
userAliases = make(map[string][]*models.Alias)
|
|
||||||
}
|
|
||||||
|
|
||||||
var aliases []*models.Alias
|
var aliases []*models.Alias
|
||||||
if err := srv.Db.
|
if err := srv.Db.
|
||||||
Where(&models.Alias{UserID: userId}).
|
Where(&models.Alias{UserID: userId}).
|
||||||
@ -26,13 +23,13 @@ func (srv *AliasService) LoadUserAliases(userId string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
userAliases[userId] = aliases
|
userAliases.Store(userId, aliases)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srv *AliasService) GetAliasOrDefault(userId string, summaryType uint8, value string) (string, error) {
|
func (srv *AliasService) GetAliasOrDefault(userId string, summaryType uint8, value string) (string, error) {
|
||||||
if userAliases, ok := userAliases[userId]; ok {
|
if ua, ok := userAliases.Load(userId); ok {
|
||||||
for _, a := range userAliases {
|
for _, a := range ua.([]*models.Alias) {
|
||||||
if a.Type == summaryType && a.Value == value {
|
if a.Type == summaryType && a.Value == value {
|
||||||
return a.Key, nil
|
return a.Key, nil
|
||||||
}
|
}
|
||||||
@ -43,7 +40,7 @@ func (srv *AliasService) GetAliasOrDefault(userId string, summaryType uint8, val
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (src *AliasService) IsInitialized(userId string) bool {
|
func (src *AliasService) IsInitialized(userId string) bool {
|
||||||
if _, ok := userAliases[userId]; ok {
|
if _, ok := userAliases.Load(userId); ok {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package services
|
package services
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
"sort"
|
"sort"
|
||||||
"time"
|
"time"
|
||||||
@ -66,6 +67,14 @@ func (srv *SummaryService) GetSummary(from, to time.Time, user *models.User) (*m
|
|||||||
return summary, nil
|
return summary, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (srv *SummaryService) SaveSummary(summary *models.Summary) error {
|
||||||
|
fmt.Println("Saving summary", summary)
|
||||||
|
if err := srv.Db.Create(summary).Error; err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (srv *SummaryService) GetLatestUserSummaries() ([]*models.Summary, error) {
|
func (srv *SummaryService) GetLatestUserSummaries() ([]*models.Summary, error) {
|
||||||
var summaries []*models.Summary
|
var summaries []*models.Summary
|
||||||
if err := srv.Db.
|
if err := srv.Db.
|
||||||
|
Loading…
Reference in New Issue
Block a user