You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
995 B
50 lines
995 B
3 years ago
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package timeutil
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"sync"
|
||
|
"time"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/log"
|
||
|
)
|
||
|
|
||
|
var executablModTime = time.Now()
|
||
|
var executablModTimeOnce sync.Once
|
||
|
|
||
|
// GetExecutableModTime get executable file modified time of current process.
|
||
|
func GetExecutableModTime() time.Time {
|
||
|
executablModTimeOnce.Do(func() {
|
||
|
exePath, err := os.Executable()
|
||
|
if err != nil {
|
||
|
log.Error("os.Executable: %v", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
exePath, err = filepath.Abs(exePath)
|
||
|
if err != nil {
|
||
|
log.Error("filepath.Abs: %v", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
exePath, err = filepath.EvalSymlinks(exePath)
|
||
|
if err != nil {
|
||
|
log.Error("filepath.EvalSymlinks: %v", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
st, err := os.Stat(exePath)
|
||
|
if err != nil {
|
||
|
log.Error("os.Stat: %v", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
executablModTime = st.ModTime()
|
||
|
})
|
||
|
return executablModTime
|
||
|
}
|