-
-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation: Unclear when a library is compiled as "new-style" or "legacy" #1013
Comments
I ran into this. I thought "legacy" meant "1.0 library spec" and non-legacy meant "1.5 library spec" but that assumption broke my tests. I have absolutely no idea what this field implies or what I would do with it. |
@ianfixes I thought I explained it pretty thoroughly in our discussion at Arduino-CI/arduino_ci#168 (comment) Please give that another read and then let us know what is still not clear so we might improve on it when the documentation is improved in regards to this subject. |
I thought your explanation was excellent! But when I implemented the The test case that broke it is this library: https://github.com/Arduino-CI/arduino_ci/tree/master/SampleProjects/DoSomething Based on your flowchart, this should be "flat" layout, corresponding to the |
Thanks for your feedback! I hope we will be able to improve the documentation to make this confusing subject a bit more clear. Even though I had an instinctive understanding of the differences through years of working with all possible combinations of these formats, when the discussion arose in your arduino_ci repository I found that I was having difficulty formulating a complete explanation of the handling of each in a readily comprehensible form. I used that discussion as an excuse to get the subject more clear in my mind, which culminated in the excessively elaborate comment I made in that thread. My hope was that it could serve as a reference when the opportunity arose to resolve this issue
Correct. If the flat layout library contains a library.properties, as is the case with your "DoSomething" test case library, then it's not legacy. This is a legacy library:
All legacy libraries have flat layout because the recursive layout is not supported for these libraries. Even if the library author puts source files under the This is a non-legacy flat layout library:
This is a non-legacy recursive layout library:
|
Aah, OK -- these are 2 separate conditions that I'm improperly attempting to combine: the existence of I assume that For the rest, I think I can put it better in its own issue. Opened #1092 |
Exactly. You can see the defaults for legacy libraries here: arduino-cli/arduino/libraries/loader.go Lines 127 to 137 in df8c924
The |
I think the only feasible strategy here is for me to defer all source-code-gathering to the logic you've already implemented, via #1092 I could certainly re-implement it, but it seems like it would be awkward to try and keep a parallel implementation in sync with the CLI instead of just asking the CLI what it would do. |
Can you confirm the behavior of the "flat" structure in regards to the |
Bug Report
The library specification documents two flavours of libraries: The modern one with source files in the
src/
directory, and the legacy one with source files in the root andutility
directory. However, it is not immediately clear how the Arduino toolchain decides whether a library is one or the other.I thought that it depended on the presence of a
library.properties
file, which is also implied by the last section (but not 100% clear): https://arduino.github.io/arduino-cli/latest/library-specification/#old-library-format-pre-15However, the section about source code layout is where this distinction is mainly made, but that has nothing explicit about when one or the other is chosen (but it seems to imply that the presence of a
src
directory might be the trigger?It would be good to clarify this behavior, maybe make it more explicit in the last section and refer to that from the "source" section? Maybe it would also be useful to clarify what "legacy" mode means exactly, i.e. make explicit that for all
library.properties
fields, whether the default value is used (i.e. like when the field is omitted in a new-style library), or whether there is some other default (e.g. like the name field which is probably deduced from the folder name).The text was updated successfully, but these errors were encountered: