16
16
package types
17
17
18
18
import (
19
+ "os"
19
20
"io"
20
21
"strings"
21
22
@@ -27,6 +28,7 @@ import (
27
28
"github.com/arduino/arduino-cli/arduino/libraries/librariesresolver"
28
29
"github.com/arduino/arduino-cli/arduino/sketch"
29
30
"github.com/arduino/arduino-cli/legacy/builder/i18n"
31
+ "github.com/arduino/arduino-cli/legacy/builder/constants"
30
32
rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
31
33
paths "github.com/arduino/go-paths-helper"
32
34
properties "github.com/arduino/go-properties-orderedmap"
@@ -177,6 +179,9 @@ type Context struct {
177
179
// The provided source data is used instead of reading it from disk.
178
180
// The keys of the map are paths relative to sketch folder.
179
181
SourceOverride map [string ]string
182
+
183
+ // Compiler directive for transparent inclusion of global definition when present
184
+ GlobalIncludeOption string
180
185
}
181
186
182
187
// ExecutableSectionSize represents a section of the executable output file
@@ -254,3 +259,23 @@ func (ctx *Context) GetLogger() i18n.Logger {
254
259
func (ctx * Context ) SetLogger (l i18n.Logger ) {
255
260
ctx .logger = l
256
261
}
262
+
263
+ func (ctx * Context ) SetGlobalIncludeOption () {
264
+ if len (ctx .GlobalIncludeOption ) == 0 {
265
+
266
+ // testing existence of path/to/sketch/sketch_globals.h
267
+
268
+ globalsHeaderName := ctx .BuildPath .Join ("sketch" ).Join (ctx .Sketch .Name + "_globals.h" ).String ()
269
+ _ , err := os .Stat (globalsHeaderName );
270
+
271
+ if os .IsNotExist (err ) {
272
+ ctx .GetLogger ().Fprintln (os .Stdout , constants .LOG_LEVEL_INFO , tr ("global definition file is not present" ) + " '" + globalsHeaderName + "'" )
273
+ } else {
274
+ ctx .GlobalIncludeOption = "-include "
275
+ ctx .GlobalIncludeOption += globalsHeaderName
276
+ ctx .GetLogger ().Fprintln (os .Stdout , constants .LOG_LEVEL_INFO , tr ("Using global definition file" ) + " '" + globalsHeaderName + "'" )
277
+ }
278
+
279
+ ctx .GlobalIncludeOption += " "
280
+ }
281
+ }
0 commit comments