@@ -41,8 +41,7 @@ func PrintProgressIfProgressEnabledAndMachineLogger(ctx *types.Context) {
41
41
42
42
log := ctx .GetLogger ()
43
43
if log .Name () == "machine" {
44
- log .Println (constants .LOG_LEVEL_INFO , constants .MSG_PROGRESS , strconv .FormatFloat (ctx .Progress .Progress , 'f' , 2 , 32 ))
45
- ctx .Progress .Progress += ctx .Progress .Steps
44
+ log .Println (constants .LOG_LEVEL_INFO , constants .MSG_PROGRESS , strconv .FormatFloat (float64 (ctx .Progress .Progress ), 'f' , 2 , 32 ))
46
45
}
47
46
}
48
47
@@ -69,33 +68,42 @@ func CompileFilesRecursive(ctx *types.Context, sourcePath *paths.Path, buildPath
69
68
}
70
69
71
70
func CompileFiles (ctx * types.Context , sourcePath * paths.Path , recurse bool , buildPath * paths.Path , buildProperties * properties.Map , includes []string ) (paths.PathList , error ) {
72
- sObjectFiles , err := compileFilesWithExtensionWithRecipe ( ctx , sourcePath , recurse , buildPath , buildProperties , includes , ".S" , constants . RECIPE_S_PATTERN )
71
+ sSources , err := findFilesInFolder ( sourcePath , ".S" , recurse )
73
72
if err != nil {
74
73
return nil , errors .WithStack (err )
75
74
}
76
- cObjectFiles , err := compileFilesWithExtensionWithRecipe ( ctx , sourcePath , recurse , buildPath , buildProperties , includes , ".c" , constants . RECIPE_C_PATTERN )
75
+ cSources , err := findFilesInFolder ( sourcePath , ".c" , recurse )
77
76
if err != nil {
78
77
return nil , errors .WithStack (err )
79
78
}
80
- cppObjectFiles , err := compileFilesWithExtensionWithRecipe ( ctx , sourcePath , recurse , buildPath , buildProperties , includes , ".cpp" , constants . RECIPE_CPP_PATTERN )
79
+ cppSources , err := findFilesInFolder ( sourcePath , ".cpp" , recurse )
81
80
if err != nil {
82
81
return nil , errors .WithStack (err )
83
82
}
83
+
84
+ ctx .Progress .AddSubSteps (len (sSources ) + len (cSources ) + len (cppSources ))
85
+ defer ctx .Progress .RemoveSubSteps ()
86
+
87
+ sObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , sSources , buildPath , buildProperties , includes , constants .RECIPE_S_PATTERN )
88
+ if err != nil {
89
+ return nil , errors .WithStack (err )
90
+ }
91
+ cObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cSources , buildPath , buildProperties , includes , constants .RECIPE_C_PATTERN )
92
+ if err != nil {
93
+ return nil , errors .WithStack (err )
94
+ }
95
+ cppObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cppSources , buildPath , buildProperties , includes , constants .RECIPE_CPP_PATTERN )
96
+ if err != nil {
97
+ return nil , errors .WithStack (err )
98
+ }
99
+
84
100
objectFiles := paths .NewPathList ()
85
101
objectFiles .AddAll (sObjectFiles )
86
102
objectFiles .AddAll (cObjectFiles )
87
103
objectFiles .AddAll (cppObjectFiles )
88
104
return objectFiles , nil
89
105
}
90
106
91
- func compileFilesWithExtensionWithRecipe (ctx * types.Context , sourcePath * paths.Path , recurse bool , buildPath * paths.Path , buildProperties * properties.Map , includes []string , extension string , recipe string ) (paths.PathList , error ) {
92
- sources , err := findFilesInFolder (sourcePath , extension , recurse )
93
- if err != nil {
94
- return nil , errors .WithStack (err )
95
- }
96
- return compileFilesWithRecipe (ctx , sourcePath , sources , buildPath , buildProperties , includes , recipe )
97
- }
98
-
99
107
func findFilesInFolder (sourcePath * paths.Path , extension string , recurse bool ) (paths.PathList , error ) {
100
108
files , err := utils .ReadDirFiltered (sourcePath .String (), utils .FilterFilesWithExtensions (extension ))
101
109
if err != nil {
@@ -164,11 +172,8 @@ func compileFilesWithRecipe(ctx *types.Context, sourcePath *paths.Path, sources
164
172
var errorsList []error
165
173
var errorsMux sync.Mutex
166
174
167
- ctx .Progress .Steps = ctx .Progress .Steps / float64 (len (sources ))
168
-
169
175
queue := make (chan * paths.Path )
170
176
job := func (source * paths.Path ) {
171
- PrintProgressIfProgressEnabledAndMachineLogger (ctx )
172
177
objectFile , err := compileFileWithRecipe (ctx , sourcePath , source , buildPath , buildProperties , includes , recipe )
173
178
if err != nil {
174
179
errorsMux .Lock ()
@@ -206,6 +211,9 @@ func compileFilesWithRecipe(ctx *types.Context, sourcePath *paths.Path, sources
206
211
break
207
212
}
208
213
queue <- source
214
+
215
+ ctx .Progress .CompleteStep ()
216
+ PrintProgressIfProgressEnabledAndMachineLogger (ctx )
209
217
}
210
218
close (queue )
211
219
wg .Wait ()
0 commit comments