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
|
#ifndef __X_HANDLE__
#define __X_HANDLE__
/*
* Copyright (C) 2005-2008 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#ifndef _WIN32
#include "../../guilib/StdString.h"
#include <SDL/SDL_mutex.h>
#include <pthread.h>
#include "PlatformDefs.h"
#include "StringUtils.h"
struct CXHandle {
public:
typedef enum { HND_NULL = 0, HND_FILE, HND_EVENT, HND_MUTEX, HND_THREAD, HND_FIND_FILE } HandleType;
CXHandle();
CXHandle(HandleType nType);
virtual ~CXHandle();
void Init();
inline HandleType GetType() { return m_type; }
void ChangeType(HandleType newType);
SDL_sem *m_hSem;
pthread_t m_hThread;
bool m_threadValid;
SDL_cond *m_hCond;
#ifdef __APPLE__
// Save the Mach thrad port, I don't think it can be obtained from
// the pthread_t. We'll use it for querying timer information.
//
mach_port_t m_machThreadPort;
#endif
// simulate mutex and critical section
SDL_mutex *m_hMutex;
int RecursionCount; // for mutex - for compatibility with WIN32 critical section
pthread_t OwningThread;
int fd;
bool m_bManualEvent;
time_t m_tmCreation;
CStdStringArray m_FindFileResults;
int m_nFindFileIterator;
CStdString m_FindFileDir;
off64_t m_iOffset;
bool m_bCDROM;
bool m_bEventSet;
int m_nRefCount;
SDL_mutex *m_internalLock;
protected:
HandleType m_type;
static int m_objectTracker[10];
};
#define HANDLE CXHandle*
bool CloseHandle(HANDLE hObject);
#endif
#endif
|