urtware / doc / activitydiagrams / request / srtrequest / urtSrtRequestSubmit.uml @ 17d978fe
History | View | Annotate | Download (3.699 KB)
1 | 2d315870 | Thomas Schöpping | /' |
---|---|---|---|
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 | /'### INTRO ##################################################################'/ |
||
23 | |||
24 | @startuml |
||
25 | |||
26 | title **µRtWare**\nurtSrtRequestSubmit()\n |
||
27 | |||
28 | /'### PARAMETERS & RETURN ####################################################'/ |
||
29 | |||
30 | note |
||
31 | -- **request** : urt_srtrequest_t* -- |
||
32 | The request to be used for this call. |
||
33 | Must not be ""NULL"". |
||
34 | Must have been acquired before. |
||
35 | -- **service** : urt_service_t* -- |
||
36 | The service to be called. |
||
37 | Must not be ""NULL"". |
||
38 | ==== |
||
39 | -- **return** : urt_status_t -- |
||
40 | Always returns ""URT_STATUS_OK"". |
||
41 | endnote |
||
42 | |||
43 | /'### PROCEDURE ##############################################################'/ |
||
44 | |||
45 | start |
||
46 | :lock service; |
||
47 | fork |
||
48 | partition "enqueue request" { |
||
49 | fork |
||
50 | if (Service already holds requests?) then (yes) |
||
51 | if (Service already holds FRT or SRT requests?) then (yes) |
||
52 | partition "append to FRT/SRT requests" { |
||
53 | :access last queued FRT/SRT request; |
||
54 | fork |
||
55 | :set ""next"" pointer of this request to ""next"" of queued request; |
||
56 | fork again |
||
57 | :set ""prev"" pointer of this request to of queued request; |
||
58 | fork again |
||
59 | :set ""next"" pointer of queued request to this request; |
||
60 | fork again |
||
61 | :set ""prev"" pointer of next request to this request; |
||
62 | endfork |
||
63 | } |
||
64 | elseif (Service already holds HRT requests?) then (yes) |
||
65 | partition "enqueue after last HRT request" { |
||
66 | :access last queued HRT request; |
||
67 | fork |
||
68 | :set ""next"" pointer of this request to ""next"" of queued request; |
||
69 | fork again |
||
70 | :set ""prev"" pointer of this request to of queued request; |
||
71 | fork again |
||
72 | :set ""next"" pointer of queued request to this request; |
||
73 | fork again |
||
74 | :set ""prev"" pointer of next request to this request; |
||
75 | endfork |
||
76 | } |
||
77 | else (no) |
||
78 | partition "enqueue in fron of NRT requests" { |
||
79 | :access first queued request; |
||
80 | fork |
||
81 | :set ""next"" pointer of this request to queued request; |
||
82 | fork again |
||
83 | :set ""prev"" pointer of queued request to this request; |
||
84 | fork again |
||
85 | :set the ""requestQueue_front"" pointer to this request; |
||
86 | endfork |
||
87 | } |
||
88 | endif |
||
89 | else (no) |
||
90 | fork |
||
91 | :set the ""requestQueue_front"" pointer to this request; |
||
92 | fork again |
||
93 | :set the ""requestQueue_back"" pointer to this request; |
||
94 | endfork |
||
95 | endif |
||
96 | fork again |
||
97 | :set the ""requestQueue_fsrtBack"" pointer to this request; |
||
98 | endfork |
||
99 | } |
||
100 | fork again |
||
101 | :set the service as request owner; |
||
102 | endfork |
||
103 | :unlock request; |
||
104 | :fire event (@service); |
||
105 | :unlock service; |
||
106 | stop |
||
107 | note |
||
108 | Returns ""URT_STATUS_OK"". |
||
109 | endnote |
||
110 | |||
111 | /'### OUTRO ##################################################################'/ |
||
112 | |||
113 | @enduml |