Skip to content

Commit 96f366d

Browse files
committed
Add a method to discover if a library is being modified
To be in isBeingModified state, a library must: - have one of its file modified in the last 24 hours - have a time difference between oldest and newest file bigger than 5 minutes (aka, the lib has not just been extracted from a zip)
1 parent f9d69df commit 96f366d

File tree

2 files changed

+48
-20
lines changed

2 files changed

+48
-20
lines changed

libraries_loader.go

+27
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@
3030
package builder
3131

3232
import (
33+
"math"
3334
"os"
3435
"path/filepath"
36+
"strconv"
3537
"strings"
38+
"time"
3639

3740
"github.com/arduino/arduino-builder/constants"
3841
"github.com/arduino/arduino-builder/i18n"
@@ -153,6 +156,11 @@ func makeNewLibrary(libraryFolder string, debugLevel int, logger i18n.Logger) (*
153156
return nil, i18n.WrapError(err)
154157
}
155158

159+
timeDiff, newestFile := newestAndOldestFileDifferBy(libraryFolder)
160+
if timeDiff > (5*time.Minute) && time.Since(newestFile) < 24*time.Hour {
161+
library.IsBeingModified = true
162+
}
163+
156164
if debugLevel >= 0 {
157165
for _, subFolder := range subFolders {
158166
if utils.IsSCCSOrHiddenFile(subFolder) {
@@ -220,3 +228,22 @@ func appendPathToLibrariesFolders(librariesFolders []string, newLibrariesFolder
220228

221229
return utils.AppendIfNotPresent(librariesFolders, newLibrariesFolder)
222230
}
231+
232+
func newestAndOldestFileDifferBy(path string) (time.Duration, time.Time) {
233+
var newestTime int64 = 0
234+
var oldestTime int64 = math.MaxInt64
235+
236+
filepath.Walk(path,
237+
func(path string, info os.FileInfo, err error) error {
238+
currTime := info.ModTime().Unix()
239+
if currTime > newestTime {
240+
newestTime = currTime
241+
}
242+
if currTime < oldestTime {
243+
oldestTime = currTime
244+
}
245+
return nil
246+
})
247+
duration, _ := time.ParseDuration(strconv.FormatInt(newestTime-oldestTime, 10) + "s")
248+
return duration, time.Unix(newestTime, 0)
249+
}

types/types.go

+21-20
Original file line numberDiff line numberDiff line change
@@ -162,26 +162,27 @@ const (
162162
)
163163

164164
type Library struct {
165-
Folder string
166-
SrcFolder string
167-
UtilityFolder string
168-
Layout LibraryLayout
169-
Name string
170-
RealName string
171-
Archs []string
172-
DotALinkage bool
173-
Precompiled bool
174-
LDflags string
175-
IsLegacy bool
176-
Version string
177-
Author string
178-
Maintainer string
179-
Sentence string
180-
Paragraph string
181-
URL string
182-
Category string
183-
License string
184-
Properties map[string]string
165+
Folder string
166+
SrcFolder string
167+
UtilityFolder string
168+
Layout LibraryLayout
169+
Name string
170+
RealName string
171+
Archs []string
172+
DotALinkage bool
173+
Precompiled bool
174+
LDflags string
175+
IsLegacy bool
176+
Version string
177+
Author string
178+
Maintainer string
179+
Sentence string
180+
Paragraph string
181+
URL string
182+
Category string
183+
License string
184+
Properties map[string]string
185+
IsBeingModified bool
185186
}
186187

187188
func (library *Library) String() string {

0 commit comments

Comments
 (0)