urtware / src / urt_topic.c @ 37cd5dc2
History | View | Annotate | Download (4.04 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 |
/******************************************************************************/
|
41 |
/* LOCAL FUNCTIONS */
|
42 |
/******************************************************************************/
|
43 |
|
44 |
/******************************************************************************/
|
45 |
/* EXPORTED FUNCTIONS */
|
46 |
/******************************************************************************/
|
47 |
|
48 |
/**
|
49 |
* @brief Initialize the topic.
|
50 |
*
|
51 |
* @param[in] topic The topic to initialize. Must not be NULL.
|
52 |
* @param[in] id Unique, numeric identifier of the topic.
|
53 |
* @param[in] mandatoryMessage Starting message of the topic. Must not be NULL.
|
54 |
*
|
55 |
* @return Returns URT_STATUS_OK on success.
|
56 |
* Returns URT_STATUS_TOPIC_DUPLICATE if another topic with the same identifier already exists.
|
57 |
*/
|
58 |
urt_status_t urtTopicInit(urt_topic_t* topic, urt_topicid_t id, urt_message_t* mandatoryMessage) |
59 |
{ |
60 |
urtDebugAssert(topic); |
61 |
urtDebugAssert(mandatoryMessage); |
62 |
|
63 |
urt_topic_t.next = NULL;
|
64 |
urt_topic_t.id = id; |
65 |
urtMutexInit(topic->lock); |
66 |
urtEventSourceInit(topic->evtSource); |
67 |
urt_topic_t.numHrtSubscribers = 0;
|
68 |
urtCondvarInit(topic->hrtReleased); |
69 |
topic->mandatoryMessage = *mandatoryMessage; |
70 |
topic->latestMessage = &topic->mandatoryMessage; |
71 |
#if (URT_CFG_PUBSUB_QOS_RATECHECKS)
|
72 |
urt_topic_t.hrtSubscribers = nullptr; |
73 |
//add later: timer init;
|
74 |
#endif /* URT_CFG_PUBSUB_QOS_RATECHECKS */ |
75 |
#if (URT_CFG_PUBSUB_PROFILING)
|
76 |
urt_topic_t.numMessagesPublished = 0;
|
77 |
urt_topic_t.numMessagesDiscarded = 0;
|
78 |
urt_topic_t.numSubscribers = 0;
|
79 |
#endif /* URT_CFG_PUBSUB_PROFILING */ |
80 |
topic->latestMessage->next = topic->latestMessage; |
81 |
urtMutexLock(topic->lock); |
82 |
urt_topic_t* topicTemp = topic; |
83 |
while (topicTemp != NULL && topicTemp->id < id) |
84 |
topicTemp = topicTemp->next; |
85 |
|
86 |
if (topicTemp == NULL) |
87 |
{ |
88 |
//TODO: Append self to core's list of topic
|
89 |
urtMutexUnlock(topic->lock); |
90 |
return URT_STATUS_OK;
|
91 |
} |
92 |
else if (topicTemp->id > id) |
93 |
{ |
94 |
topicTemp->next = topic; |
95 |
urtMutexUnlock(topic->lock); |
96 |
return URT_STATUS_OK;
|
97 |
} |
98 |
else
|
99 |
{ |
100 |
urtMutexUnlock(topic->lock); |
101 |
return URT_STATUS_TOPIC_DUPLICATE;
|
102 |
} |
103 |
} |