mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
50 lines
929 B
Go
50 lines
929 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package timeutil
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"sync"
|
|
"time"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
)
|
|
|
|
var (
|
|
executablModTime = time.Now()
|
|
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
|
|
}
|