admin管理员组文章数量:1348221
I'm an embedded software (firmware) developer (C++) and sometimes I need to convert data between types, for example
- an array of 4 bytes, need to be written to the hardware in a single 32bit register
- a float variable needs to be transmitted in a message as bytes
In order to do the conversion properly, I am using a union, to store the data, so I can read/write it in both ways, for example
union {
uint8_t asByte[lengthInBytes]{}; // interprete the data as 16 bytes
uint32_t asUint32[lengthInWords]; // interprete the data as 4 32bit words
} state;
Now I am running static code checking on my code (using SonarCloud) and this is flagging an issue on this construct :
Add a discriminant to this wrapped undiscriminated union or replace it with an "std::variant"
I don't want to use the std:: library containers because I need to avoid using dynamic memory allocation, and often it's also an overkill...
So how can I resolve this 'codeSmell', or should I just ignore/accept it in my use case ?
I'm an embedded software (firmware) developer (C++) and sometimes I need to convert data between types, for example
- an array of 4 bytes, need to be written to the hardware in a single 32bit register
- a float variable needs to be transmitted in a message as bytes
In order to do the conversion properly, I am using a union, to store the data, so I can read/write it in both ways, for example
union {
uint8_t asByte[lengthInBytes]{}; // interprete the data as 16 bytes
uint32_t asUint32[lengthInWords]; // interprete the data as 4 32bit words
} state;
Now I am running static code checking on my code (using SonarCloud) and this is flagging an issue on this construct :
Add a discriminant to this wrapped undiscriminated union or replace it with an "std::variant"
I don't want to use the std:: library containers because I need to avoid using dynamic memory allocation, and often it's also an overkill...
So how can I resolve this 'codeSmell', or should I just ignore/accept it in my use case ?
Share Improve this question asked Apr 2 at 8:59 StrooomStrooom 1037 bronze badges 18 | Show 13 more comments1 Answer
Reset to default 6Thanks for all the useful remarks,
Seems like std::bitcast
is the right way to do this.
It requires C++20 but I think I'm ok with that.
本文标签: static analysisHow to properly use C union on embedded softwareStack Overflow
版权声明:本文标题:static analysis - How to properly use C++ union on embedded software - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743847960a2549472.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
std::variant
doesn't use any dynamic memory allocation, but you have a bigger problem - type punning viaunion
s is Undefined Behaviour in C++. – Yksisarvinen Commented Apr 2 at 9:01std::bitcast
notstd::variant
. – Jarod42 Commented Apr 2 at 9:30std::variant
doesn't do that. – Jarod42 Commented Apr 2 at 9:36