hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
 * Copyright 2018 Rockchip Electronics Co. LTD
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * author: martin.cheng@rock-chips.com
 *   date: 20180719
 */
 
#include "rt_header.h" // NOLINT
 
#ifndef INCLUDE_RT_BASE_RT_MUTEX_H_
#define INCLUDE_RT_BASE_RT_MUTEX_H_
 
#define RET_CHECK_REF(ref, ret) \
    do { \
        if (ref->isExited()) \
            return ret; \
    } while (0)
 
 
typedef void *(*RTPthreadCallback)(void *);
 
class RtMutex;
class RtCondition;
 
/*
 * for shorter type name and function name
 */
class RtMutex {
 public:
    RtMutex();
    ~RtMutex();
 
    void lock();
    void unlock();
    int  trylock();
 
    class RtAutolock {
     public:
        explicit inline RtAutolock(RtMutex& rtMutex)     // NOLINT
                : mLock(rtMutex) {
            mLock.lock();
        }
        explicit inline RtAutolock(RtMutex* rtMutex)
                : mLock(*rtMutex) {
            mLock.lock();
        }
        inline ~RtAutolock() { mLock.unlock(); }
 
     private:
        RtMutex& mLock;
    };
 
 private:
    friend class RtCondition;
 
    void* mData;
 
    RtMutex(const RtMutex &);
    RtMutex &operator = (const RtMutex&);
};
 
typedef RtMutex::RtAutolock RtAutoMutex;
 
/*
 * for shorter type name and function name
 */
class RtCondition {
 public:
    RtCondition();
    explicit RtCondition(int type);
    ~RtCondition();
 
    /*These functions atomically release mutex,
      but block on the condition variable*/
    INT32 wait(const RtMutex& rtMutex);
    INT32 wait(RtMutex* rtMutex);
 
    /*returns with the timeout error*/
    INT32 timedwait(const RtMutex& rtMutex, UINT64 timeout_us);
    INT32 timedwait(RtMutex* rtMutex, UINT64 timeout_us);
 
    /*This wakes up at least one thread blocked on the condition variable*/
    INT32 signal();
 
    /*This wakes up all of the threads blocked on the condition variable*/
    INT32 broadcast();
 
 private:
    void* mData;
};
 
class RtSemaphore {
 public:
    RtSemaphore();
    ~RtSemaphore();
 
    INT32 init(INT32 pshared, UINT32 value);
    INT32 getValue(int *val);
    INT32 tryWait();
    INT32 wait();
    INT32 post();
 
 private:
    void* mData;
};
 
class RtReference {
 public:
    RtReference();
    ~RtReference();
    void addRef();
    void decRef();
    void wait();
    void waitExit();
    void reset();
    RT_BOOL isExited();
    INT32 getRefValue();
 
 private:
    RT_BOOL       mIsExit;
    INT32         mRefNum;
    RtCondition  *mCond;
    RtMutex      *mLock;
};
 
class RtAutoRef {
 public:
    explicit inline RtAutoRef(RtReference* ref)
            : mRef(ref) {
       mRef->addRef();
    }
 
    inline ~RtAutoRef() {
        mRef->decRef();
    }
 
 private:
    RtReference* mRef;
};
 
 
#endif  // INCLUDE_RT_BASE_RT_MUTEX_H_