• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef GR_H_
18 #define GR_H_
19 
20 #include <stdint.h>
21 #include <sys/user.h>
22 #include <limits.h>
23 #include <sys/cdefs.h>
24 #include <hardware/gralloc.h>
25 #include <pthread.h>
26 #include <errno.h>
27 #include <unistd.h>
28 
29 #include <cutils/native_handle.h>
30 
31 /*****************************************************************************/
32 
33 struct private_module_t;
34 struct private_handle_t;
35 
36 static const size_t kPageSize = getpagesize();
37 
roundUpToPageSize(size_t x)38 inline size_t roundUpToPageSize(size_t x) {
39     return (x + (kPageSize-1)) & ~(kPageSize-1);
40 }
41 
42 int mapFrameBufferLocked(struct private_module_t* module, int format);
43 int terminateBuffer(gralloc_module_t const* module, private_handle_t* hnd);
44 int mapBuffer(gralloc_module_t const* module, private_handle_t* hnd);
45 
46 /*****************************************************************************/
47 
48 class Locker {
49     pthread_mutex_t mutex;
50 public:
51     class Autolock {
52         Locker& locker;
53     public:
Autolock(Locker & locker)54         inline explicit Autolock(Locker& locker) : locker(locker) {  locker.lock(); }
~Autolock()55         inline ~Autolock() { locker.unlock(); }
56     };
Locker()57     inline Locker()        { pthread_mutex_init(&mutex, 0); }
~Locker()58     inline ~Locker()       { pthread_mutex_destroy(&mutex); }
lock()59     inline void lock()     { pthread_mutex_lock(&mutex); }
unlock()60     inline void unlock()   { pthread_mutex_unlock(&mutex); }
61 };
62 
63 #endif /* GR_H_ */
64