blob: 50ec0e38291d82447f1b57ed4bd0c6023f27cbbf [file] [log] [blame]
Ewout van Bekkum660ebba2020-11-11 13:40:10 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
Ewout van Bekkum6f5b8fb2021-04-06 16:15:22 -070015#include "pw_sync/timed_mutex.h"
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080016
17#include <algorithm>
18
19#include "FreeRTOS.h"
Wyatt Heplerf298de42021-03-19 15:06:36 -070020#include "pw_assert/check.h"
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080021#include "pw_chrono/system_clock.h"
22#include "pw_chrono_freertos/system_clock_constants.h"
23#include "pw_interrupt/context.h"
24#include "semphr.h"
25
26using pw::chrono::SystemClock;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080027
28namespace pw::sync {
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080029
Ewout van Bekkum6f5b8fb2021-04-06 16:15:22 -070030bool TimedMutex::try_lock_for(SystemClock::duration for_at_least) {
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080031 PW_DCHECK(!interrupt::InInterruptContext());
32
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080033 // Use non-blocking try_acquire for negative and zero length durations.
34 if (for_at_least <= SystemClock::duration::zero()) {
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080035 return try_lock();
36 }
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080037
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080038 // On a tick based kernel we cannot tell how far along we are on the current
39 // tick, ergo we add one whole tick to the final duration.
40 constexpr SystemClock::duration kMaxTimeoutMinusOne =
41 pw::chrono::freertos::kMaxTimeout - SystemClock::duration(1);
42 while (for_at_least > kMaxTimeoutMinusOne) {
Scott James Remnantd6f54752021-07-26 17:32:54 -070043 if (xSemaphoreTake(reinterpret_cast<SemaphoreHandle_t>(&native_handle()),
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080044 static_cast<TickType_t>(kMaxTimeoutMinusOne.count())) ==
45 pdTRUE) {
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080046 return true;
47 }
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080048 for_at_least -= kMaxTimeoutMinusOne;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080049 }
Scott James Remnantd6f54752021-07-26 17:32:54 -070050 return xSemaphoreTake(reinterpret_cast<SemaphoreHandle_t>(&native_handle()),
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080051 static_cast<TickType_t>(for_at_least.count() + 1)) ==
52 pdTRUE;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080053}
54
55} // namespace pw::sync