Statistics
| Branch: | Revision:

urtware / src / urt_node.c @ 792f6c74

History | View | Annotate | Download (6.54 KB)

1
/*
2
µRtWare is a lightweight publish/subscribe middleware for real-time
3
applications. It was developed as part of the software habitat for the
4
Autonomous Mini Robot [1] (AMiRo) but can be used for other purposes as well.
5

6
Copyright (C) 2018..2020  Thomas Schöpping et al.
7

8
This program is free software: you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation, either version 3 of the License, or
11
(at your option) any later version.
12

13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
GNU General Public License for more details.
17

18
You should have received a copy of the GNU General Public License
19
along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
*/
21

    
22
#include <urtware.h>
23

    
24
/******************************************************************************/
25
/* LOCAL DEFINITIONS                                                          */
26
/******************************************************************************/
27

    
28
/******************************************************************************/
29
/* EXPORTED VARIABLES                                                         */
30
/******************************************************************************/
31

    
32
/******************************************************************************/
33
/* LOCAL TYPES                                                                */
34
/******************************************************************************/
35

    
36
/******************************************************************************/
37
/* LOCAL VARIABLES                                                            */
38
/******************************************************************************/
39

    
40
urt_node_t localNode;
41
static  URT_THREAD_MEMORY(_node_thread, AMIROOS_CFG_SHELL_STACKSIZE);
42

    
43
/******************************************************************************/
44
/* LOCAL FUNCTIONS                                                            */
45
/******************************************************************************/
46

    
47
/**
48
 * @brief  Main function of a node.
49
 *
50
 * @param[in] arg  Optional Argument to the thread main function.
51
 */
52
void _main(void* arg)
53
{
54
  urt_osEventMask_t mask;
55
  urt_osEventFlags_t flag = 0;
56
  urtEventRegister(urtCoreGetEvtSource(), &localNode.listener, mask, flag);
57
  if (localNode.setupcallback != NULL)
58
  {
59
    mask = localNode.setupcallback(&localNode, arg);
60
    if (mask == urtCoreGetEventMask())
61
    {
62
        urtCoreStopNodes(URT_STATUS_NODE_INVALEVTMASK);
63
    }
64
  }
65
  else
66
  {
67
     mask = ALL_EVENTS;
68
  }
69

    
70
  if (urtCoreGetStatus() == URT_STATUS_OK)
71
  {
72
    urtCoreSynchronizeNodes(&localNode);
73
  }
74

    
75
  if (!urtThreadShouldTerminate())
76
  {
77
    urt_osEventMask_t temp = urtEventWait(mask, URT_EVENT_WAIT_ONE, URT_DELAY_INFINITE);
78
    if (temp == urtCoreGetEventMask())
79
    {
80
      localNode.loopcallback(&localNode, mask, arg);
81
      #if (URT_CFG_PUBSUB_PROFILING || URT_CFG_RPC_PROFILING)
82
        localNode.loops++;
83
      #endif /* URT_CFG_PUBSUB_PROFILING || URT_CFG_RPC_PROFILING */
84
      if (mask == urtCoreGetEventMask())
85
      {
86
        urtCoreStopNodes(URT_STATUS_NODE_INVALEVTMASK);
87
      }
88
    }
89
  }
90

    
91
  if (localNode.shutdowncallback)
92
  {
93
    localNode.shutdowncallback(&localNode, urtCoreGetStatus(), arg);
94
  }
95
  urtEventUnregister(urtCoreGetEvtSource(), &localNode.listener);
96

    
97

    
98
  urt_osThread_t* threadToTerminate = localNode.thread;
99
  while (threadToTerminate->children != NULL || threadToTerminate->sibling != NULL)
100
  {
101
    if (threadToTerminate->children != NULL)
102
      urtThreadTerminate(threadToTerminate->children, URT_THREAD_TERMINATE_REQUEST);
103
    if(threadToTerminate->sibling != NULL)
104
      urtThreadTerminate(threadToTerminate->sibling, URT_THREAD_TERMINATE_REQUEST);
105
  }
106
  urtThreadTerminate(&threadToTerminate, URT_THREAD_TERMINATE_REQUEST);
107

    
108
  return;
109
}
110

    
111
/******************************************************************************/
112
/* EXPORTED FUNCTIONS                                                         */
113
/******************************************************************************/
114

    
115
/**
116
 * @brief  Initalize a node.
117
 *
118
 * @param[in] node  The node to initialize. Must not be NULL.
119
 * @param[in] thread  The thread to intialize. Must be NULL.
120
 * @param[in] setupcallback  Callback function to be executed during setup.
121
 *                           May be NULL if no custom setup is required.
122
 * @param[in] setupparams  Parameters for the setup callback function.
123
 *                         Must be NULL if no setup callback is specified.
124
 *                         May be NULL if the specified setup callback does not expect parameters.
125
 * @param[in] loopcallback  Callback function to be executed in a loop.
126
 * @param[in] loopparams  Parameters for the loop callback function.
127
 *                        May be NULL if the specified loop callback does not expect parameters.
128
 * @param[in] shutdowncallback  Callback function to be executed during shutdown.
129
 *                              May be NULL if no custom shutdown is required.
130
 * @param[in] shutdownparams  Parameters for the loop callback function.
131
 *                            Must be NULL if no shutdown callback is specified.
132
 *                            May be NULL if the specified shutdown callback does not expect parameters.
133
 */
134
void urtNodeInit(urt_node_t* node, urt_osThread_t* thread, urt_nodeSetupCallback_t* setupcallback,
135
                 void* setupparams, urt_nodeLoopCallback_t* loopcallback, void* loopparams,
136
                 urt_nodeShutdownCallback_t* shutdowncallback, void* shutdownparams)
137
{
138
  urtDebugAssert(node != NULL);
139
  urtDebugAssert(thread == NULL);
140
  if (setupcallback == NULL)
141
    urtDebugAssert(setupparams == NULL);
142

    
143
  node->next = NULL;
144
  node->thread = urtThreadInit(_node_thread, sizeof(_node_thread), URT_THREAD_PRIO_NORMAL_MIN, _main, setupparams);
145
  node->setupcallback = setupcallback;
146
  node->setupparams = setupparams;
147
  node->loopcallback = loopcallback;
148
  node->loopparams = loopparams;
149
  node->shutdowncallback = shutdowncallback;
150
  node->shutdownparams = shutdownparams;
151
  node->stage = 0;
152
  urtEventListenerInit(node->listener);
153
  #if (URT_CFG_PUBSUB_PROFILING || URT_CFG_RPC_PROFILING)
154
    node->loops = 0;
155
  #endif /* URT_CFG_PUBSUB_PROFILING || URT_CFG_RPC_PROFILING */
156
  urt_osMutex_t* mutexTemp = urtCoreGetMutex();
157
  urtMutexLock(mutexTemp);
158
    node->next = urtCoreGetNodes();
159
    urt_node_t* nodeCore = urtCoreGetNodes();
160
    nodeCore = node;
161
  urtMutexUnlock(mutexTemp);
162
  localNode = *node;
163
  return;
164
}