-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Public and internal APIs cleanup #10955
Public and internal APIs cleanup #10955
Conversation
* Moved source files and internal headers to internal/ * Added doxygen commands
* Move implementations from headers to sources in order to remove header file inclusions that do not need to be there. * Move one-line methods that do not call other modules methods to the header files. * Replace implicit inclusion of header files by explicit inclusions of the header files needed. * Explicitly include header files in other modules that relied on implicit inclusion of said header files. * Update the year in the Copyright notice of modules modified.
drivers/Ethernet, and anything Ethernet-related in the “HAL” region has never been used in Mbed OS 5. Ethernet is not provided like other core things such as serial. So drivers/Ethernet.h, drivers/Ethernet.cpp and hal/ethernet_api.h, and anything referring to them is obsolete. From 5.0-5.8, Ethernet drivers were written natively as lwIP or Nanostack drivers, and attached via their native APIs. No Mbed OS APIs were involved for driver attachment. Since 5.9, Ethernet drivers are provided by a class derived from `EMAC`, and is attached to lwIP or Nanostack. The above assume Ethernet drivers that send and receive Ethernet frames, in other words it assumes it uses an on-board IP stack. If the interface has an off-board IP stack, then a custom driver needs to derive from `EthInterface` or `WifiInterface` and implement the complete socket API for them. Applications can use various degrees of abstraction by designating particular classes: * NetworkInterface - any interface type * EthInterface/WifiInterface/MeshInterface/CellularInterface – specific interface type, no particular implementation * EthernetInterface – Ethernet using on-board stack, default EMAC * EthernetInterface<EMAC> - Ethernet using on-board stack and particular EMAC ESP8266Interface/BG96CellularModem – Particular network interface The top couple have static “get_default_instance()” methods to locate an appropriate interface for the current target. Or applications can nominate their driver specifically using the lower forms. “EthernetInterface” is a concrete implementation of the abstract “EthInterface”, it means “Use default onboard stack with default EMAC driver, defaults selected by get_default_instance”. That’s only half an abstraction – really portable apps should be saying “EthInterface::get_default_instance” (not caring about onboard or offboard), or “NetworkInterface::get_default_instance” (not caring about Wifi or Ethernet).
* Move source files and internal headers to `internal` dir * Amend test files and other modules include paths for internal headers * Add Doxygen comments for documenting internal and public drivers APIs * Remove incorrectly grouped Devicekey from the drivers Doxygen group and add to the newly created `Device Key` group.
* Move private stuff into internal dir * Fix relative paths * Add Doxygen * Update copyright
The macro `MBED_DEPRECATED` only takes one argument. Also move it to ensure the class is marked deprecated correctly.
@hugueskamba, thank you for your changes. |
I will review this PR |
Travis failures, please fix |
We do not yet use internal namespace inside mbed namespace ( The benefit for this internal files: No guarantees for changes inside Is that it? |
Currently looking at it. |
Internal headers should not be exposed in mbed.h, only public headers. Internal headers should only be included by mbed-os source files, probably from the same local directory. |
|
There's possibly a slight overlap on meaning of "internal" here. The packaging here suggests a true hiding, whereby you could build the system to a library .o file, delete the "internal" directory and just ship the public includes. That's a strong internal, which I don't think we need. I think our primary interest is in stopping people messing with classes/APIs that are subject to change. In the mbed OS 3 build system, you may have had:
That illustrates the two types of "internal". "Implementation detail that will need to be on the path" and "stuff that doesn't need to be shipped with the binary". Nanostack uses that structure, as it was intended to be shipped in binary form without the source directory. But I think we are only going for implementation detail here. |
All source files are moved to "internal". Originally the directory was named "source" and we went for "internal" because some internal header files are also included. I don't have a strong opinion on the actual name.
I agree with that. We will correct it so that public base class are part of the public API.
We are not trying to stop public header files to include private ones. |
You are right that our primary interest is in identifying public headers to stop people using classes/API that are subject to change. |
This avoids the overlap in meaning with a strong `internal` dir which would allow shipping the public header without the content of the internal dir. The subirs `source` instead contain classes and APIs that users should not use and are subject to change.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diff for commit 3eb37d7 is incorrect.
Here is what was done:
git mv source/DigitalIn.cpp AnalogIn.cpp`
git rm source/AnalogIn.cpp
All Git diffs, including rename/copy detection are done by textual analysis. Git doesn't ever record diffs, it stores "before" and "after" tree contents. If it shows up wrong on GitHub, that's heuristics at GitHub's end's fault. Similarly for "git diff" - it's diff's fault. When using Git locally you can try to massage diff results by adjusting various threshold parameters on the diff, but nothing you can do that I'm aware of for GitHub. It doesn't mean there's necessarily anything wrong with the commit, as long as your "before" and "after" are fine. You should probably delete the last few commits, they're just adding to the confusion. |
I have't reviewed the implementation detail yet. I might not manage to complete it before I am away. @kjbracey-arm 👍 for driving this. The view here https://github.com/ARMmbed/mbed-os/tree/f878164a753415ca0d085bec6616071be2c420c6/drivers looks good (internal/source folders and providing public ones in the component root). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fairly happy with how this looks. Folder structure seems good.
I'm still not a general fan of pulling stuff out of the headers. Some stuff really wants to be there for optimisation purposes (and increasingly will be required to be there for C++11 constexpr
).
Here, it seems to me that most of the stuff that really gains from being inline now remains there, but then I'm not sure whether having the less clear-cut definitions moved off to the C files is a clarity improvement. Is "some of the stuff in .cpp" really better than "all of the stuff in .h"? Not sure it's hurting much, but not convinced it's helping either.
I'd be interested to see some build size comparisons (for both release and develop profiles) on the various toolchains. I'm sure the earlier versions would be a loss, but is this one now a gain? It might be if the compilers are a bit over-eager to inline with size optimisation on.
I still want to discuss this with @bulislaw - haven't had a chance yet.
Couple of specific change requests in comments.
This will conflict quite a bit with #10104 and #10895, which should be landing on master soon - you may need to rework. I'd want to see this squashed and tidied before landing on master too.
drivers/AnalogOut.h
Outdated
write(percent); | ||
return *this; | ||
} | ||
AnalogOut &operator= (float percent); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably a lost optimisation - forcing an out-of-line function to return a usually-not-used *this
. Prevents tailcall, will produce unpleasant code and increase stack usage.
As a rule, I'd say anything of the form
X &operator?(...) {
some_method();
return *this;
}
should remain inline, whether or not some_method
is inline. That optimises the return nicely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. We will do.
drivers/internal/TableCRC.cpp
Outdated
@@ -16,11 +16,9 @@ | |||
*/ | |||
|
|||
#include <stdint.h> | |||
#include "drivers/TableCRC.h" | |||
#include "drivers/internal/TableCRC.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, TableCRC.h
is in the correct place, but logically, TableCRC.cpp
should be inside source
, as it's not required to be visible on the path. It would be part of the stuff that would be replaced by a binary.
It could be either source/TableCRC.cpp
or source/internal/TableCRC.cpp
. The latter would seem kind of logical, but I don't have a strong view, as long as it's in source
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have a strong view on this either but I'd prefer all the source files under source
, so let's keep source/TableCRC.cpp
Thanks for the explanation @kjbracey-arm . |
Removing the implementation does not result in a header removal from AnalogOut.h loses optimisation by forcing an the method to return a usually-not-used `*this`. It also prevents tailcall and will produce unpleasant code and increase stack usage.
@kjbracey-arm This PR goes on a feature branch. We will add two PRs shortly for Platform/ and usb/ respectively. Final PR to master will be squashed. |
Pending CI, I will merge this PR to the feature branch as two pending PRs are waiting for this one. There is one more thing to check as per Kevins' comment:
If any rework is required based on the outcome of the discussion, we will do it in a different PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's keep source/TableCRC.cpp
"keep"? It's currently in internal
next to the header.
Anyway, approved, but will need another pass before master.
@hugueskamba We agreed to have all source files under |
The `internal` dirs should only contain header files.
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Separate drivers, events, and rtos internal APIs from public APIs. * Move source files to source subdirs * Move internal headers to internal subdirs * Add Doxygen comments for documenting internal and public APIs * Remove source code from header files in order to remove include pre-processor directives that included header files not directly used by said header files * Explicitly include header files instead of implicit inclusions via third-party header files. Release Notes This will break user code that was using an internal API as the internal header files have been moved. This will only break if the user was including the header file using a namespace (i.e #include "foo/bar.h" instead of #include "bar.h"
Description
Separate
drivers
,events
, andrtos
internal APIs from public APIssource
subdirsmoved to
source
subdirsthat included header files not directly used by said header files
Pull request type
Reviewers
@evedon @gpsimenos
Release Notes
This will break user code that was using an internal API as the internal header files have been moved.
This will only break if the user was including the header file using a namespace (i.e
#include "foo/bar.h"
instead of#include "bar.h"