urtware / doc / activitydiagrams / request / frtrequest / urtFrtRequestSubmit.uml @ 2d315870
History | View | Annotate | Download (3.82 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 |
/'### INTRO ##################################################################'/ |
| 23 |
|
| 24 |
@startuml |
| 25 |
|
| 26 |
title **µRtWare**\nurtFrtRequestSubmit()\n |
| 27 |
|
| 28 |
/'### PARAMETERS & RETURN ####################################################'/ |
| 29 |
|
| 30 |
note |
| 31 |
-- **request** : urt_frtrequest_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 |
-- **deadline** : urt_delay_t -- |
| 39 |
Deadline offset until when this request is valid. |
| 40 |
==== |
| 41 |
-- **return** : urt_status_t -- |
| 42 |
Always returns ""URT_STATUS_OK"". |
| 43 |
endnote |
| 44 |
|
| 45 |
/'### PROCEDURE ##############################################################'/ |
| 46 |
|
| 47 |
start |
| 48 |
:set ""deadlineOffset"" to argument; |
| 49 |
:lock service; |
| 50 |
fork |
| 51 |
partition "enqueue request" {
|
| 52 |
fork |
| 53 |
if (Service already holds requests?) then (yes) |
| 54 |
if (Service already holds FRT or SRT requests?) then (yes) |
| 55 |
partition "append to FRT/SRT requests" {
|
| 56 |
:access last queued FRT/SRT request; |
| 57 |
fork |
| 58 |
:set ""next"" pointer of this request to ""next"" of queued request; |
| 59 |
fork again |
| 60 |
:set ""prev"" pointer of this request to of queued request; |
| 61 |
fork again |
| 62 |
:set ""next"" pointer of queued request to this request; |
| 63 |
fork again |
| 64 |
:set ""prev"" pointer of next request to this request; |
| 65 |
endfork |
| 66 |
} |
| 67 |
elseif (Service already holds HRT requests?) then (yes) |
| 68 |
partition "enqueue after last HRT request" {
|
| 69 |
:access last queued HRT request; |
| 70 |
fork |
| 71 |
:set ""next"" pointer of this request to ""next"" of queued request; |
| 72 |
fork again |
| 73 |
:set ""prev"" pointer of this request to of queued request; |
| 74 |
fork again |
| 75 |
:set ""next"" pointer of queued request to this request; |
| 76 |
fork again |
| 77 |
:set ""prev"" pointer of next request to this request; |
| 78 |
endfork |
| 79 |
} |
| 80 |
else (no) |
| 81 |
partition "enqueue in fron of NRT requests" {
|
| 82 |
:access first queued request; |
| 83 |
fork |
| 84 |
:set ""next"" pointer of this request to queued request; |
| 85 |
fork again |
| 86 |
:set ""prev"" pointer of queued request to this request; |
| 87 |
fork again |
| 88 |
:set the ""requestQueue_front"" pointer to this request; |
| 89 |
endfork |
| 90 |
} |
| 91 |
endif |
| 92 |
else (no) |
| 93 |
fork |
| 94 |
:set the ""requestQueue_front"" pointer to this request; |
| 95 |
fork again |
| 96 |
:set the ""requestQueue_back"" pointer to this request; |
| 97 |
endfork |
| 98 |
endif |
| 99 |
fork again |
| 100 |
:set the ""requestQueue_fsrtBack"" pointer to this request; |
| 101 |
endfork |
| 102 |
} |
| 103 |
fork again |
| 104 |
:set the service as request owner; |
| 105 |
endfork |
| 106 |
:unlock request; |
| 107 |
:fire event (@service); |
| 108 |
:unlock service; |
| 109 |
stop |
| 110 |
note |
| 111 |
Returns ""URT_STATUS_OK"". |
| 112 |
endnote |
| 113 |
|
| 114 |
/'### OUTRO ##################################################################'/ |
| 115 |
|
| 116 |
@enduml |