Skip to content

Commit 5724313

Browse files
author
Federico Fissore
committed
Skipping prototype generation for function with default args. Fixes #23
Signed-off-by: Federico Fissore <[email protected]>
1 parent 2b195cf commit 5724313

File tree

5 files changed

+81
-1
lines changed

5 files changed

+81
-1
lines changed

src/arduino.cc/builder/ctags_parser.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const FIELD_CODE = "code"
4444
const FIELD_FUNCTION_NAME = "functionName"
4545
const FIELD_CLASS = "class"
4646
const FIELD_STRUCT = "struct"
47+
const FIELD_SKIP = "skipMe"
4748

4849
const KIND_PROTOTYPE = "prototype"
4950

@@ -69,6 +70,7 @@ func (s *CTagsParser) Run(context map[string]interface{}) error {
6970
tags = filterOutUnknownTags(tags)
7071
tags = filterOutTagsWithField(tags, FIELD_CLASS)
7172
tags = filterOutTagsWithField(tags, FIELD_STRUCT)
73+
tags = markTagsWithFunctionWithDefaultArgs(tags)
7274
tags = addPrototypes(tags)
7375
tags = removeDefinedProtypes(tags)
7476
tags = removeDuplicate(tags)
@@ -83,7 +85,9 @@ func (s *CTagsParser) Run(context map[string]interface{}) error {
8385

8486
var prototypes []string
8587
for _, tag := range tags {
86-
prototypes = append(prototypes, tag[KIND_PROTOTYPE])
88+
if tag[FIELD_SKIP] != "true" {
89+
prototypes = append(prototypes, tag[KIND_PROTOTYPE])
90+
}
8791
}
8892

8993
context[s.PrototypesField] = prototypes
@@ -142,6 +146,13 @@ func removeDuplicate(tags []map[string]string) []map[string]string {
142146
return newTags
143147
}
144148

149+
func markTagsWithFunctionWithDefaultArgs(tags []map[string]string) []map[string]string {
150+
for _, tag := range tags {
151+
tag[FIELD_SKIP] = strconv.FormatBool(strings.Contains(tag[FIELD_SIGNATURE], "="))
152+
}
153+
return tags
154+
}
155+
145156
func filterOutTagsWithField(tags []map[string]string, field string) []map[string]string {
146157
var newTags []map[string]string
147158
for _, tag := range tags {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test /tmp/test179252494/preproc/ctags_target.cpp /^void test(int x = 1) {$/;" kind:function line:2 signature:(int x = 1) returntype:void
2+
setup /tmp/test179252494/preproc/ctags_target.cpp /^void setup() {$/;" kind:function line:5 signature:() returntype:void
3+
loop /tmp/test179252494/preproc/ctags_target.cpp /^void loop() {$/;" kind:function line:8 signature:() returntype:void

src/arduino.cc/builder/test/ctags_parser_test.go

+18
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,21 @@ func TestCTagsParserStructWithFunctions(t *testing.T) {
206206
require.Equal(t, "void setup();", prototypes[0])
207207
require.Equal(t, "void loop();", prototypes[1])
208208
}
209+
210+
func TestCTagsParserDefaultArguments(t *testing.T) {
211+
context := make(map[string]interface{})
212+
213+
bytes, err := ioutil.ReadFile(filepath.Join("ctags_output", "TestCTagsParserDefaultArguments.txt"))
214+
NoError(t, err)
215+
216+
context[constants.CTX_CTAGS_OUTPUT] = string(bytes)
217+
218+
ctagsParser := builder.CTagsParser{PrototypesField: constants.CTX_PROTOTYPES}
219+
ctagsParser.Run(context)
220+
221+
prototypes := context[constants.CTX_PROTOTYPES].([]string)
222+
223+
require.Equal(t, 2, len(prototypes))
224+
require.Equal(t, "void setup();", prototypes[0])
225+
require.Equal(t, "void loop();", prototypes[1])
226+
}

src/arduino.cc/builder/test/prototypes_adder_test.go

+40
Original file line numberDiff line numberDiff line change
@@ -482,3 +482,43 @@ func TestPrototypesAdderSketchNoFunctions(t *testing.T) {
482482
require.Nil(t, context[constants.CTX_INCLUDE_SECTION])
483483
require.Nil(t, context[constants.CTX_PROTOTYPE_SECTION])
484484
}
485+
486+
func TestPrototypesAdderSketchWithDefaultArgs(t *testing.T) {
487+
DownloadCoresAndToolsAndLibraries(t)
488+
489+
context := make(map[string]interface{})
490+
491+
buildPath := SetupBuildPath(t, context)
492+
defer os.RemoveAll(buildPath)
493+
494+
context[constants.CTX_HARDWARE_FOLDERS] = []string{filepath.Join("..", "hardware"), "hardware", "downloaded_hardware"}
495+
context[constants.CTX_TOOLS_FOLDERS] = []string{"downloaded_tools"}
496+
context[constants.CTX_FQBN] = "arduino:avr:leonardo"
497+
context[constants.CTX_SKETCH_LOCATION] = filepath.Join("sketch_with_default_args", "sketch.ino")
498+
context[constants.CTX_BUILD_PROPERTIES_RUNTIME_IDE_VERSION] = "10600"
499+
context[constants.CTX_LIBRARIES_FOLDERS] = []string{"libraries", "downloaded_libraries"}
500+
context[constants.CTX_VERBOSE] = false
501+
502+
commands := []types.Command{
503+
&builder.SetupHumanLoggerIfMissing{},
504+
505+
&builder.ContainerSetupHardwareToolsLibsSketchAndProps{},
506+
507+
&builder.ContainerMergeCopySketchFiles{},
508+
509+
&builder.ContainerFindIncludes{},
510+
511+
&builder.PrintUsedLibrariesIfVerbose{},
512+
&builder.WarnAboutArchIncompatibleLibraries{},
513+
514+
&builder.ContainerAddPrototypes{},
515+
}
516+
517+
for _, command := range commands {
518+
err := command.Run(context)
519+
NoError(t, err)
520+
}
521+
522+
require.Equal(t, "#include <Arduino.h>\n#line 1\n", context[constants.CTX_INCLUDE_SECTION].(string))
523+
require.Equal(t, "void setup();\nvoid loop();\n#line 1\n", context[constants.CTX_PROTOTYPE_SECTION].(string))
524+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
void test(int x = 1) {
2+
}
3+
4+
void setup() {
5+
}
6+
7+
void loop() {
8+
}

0 commit comments

Comments
 (0)