-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Document module dependency matrix #386
Comments
I was just wondering if that's even necessary. Could it be that all modules are, or have to be, independent of each other anyway? |
TODO: |
But like SSL, some modules wont use it, and SSL will consume a lot RAM... How about make a trick? #ifdef MQTT
#define SSL
#endif And cross-test will consume some time...We will get this done in a week. |
MQTT is the only module that fails the build if SSL is disabled, see #432 (there's a note about this in my cloud build). Hence, once this is fixed the SSL setting is totally independent from other settings. IMO that's the way to go. I'd welcome if you postulate a guideline which says that all non-core modules (e.g. MQTT, 1-wire, I²C, cJSON, etc.) must be standalone and not depend on any other non-core module. Running makedepend or the compiler with the |
Ladder logic tricks like this are pretty standard but typically you would have the primary defines as a block and the dependency defines as a second block so in this you'd have something like #if defined(MQTT) && !defined(SSL)
# define SSL
#endif This is the simplest and tidiest way to add such dependences |
+1 |
@TerryE @devsaurus @jmattsson @pjsg This starts to bother me more and more and I'm quite convinced that it'll bite us medium-/long-term if we don't tackle this. When I created this issue nearly a year ago we had maybe 20 modules, now there are more than 40. Initially I thought it would be enough if we had a simple dependency matrix. However, meanwhile we have different sorts of dependencies.
Do you think it'd be feasible to maintain a n*n matrix (n=number of modules) and give intersecting cells a specific color (see list above)? If further clarifications are required colorized cells may contain foot note references of course. Can you think of a more sensible approach? |
Visualising dependencies is tricky. A colour-coded matrix is probably not a bad choice, but I am a bit concerned about its size when we get to e.g. 80 modules. Right now I can't think of anything smarter though, but I'll sleep on it and see if anything pops into my head. |
There are two aspects to this -- one is to make the build work with arbitrary combinations of modules and the other is to make sure all the required functionality is present. For the first, I think that the code ought to get it right (i.e. have the dependencies in some header file). For the latter, the situation is a little more complex - but I don't think that there are many cases here. The TLS situation is the most obvious. I don't mind this being explicit. For the sntp/rtctime case, I'm in favor of just treating these as hard dependencies and using the header file approach. For the hw_timer case, this is already handled by the build system -- it is always only included if some module that needs it is included (this is the linker magic). Presumably it would be possible to write a script that, given a list of lua files, extracted all the names that need to be defined and thereby could extract the required module list. |
A matrix is probably ok for an overview. Though I'm not a fan of encoding information exclusively with colours. If you're looking for a way to guide the user wrt module selection, then the dependencies could also be defined as a set of statements per module. A structured format (JSON?) with dependency type, related module and a description:
A local script or nodemcu-build would run through the statements based on the selected modules and provided a summary about
|
Me too.
True but it'd still be nice if we could visualize this for our users. I anticipate questions like "Why is there module X in my firmware, I didn't enable it in
AFAIU they're not, it's just that for the anticipated use cases you'll need all of them anyway. Correct Johny?
Yes, but I mean to document very clearly that you can't use pcm, perf and pwm at the same time.
I had been thinking about something like that as well. Haven't thought it through all the way, though. It'd most likely be easier to maintain than the matrix and it's got other pros:
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Could we maybe borrow the npm module manifest format ( { "engines" : { "lua" : ">=0.1.0" } } so no-one will misunderstand the modules as JavaScript modules. |
I feel that this is still important. As we do not have individual packages in our C code the npm format seems a bit overdone for this though. |
Hello |
Why the firmware is not working? |
@czesla Nice that you are willing to use this project. That said, two more points:
|
Thank you for your response. I changed the port speed to 115200 and now it's OK. Once again, thank you and sorry for bothering you. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'm still interested. |
The correct way to do this, IMHO, is to articulate our build dependencies in the Kconfig language. See #3138 for a stalled effort along these lines. |
@marcelstoer would the Kconfig PR be sufficient to make the dependency matrix approach obsolete? |
A Kconfig file could serve as the basis to build a dependency matrix. My motivation for this issue 5y ago was to have a visual documentation of the dependencies. |
Sorry, to clarify my position: we should have one canonical truth about our intended dependency relationship, and that source of truth should be in Kconfig; any documentation should be generated from this machine-checkable definition rather than being separately articulated. I am, sadly, not aware of a dependency graph generator for Kconfig, but such a thing would be a generically useful tool; there's clearly some functionality along those lines within the Kconfig tool itself because |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'm researching interactive display of directed graphs on websites using JavaScript, so I might build one as an exercise. Where do we currently have the dependency information? |
It's helpful I can easily include/exclude particular modules for custom builds using user_modules.h. However, this is always trial-and-error I assume because there's no documented module dependency matrix. If I exclude module X will my NodeMCU binary be broken because module Y depends on X?
This request is to maintain (in wiki) or auto-generate a module dependency matrix.
The text was updated successfully, but these errors were encountered: