Difference between revisions of "Runtime Integration"

From STRIDE Wiki
Jump to: navigation, search
(Testing the Runtime Integration)
(Including the STRIDE Runtime)
 
(13 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
* Incorporate the STRIDE Build Tools in your make process as a pre-compilation step
 
* Incorporate the STRIDE Build Tools in your make process as a pre-compilation step
  
Here we incorporate the [[Runtime_Reference|STRIDE Runtime]] in your target application build without tests. In the second and last step, we add the STRIDE [[Build Tools]] to the mix and hook up the test-running harnessing.
+
Here we incorporate the [[STRIDE Runtime]] in your target application build without tests. In the second and last step, we add the STRIDE [[Build Tools]] to the mix and hook up the test-running harnessing.
  
 
After building the target with the STRIDE Runtime in place, we will run stride from a remote host computer to verify connectivity and runtime operation.
 
After building the target with the STRIDE Runtime in place, we will run stride from a remote host computer to verify connectivity and runtime operation.
Line 25: Line 25:
 
The [[Platform_Abstraction_Layer|Platform Abstraction Layer (PAL)]] provides the glue between the STRIDE Runtime and services offered by your OS. It is the only piece of the runtime that is customized between operating systems.
 
The [[Platform_Abstraction_Layer|Platform Abstraction Layer (PAL)]] provides the glue between the STRIDE Runtime and services offered by your OS. It is the only piece of the runtime that is customized between operating systems.
  
Fully tested PALs are provided for Linux and Windows, included as <tt>palcfg.h</tt>, <tt>palIO.c</tt> and <tt>palOS.c</tt> in their respective [[:Category:SDKs|SDKs]]. Other PALs are also available or under development. Please [http://www.s2technologies.com/contact.html contact S2] for availability.
+
Fully tested PALs are provided for Posix and Windows, included as <tt>palcfg.h</tt>, <tt>palIO.c</tt> and <tt>palOS.c</tt> in their respective [[Framework_Setup#SDK|SDK]].  
  
 
== Configuring PAL I/O parameters ==
 
== Configuring PAL I/O parameters ==
Line 32: Line 32:
 
Otherwise, refer to <tt>palcfg.h</tt> that comes with your PAL for a list of configuration parameters.
 
Otherwise, refer to <tt>palcfg.h</tt> that comes with your PAL for a list of configuration parameters.
  
== Including the STRIDE Runtime Sources ==
+
== Including the STRIDE Runtime ==
The [[Runtime_Reference|STRIDE Runtime]] sources are distributed in source form. The source files are available as a stand-alone package and are also included with each flavor of [[:Category:SDKs|SDK package]].
+
The [[STRIDE Runtime]] is distributed in source form. The source files are included with each [[Framework_Setup#SDK|SDK]] under "Runtime" directory. Files in that directories should be included in your target build.
 
 
The runtime sources are supplied in three directories:
 
;GRS
 
: [[GRS|Generic RTOS Services]]
 
;Runtime
 
: [[Runtime Reference|STRIDE Runtime]]
 
;SLAP
 
: [[SLAP|Simplified Link-layer Application Protocol]]
 
 
 
Files in each of these directories should be included in your target build.
 
  
 
If you are using an S2-supplied SDK, additional required sources can be found in the SDK's <tt>src</tt> directory:
 
If you are using an S2-supplied SDK, additional required sources can be found in the SDK's <tt>src</tt> directory:
Line 52: Line 42:
 
** <tt>palOS.c</tt>
 
** <tt>palOS.c</tt>
  
* Convenience functions (these wrap low-level STRIDE runtime calls)
+
* Convenience functions (these wrap low-level PAL/Runtime calls)
 
** <tt>stride.c</tt>
 
** <tt>stride.c</tt>
 
** <tt>stride.h</tt>
 
** <tt>stride.h</tt>
Line 62: Line 52:
  
 
=== C/C++ Feature Support ===
 
=== C/C++ Feature Support ===
By default the C source in the Runtime was written with the presumption that the target C compiler and C Runtime (CRT) library supports '''wchar_t''', '''long long''', '''long double''', and '''variable arguments (va_list, va_start, va_end...)'''
+
By default the C source in the Runtime was written with the presumption that the target C compiler and C Runtime (CRT) library supports '''wchar_t''', '''long long''', '''long double''', '''safe snprintf''', and '''variadic macros'''
  
By default the C++ source in the Runtime was written with the presumption that the target C++ compiler can handle '''namespaces'''.  
+
By default the C++ source in the Runtime was written with the presumption that the target C++ compiler can handle '''namespaces''' and '''exceptions'''.  
  
 
If desired the user can specify different configuration by using '''-D''' compiler options:
 
If desired the user can specify different configuration by using '''-D''' compiler options:
Line 71: Line 61:
 
  -DsrCRT_HAS_LONG_LONG=<0|1>
 
  -DsrCRT_HAS_LONG_LONG=<0|1>
 
  -DsrCRT_HAS_LONG_DBL=<0|1>
 
  -DsrCRT_HAS_LONG_DBL=<0|1>
  -DsrCRT_HAS_VAR_ARGS=<0|1>
+
  -DsrCRT_HAS_SNPRINTF=<0|1>
 +
-DsrCRT_HAS_VA_ARGS=<0|1>
 
  -DsrCPP_HAS_NAMESPACE=<0|1>  
 
  -DsrCPP_HAS_NAMESPACE=<0|1>  
 +
-DsrCPP_HAS_EXCEPTION=<0|1>
  
 
where 0=disabled and 1=enabled.
 
where 0=disabled and 1=enabled.
Line 88: Line 80:
 
Your target source must be edited to include code that initializes and uninitializes the runtime. The code is typically added to your <tt>main()</tt> function, but the only requirement is that the initialization takes place before the host computer connects and the uninitialization occurs before the process terminates.
 
Your target source must be edited to include code that initializes and uninitializes the runtime. The code is typically added to your <tt>main()</tt> function, but the only requirement is that the initialization takes place before the host computer connects and the uninitialization occurs before the process terminates.
  
Please refer to the standard pre-packaged [[:Category:SDKs|Platform SDKs]] for examples of a startup sequence. Briefly it should be something like:
+
Please refer to the standard pre-packaged [[Framework_Setup#SDK|SDK]] for examples of a startup sequence. Briefly it should be something like:
  
 
<source lang="c">
 
<source lang="c">
Line 96: Line 88:
 
int main(int argc, char **argv)
 
int main(int argc, char **argv)
 
{
 
{
  ...
+
    ...
 
   
 
   
  /* initialize the STRIDE subsytem using default I/O */
+
    /* initialize the STRIDE subsytem using default I/O */
  strideIO_t io = {strideDEFAULT};
+
#ifdef __cplusplus
/* for C++ use
+
    strideIO_t io = {strideIO_t::strideDEFAULT};
  strideIO_t io = {strideIO_t::strideDEFAULT};
+
#else
*/
+
    strideIO_t io = {strideDEFAULT};
  if (strideInit(&io) != srTRUE)
+
#endif
    return -1;
+
    if (strideInit(&io) != srTRUE)
 +
        return -1;
 
   
 
   
  /* start any IM thread */
+
    /* start any IM thread */
  ...
+
    ...
  
  /* target application code here */
+
    /* target application code here */
  ...
+
    ...
 
   
 
   
  /* block until a termination signal is received, omit if not needed */
+
    /* stop all STRIDE threads and uninitialize STRIDE subsystem */
  strideExWaitForExit();
+
    strideUninit();
 
  /* stop all STRIDE threads and uninitialize STRIDE subsystem */
 
  strideUninit();
 
  
  return 0;   
+
    return 0;   
 
}
 
}
 
</source>
 
</source>
Line 131: Line 121:
 
int main(int argc, char **argv)
 
int main(int argc, char **argv)
 
{
 
{
  palDWORD dwRTNID;
+
    palDWORD dwRTNID;
  
  ...
+
    ...
  
  /* initialize the PAL handler */
+
    /* initialize the PAL handler */
  if (palOSInit() != palTRUE)  
+
    if (palOSInit() != palTRUE)  
    return -1;
+
        return -1;
  
  /* initialize the PAL IO handler */
+
    /* initialize the PAL IO handler */
  if (palIOInit(PAL_DEFAULT_DEVICE_NAME) != palTRUE)  
+
    if (palIOInit(PAL_DEFAULT_DEVICE_NAME) != palTRUE)  
  {
+
    {
    palOSUninit();
+
        palOSUninit();
    return -1;
+
        return -1;
  }
+
    }
  
  /* initialize STRIDE Runtime */
+
    /* initialize STRIDE Runtime */
  if (srInit() != srOK)
+
    if (srInit() != srOK)
  {
+
    {
    palIOShutdown();
+
        palIOShutdown();
    srUninit();
+
        srUninit();
    palOSUninit();
+
        palOSUninit();
    return -1;
+
        return -1;
  }
+
    }
  
  /* start the Runtime thread first */
+
    /* start the Runtime thread first */
  palDWORD dwRTNID = /* create thread with function srThread() */;
+
    palDWORD dwRTNID = /* create thread with function srThread() */;
  if (dwRTNID == 0)  
+
    if (dwRTNID == 0)  
  {
+
    {
    palIOShutdown();
+
        palIOShutdown();
    srUninit();
+
        srUninit();
    palOSUninit();
+
        palOSUninit();
    return -1;
+
        return -1;
  }
+
    }
  
  /* start any IM thread */
+
    /* start any IM thread */
  ...
+
    ...
  
  /* target application code here */
+
    /* target application code here */
  ...
+
    ...
  
  /* block until a termination signal is received, omit if not needed */
+
    /* stop all IM threads */
  ...
+
    ...
  
  /* stop all IM threads */
+
    /* stop Runtime thread */
  ...
+
    palNotify(dwRTNID, palSTOP_EVENT);
  
  /* stop Runtime thread */
+
    /* uninitialize STRIDE subsystem */
  palNotify(dwRTNID, palSTOP_EVENT);
+
    palIOShutdown();
 
+
    srUninit();
  /* uninitialize STRIDE subsystem */
+
    palOSUninit();
  palIOShutdown();
 
  srUninit();
 
  palOSUninit();
 
  
  return 0;   
+
    return 0;   
 
}
 
}
 
</source>
 
</source>
Line 191: Line 178:
 
==Testing the Runtime Integration==
 
==Testing the Runtime Integration==
 
Once the instrumented target is successfully built, start the target application. On a separate host computer, connected to the target via TCP/IP (or serial port if so configured), run '''[[STRIDE_Runner|stride]]''' as follows (substitute the <tt>--device</tt> option argument as needed):
 
Once the instrumented target is successfully built, start the target application. On a separate host computer, connected to the target via TCP/IP (or serial port if so configured), run '''[[STRIDE_Runner|stride]]''' as follows (substitute the <tt>--device</tt> option argument as needed):
<ref>If '''stride''' is not already installed, see [[Desktop Installation]].</ref>
+
 
 
<source lang="bash">
 
<source lang="bash">
 
stride --diagnostics --device=<device_address>
 
stride --diagnostics --device=<device_address>
Line 202: Line 189:
 
<pre>
 
<pre>
 
Connecting to device...
 
Connecting to device...
   runtime version: 4.2.xx
+
   runtime version: 5.x.yy
 
Disconnecting from device...
 
Disconnecting from device...
 
</pre>
 
</pre>
 
== Notes ==
 
<references/>
 
 
[[Category:Framework Integration]]
 

Latest revision as of 10:28, 7 July 2015

Overview

This page discusses the first step in an overall STRIDE framework integration. The ultimate goals are to extend your target build process to:

  • Incorporate the STRIDE Runtime source files in your target build
  • Configure compiler settings
  • Add code to target source to start and stop STRIDE runtime threads
  • Incorporate the STRIDE Build Tools in your make process as a pre-compilation step

Here we incorporate the STRIDE Runtime in your target application build without tests. In the second and last step, we add the STRIDE Build Tools to the mix and hook up the test-running harnessing.

After building the target with the STRIDE Runtime in place, we will run stride from a remote host computer to verify connectivity and runtime operation.

Recommendations

The STRIDE target environment offers lots of flexibility to accommodate different target scenarios. For an initial target integration, we recommend that you pursue the simplest STRIDE configuration that will yield results. Once this configuration is successfully integrated you can make adjustments as desired.

Integrating STRIDE Into Your Target Build

To add the STRIDE Runtime to your build process, the following changes must be made:

  • Secure a PAL targeted to your target operating system
  • Configure the PAL I/O parameters to conform the your target hardware
  • Include the STRIDE runtime source files in the software build
  • Edit your target application's source code to start the runtime and I/O thread(s)

Securing a PAL

The Platform Abstraction Layer (PAL) provides the glue between the STRIDE Runtime and services offered by your OS. It is the only piece of the runtime that is customized between operating systems.

Fully tested PALs are provided for Posix and Windows, included as palcfg.h, palIO.c and palOS.c in their respective SDK.

Configuring PAL I/O parameters

If your target will communicate with the host computer via the default of TCP/IP port 8000, you can skip this step.

Otherwise, refer to palcfg.h that comes with your PAL for a list of configuration parameters.

Including the STRIDE Runtime

The STRIDE Runtime is distributed in source form. The source files are included with each SDK under "Runtime" directory. Files in that directories should be included in your target build.

If you are using an S2-supplied SDK, additional required sources can be found in the SDK's src directory:

  • PAL implementation
    • palcfg.h
    • palIO.c
    • palOS.c
  • Convenience functions (these wrap low-level PAL/Runtime calls)
    • stride.c
    • stride.h
  • Build script
    • Makefile

The build script (Makefile) supplied with an SDK allows building of the runtime source into a library that could then be linked with the target application.

C/C++ Feature Support

By default the C source in the Runtime was written with the presumption that the target C compiler and C Runtime (CRT) library supports wchar_t, long long, long double, safe snprintf, and variadic macros

By default the C++ source in the Runtime was written with the presumption that the target C++ compiler can handle namespaces and exceptions.

If desired the user can specify different configuration by using -D compiler options:

-DsrCRT_HAS_WCHAR_T=<0|1>
-DsrCRT_HAS_LONG_LONG=<0|1>
-DsrCRT_HAS_LONG_DBL=<0|1>
-DsrCRT_HAS_SNPRINTF=<0|1>
-DsrCRT_HAS_VA_ARGS=<0|1>
-DsrCPP_HAS_NAMESPACE=<0|1> 
-DsrCPP_HAS_EXCEPTION=<0|1>

where 0=disabled and 1=enabled.

STRIDE Feature Control

Any application's source file referencing STRIDE source should be compiled with addition STRIDE_ENABLED switch (preprocessor directive):

cc -DSTRIDE_ENABLED=1 file.c

The definition of the STRIDE_ENABLED macro controls all STRIDE-related sources and macros. If undefined (or defined as zero), STRIDE-related sources are excluded and STRIDE-related macros are left undefined. This provides a simple means of including and excluding test-related entities in your production build.

Target Source Changes

Your target source must be edited to include code that initializes and uninitializes the runtime. The code is typically added to your main() function, but the only requirement is that the initialization takes place before the host computer connects and the uninitialization occurs before the process terminates.

Please refer to the standard pre-packaged SDK for examples of a startup sequence. Briefly it should be something like:

/* STRIDE runtime includes */
#include <stride.h>
 
int main(int argc, char **argv)
{
    ...
 
    /* initialize the STRIDE subsytem using default I/O */
#ifdef __cplusplus
    strideIO_t io = {strideIO_t::strideDEFAULT};
#else
    strideIO_t io = {strideDEFAULT};
#endif
    if (strideInit(&io) != srTRUE)
        return -1;
 
    /* start any IM thread */
    ...

    /* target application code here */
    ...
 
    /* stop all STRIDE threads and uninitialize STRIDE subsystem */
    strideUninit();

    return 0;   
}

If you implement a custom PAL then here is an example of the startup code using direct PAL and STRIDE Runtime API calls instead of the stride.c/.h wrappers provided by the SDK:

/* STRIDE runtime includes */
#include <palcfg.h>
#include <sr.h>

int main(int argc, char **argv)
{
    palDWORD dwRTNID;

    ...

    /* initialize the PAL handler */
    if (palOSInit() != palTRUE) 
        return -1;

    /* initialize the PAL IO handler */
    if (palIOInit(PAL_DEFAULT_DEVICE_NAME) != palTRUE) 
    {
        palOSUninit();
        return -1;
    }

    /* initialize STRIDE Runtime */
    if (srInit() != srOK)
    {
        palIOShutdown();
        srUninit();
        palOSUninit();
        return -1;
    }

    /* start the Runtime thread first */
    palDWORD dwRTNID = /* create thread with function srThread() */;
    if (dwRTNID == 0) 
    {
        palIOShutdown();
        srUninit();
        palOSUninit();
        return -1;
    }

    /* start any IM thread */
    ...

    /* target application code here */
    ...

    /* stop all IM threads */
    ...

    /* stop Runtime thread */
    palNotify(dwRTNID, palSTOP_EVENT);

    /* uninitialize STRIDE subsystem */
    palIOShutdown();
    srUninit();
    palOSUninit();

    return 0;   
}

Testing the Runtime Integration

Once the instrumented target is successfully built, start the target application. On a separate host computer, connected to the target via TCP/IP (or serial port if so configured), run stride as follows (substitute the --device option argument as needed):

stride --diagnostics --device=<device_address>

By specifying --diagnostics without also specifying a database, we instruct stride to test for connectivity with the target.

If all is well, the following will be output to the host window (the reported runtime version may be different than that shown):

Connecting to device...
  runtime version: 5.x.yy
Disconnecting from device...