]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/missing.h
error check and bail if permission denied during gamepack install
[xonotic/netradiant.git] / libs / missing.h
1 /*
2    Copyright (c) 2001, Loki software, inc.
3    All rights reserved.
4
5    Redistribution and use in source and binary forms, with or without modification,
6    are permitted provided that the following conditions are met:
7
8    Redistributions of source code must retain the above copyright notice, this list
9    of conditions and the following disclaimer.
10
11    Redistributions in binary form must reproduce the above copyright notice, this
12    list of conditions and the following disclaimer in the documentation and/or
13    other materials provided with the distribution.
14
15    Neither the name of Loki software nor the names of its contributors may be used
16    to endorse or promote products derived from this software without specific prior
17    written permission.
18
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
20    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22    DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
23    DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26    ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef _MISSING_H_
32 #define _MISSING_H_
33
34 // NOTE TTimo
35 //   this goes along with str.h and provides various utility classes
36 //   and portability defines
37 //   the file name (missing.h) is a legacy issue, it would be better to clean that up
38 //   in a central 'portability' lib
39
40 #include <glib.h>
41 #include <string.h>
42
43 #ifdef _WIN32
44
45 #include <windows.h>
46 #include <direct.h>
47 #include <io.h>
48 #include <sys/types.h>
49 #include <sys/stat.h>
50
51 #define R_OK 04
52
53 #else // !_WIN32
54
55 // LZ: very ugly hacks
56 inline int GetLastError() { return 0; };
57
58 // temp stuff
59 inline int GetPrivateProfileInt( char* a, char* b, int i, char* c ) { return i; };
60 int GetFullPathName( const char *lpFileName, int nBufferLength, char *lpBuffer, char **lpFilePart );
61
62 #ifndef APIENTRY
63 #define APIENTRY
64 #endif
65
66 int MemorySize( void *ptr );
67 #define _msize MemorySize
68
69 #define MK_LBUTTON          0x0001
70 #define MK_RBUTTON          0x0002
71 #define MK_SHIFT            0x0004
72 #define MK_CONTROL          0x0008
73 #define MK_MBUTTON          0x0010
74
75 #include <dirent.h>
76 #include <iostream>
77
78 #endif
79
80 #define CString Str
81 #include "str.h"
82
83 class CPtrArray
84 {
85 public:
86 CPtrArray ()
87 { m_ptrs = g_ptr_array_new(); };
88 virtual ~CPtrArray ()
89 { g_ptr_array_free( m_ptrs, TRUE ); };
90
91 void* operator[]( int i ) const
92 { return g_ptr_array_index( m_ptrs,i ); };
93 void* GetAt( int i ) const
94 { return g_ptr_array_index( m_ptrs,i ); };
95 int GetSize() const
96 { return m_ptrs->len; };
97 void Add( void* ptr )
98 { g_ptr_array_add( m_ptrs, ptr ); };
99 void RemoveAll()
100 { g_ptr_array_set_size( m_ptrs, 0 ); };
101 void RemoveAt( int index, int count = 1 ){
102         if ( ( index < 0 ) || ( count < 0 ) || ( count + index > (int)m_ptrs->len ) ) {
103                 return;
104         }
105         for (; count > 0; count-- )
106                 g_ptr_array_remove_index( m_ptrs, index );
107 }
108 void InsertAt( int nStartIndex, CPtrArray* pNewArray ){
109         for ( int i = 0; i < pNewArray->GetSize(); i++ )
110                 InsertAt( nStartIndex + i, pNewArray->GetAt( i ) );
111 }
112 void InsertAt( int nIndex, void* newElement, int nCount = 1 ){
113         if ( (guint32)nIndex >= m_ptrs->len ) {
114                 g_ptr_array_set_size( m_ptrs, nIndex + nCount ); // grow so nIndex is valid
115         }
116         else
117         {
118                 // inserting in the middle of the array
119                 int nOldSize = m_ptrs->len;
120                 g_ptr_array_set_size( m_ptrs, m_ptrs->len + nCount );
121                 // shift old data up to fill gap
122                 memmove( &m_ptrs->pdata[nIndex + nCount], &m_ptrs->pdata[nIndex],
123                                  ( nOldSize - nIndex ) * sizeof( gpointer ) );
124
125                 memset( &m_ptrs->pdata[nIndex], 0, nCount * sizeof( gpointer ) );
126         }
127
128         // insert new value in the gap
129         while ( nCount-- )
130                 m_ptrs->pdata[nIndex++] = newElement;
131 }
132 void Copy( const CPtrArray& src ){
133         g_ptr_array_set_size( m_ptrs, src.m_ptrs->len );
134         memcpy( m_ptrs->pdata, src.m_ptrs->pdata, m_ptrs->len * sizeof( gpointer ) );
135 }
136
137 protected:
138 GPtrArray* m_ptrs;
139 };
140
141 typedef struct stringmap_s
142 {
143         char* key;
144         char* value;
145 } stringmap_t;
146
147 class CMapStringToString
148 {
149 public:
150 CMapStringToString ()
151 { m_map = g_ptr_array_new(); };
152 ~CMapStringToString (){
153         for ( guint32 i = 0; i < m_map->len; i++ )
154                 FreeElement( (stringmap_t*)g_ptr_array_index( m_map,i ) );
155         g_ptr_array_set_size( m_map, 0 );
156         g_ptr_array_free( m_map, TRUE );
157 };
158 void SetAt( char* key, char* newValue ){
159         for ( guint32 i = 0; i < m_map->len; i++ )
160         {
161                 stringmap_t* entry = (stringmap_t*)g_ptr_array_index( m_map,i );
162                 if ( strcmp( entry->key, key ) == 0 ) {
163                         g_free( entry->value );
164                         entry->value = g_strdup( newValue );
165                         return;
166                 }
167         }
168         stringmap_t* entry = (stringmap_t*)g_malloc( sizeof( stringmap_t ) );
169         entry->key = g_strdup( key );
170         entry->value = g_strdup( newValue );
171         g_ptr_array_add( m_map, entry );
172 }
173
174 bool Lookup( const char* key, CString& rValue ) const {
175         for ( guint32 i = 0; i < m_map->len; i++ )
176         {
177                 stringmap_t* entry = (stringmap_t*)g_ptr_array_index( m_map,i );
178                 if ( strcmp( entry->key, key ) == 0 ) {
179                         rValue = entry->value;
180                         return true;
181                 }
182         }
183         return false;
184 }
185
186 protected:
187 GPtrArray* m_map;
188
189 void FreeElement( stringmap_t* elem ){
190         g_free( elem->key );
191         g_free( elem->value );
192         g_free( elem );
193 };
194 };
195
196 class FindFiles {
197 public:
198 FindFiles( const char *directory );
199 ~FindFiles();
200
201 const char* NextFile();
202 private:
203 #ifdef _WIN32
204 Str directory;
205 HANDLE findHandle;
206 WIN32_FIND_DATA findFileData;
207 #else
208 DIR             * findHandle;
209 #endif
210 };
211
212 bool radCopyTree( const char* source, const char* dest, bool fatal_on_error = true );
213
214 typedef enum {
215         PATH_FAIL,      // stat call failed (does not exist is likely)
216         PATH_DIRECTORY,
217         PATH_FILE
218 } EPathCheck;
219
220 // check a path for existence, return directory / file
221 EPathCheck CheckFile( const char *path );
222
223 bool radCreateDirectory( const char *directory, bool fatal_on_error = true );
224 bool radCopyFile( const char *lpExistingFileName, const char *lpNewFileName, bool fatal_on_error = true );
225
226 #endif // _MISSING_H_