mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-06 16:08:29 +01:00
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
|
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
package utils
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"strconv"
|
||
|
"sync"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
scanAllMarker *TimeMarker
|
||
|
scanOverviewMarker = &TimeMarker{
|
||
|
interval: 15 * time.Second,
|
||
|
}
|
||
|
once sync.Once
|
||
|
)
|
||
|
|
||
|
//TimeMarker is used to control an action not to be taken frequently within the interval
|
||
|
type TimeMarker struct {
|
||
|
sync.RWMutex
|
||
|
next time.Time
|
||
|
interval time.Duration
|
||
|
}
|
||
|
|
||
|
//Mark tries to mark a future time, which is after the duration of interval from the time it's called.
|
||
|
//It returns false if there is a mark in fugure, true if the mark is successfully set.
|
||
|
func (t *TimeMarker) Mark() bool {
|
||
|
t.Lock()
|
||
|
defer t.Unlock()
|
||
|
if time.Now().Before(t.next) {
|
||
|
return false
|
||
|
}
|
||
|
t.next = time.Now().Add(t.interval)
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
//Next returns the time of the next mark.
|
||
|
func (t *TimeMarker) Next() time.Time {
|
||
|
t.RLock()
|
||
|
defer t.RUnlock()
|
||
|
return t.next
|
||
|
}
|
||
|
|
||
|
//ScanAllMarker ...
|
||
|
func ScanAllMarker() *TimeMarker {
|
||
|
once.Do(func() {
|
||
|
a := os.Getenv("HARBOR_SCAN_ALL_INTERVAL")
|
||
|
if m, err := strconv.Atoi(a); err == nil {
|
||
|
scanAllMarker = &TimeMarker{
|
||
|
interval: time.Duration(m) * time.Minute,
|
||
|
}
|
||
|
} else {
|
||
|
scanAllMarker = &TimeMarker{
|
||
|
interval: 30 * time.Minute,
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
return scanAllMarker
|
||
|
}
|
||
|
|
||
|
//ScanOverviewMarker ...
|
||
|
func ScanOverviewMarker() *TimeMarker {
|
||
|
return scanOverviewMarker
|
||
|
}
|