start portlet menu bar

HCLSoftware: Fueling the Digital+ Economy

Display portlet menu
end portlet menu bar
Close
Select Page

RTist 11.1 2021.24, the second release on the 11.1 release track is now available. This release contains several improvements, both bug fixes, and new features. Let’s have a look at some of these new features.

Capsule Unit Testing

You can now use the Mocha framework for unit testing capsules. A new command in the context menu of a capsule, Add Unit Test, will create everything needed for quickly writing and running a unit test for the capsule:

  • A test driver model where all service ports of the capsule under test are connected to similar but conjugated ports of a test probe capsule
  • A TC for building the test driver model into an executable that uses the TcpServer library for exposing all test probe ports to the Mochatest script
  • A Node.js project with a Mocha testscript ready to implement the unit test

 

Capsule Unit Testing

 

You can run the unit tests directly from within the RTist user interface, or from the command-line.

Code Compliance

The model compiler can now generate code that complies with some of the rules implemented by the static code analysis tool Clang-Tidy. Enable this feature by setting the new preference RealTime Development – Build/Transformations – C++ – Code compliance – Clang-Tidy. By not getting warnings from the generated code, it becomes more practical to use Clang-Tidy to find problems in your handwritten code snippets.

Search Filtering

When a search returns a large number of matches it’s useful to filter the search result. RTist now allows the boolean AND (&&) operator to be used for combining multiple patterns in the filter string. You can also combine it with the boolean NOT (!) operator to specify a filter string that will hide all matches where certain words are not present.

 

Search Filtering

 

You can enclose the filter string in double quotes to avoid special interpretation of the characters ! or && (i.e. in that case the filter string will be applied verbatimly).

Generic Type Descriptors

The model compiler now supports generating type descriptors for type aliases with template parameters. For example:

template<typename T, unsigned int N > using StdArray = std::array<T, N>;

If type descriptor functions are defined for the type alias, they will be generated as template functions with the same template parameters. This makes it possible to implement the type descriptor generically so that it works for all (or many) instantiations of the template.

For type aliases of container types (vector, array, etc) it’s typically needed to look up the type descriptor for the element type at compile time when implementing for example the encode function. This is possible by means of a new TargetRTS template function RTObject_class::fromType<T>(). It is specialized for all built-in C++ types, and you can write your own specializations for other types for which this is needed.

For more information visit https://hcltechsw.com/RTist

Comment wrap
Automation | March 26, 2024
Unlocking the Potential of Real-Time Development with HCL DevOpsCode RealTime 1.0.1
HCL DevOps Code RealTime 1.0.1 streamlines development with enhanced validation and clearer error reporting. New guide simplifies building & customizing real-time applications.
Secure DevOps | September 2, 2022
RTist 11.2 2022.34
HCL RTist is a rule-based code translator for C/C++. The main feature of RTist is to produce readable, maintainable, and portable code.
Secure DevOps | November 29, 2021
What's new in HCL RTist 11.1 2021.46
HCL release of HCL RTist: 11.1 2021.46. As usual, there are several new features and a few bug fixes. Read more to know some highlights.