]> git.xonotic.org Git - xonotic/gmqcc.git/blob - platform.h
More documentation for platform.h
[xonotic/gmqcc.git] / platform.h
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23
24 #ifndef GMQCC_PLATFORM_HDR
25 #define GMQCC_PLATFORM_HDR
26
27 #ifndef GMQCC_PLATFORM_HEADER
28 #   error "This header shouldn't be included!"
29 #endif
30
31 #undef GMQCC_PLATFORM_HEADER
32 #include <stdarg.h>
33 #include <time.h>
34 #include <stdio.h>
35
36 #ifdef _WIN32
37 #   ifndef STDERR_FILENO
38 #       define STDERR_FILENO 2
39 #   endif
40 #   ifndef STDOUT_FILENO
41 #       define STDOUT_FILENO 1
42 #   endif
43 #   ifndef __MINGW32__
44 #       define _WIN32_LEAN_AND_MEAN
45 #       include <windows.h>
46 #       include <io.h>
47 #       include <fcntl.h>
48
49         struct dirent {
50             long               d_ino;
51             unsigned short     d_reclen;
52             unsigned short     d_namlen;
53             char               d_name[FILENAME_MAX];
54         };
55
56         typedef struct {
57             struct _finddata_t dd_dta;
58             struct dirent      dd_dir;
59             long               dd_handle;
60             int                dd_stat;
61             char               dd_name[1];
62         } DIR;
63
64 #       ifdef S_ISDIR
65 #           undef  S_ISDIR
66 #       endif /*! S_ISDIR */
67 #       define S_ISDIR(X) ((X)&_S_IFDIR)
68 #   else
69 #       include <dirent.h>
70 #   endif /*!__MINGW32__*/
71 #else
72 #   include <sys/types.h>
73 #   include <sys/stat.h>
74 #   include <unistd.h>
75 #   include <dirent.h>
76 #endif /*!_WIN32*/
77
78 /*
79  * Function: platform_vsnprintf
80  *  Write formatted output using a pointer to a lis of arguments.
81  *
82  * Parameters:
83  *  buffer - Storage location for output.
84  *  bytes  - Maximum number of characters to write.
85  *  format - Format specification.
86  *  arg    - Variable argument list.
87  *
88  * Returns:
89  *  The number of characters written if the number of characters to write
90  *  is less than or equal to `bytes`; if the number of characters to write
91  *  is greater than `bytes`, this function returns -1 indicating that the
92  *  output has been truncated. The return value does not include the
93  *  terminating null, if one is written.
94  *
95  * Remarks:
96  *  Function takes pointer to an argument list, then formats the data,
97  *  and writes up to `bytes` characters to the memory pointed to by
98  *  `buffer`. If there is room at the end (that is, if the number of
99  *  character to write is less than `bytes`), the buffer will be null-terminated.
100  */
101 int platform_vsnprintf(char *buffer, size_t bytes, const char *format, va_list arg);
102
103 /*
104  * Function: platform_vsscanf
105  *  Reads formatted data from a string.
106  *
107  * Parameters:
108  *  buffer - Stored data to read.
109  *  format - Format specification.
110  *  arg    - Variable argument list.
111  *
112  * Returns:
113  *  The number of fields that are successfully converted and assigned;
114  *  the return value does not include fields that were read but not
115  *  assigned. A return vlaue of 0 indicated that no fields were assigned.
116  *  The return value if EOF for error or if the end of the string is
117  *  reached before the first conversion.
118  *
119  * Remarks:
120  *  Reads data from `buffer` into the locations that are given by each
121  *  argument in the `arg` argument list. Every argument in the list must
122  *  be a pointer to a variable that has a type that corresponds to a
123  *  type specifier in `format`. The `format` argument controls th
124  *  interpretation of the input fields and has the same form and function
125  *  as the `format` argument for the *scanf* function. If copying takes
126  *  place between strings that overlap, the behaviour is undefined.
127  */
128 int platform_vsscanf(const char *buffer, const char *format, va_list arg);
129
130 /*
131  * Function: platform_localtime
132  *  Convert a time value and correct for the local time zone.
133  *
134  * Parameters
135  *  timer - Pointer to stored time.
136  *
137  * Returns:
138  *  A pointer to a structure result, or NULL if the date passed to
139  *  the function is before midnight, January 1, 1970.
140  */
141 const struct tm *platform_localtime(const time_t *timer);
142
143 /*
144  * Function: platform_ctime
145  *  Convert a time value to a string and adjust for local time zone
146  *  settings.
147  *
148  * Parameters:
149  *  timer - Pointer to stored time.
150  *
151  * Returns:
152  *  Pointer to the character string result. NULL will be returned if time
153  *  represents a date before midnight, January 1, 1970, UTC.
154  *
155  * Remarks:
156  *  Converts a time value stored as a `time_t` value into a chracter string.
157  *  The `timer` value is usually obtained from a call to *time*, which returns
158  *  the number of seconds since midnight, January 1, 1970 UTC. The return
159  *  value of the string contains exactly 26 characters. A 24-hour clock is used.
160  *  All fields have constant width. The newline chracter and the null character
161  *  occupy the last two positions of the string. The converted character string
162  *  is also adjusted according to the local time zone settings.
163  */
164 const char *platform_ctime(const time_t *timer);
165
166 /*
167  * Function: platform_strncat
168  *  Append characters of a string.
169  *
170  * Parameters:
171  *  dest - Null terminated destination string
172  *  src  - Source string
173  *  num  - Number of characters to append
174  *
175  * Returns:
176  *  Pointer to the destination string. No return value is used to indicate
177  *  an error.
178  *
179  * Remarks:
180  *  Function appends, at mode, the first `num` characters of `src` to
181  *  `dest`. The initial character of `src` overwrites the terminating
182  *  null chracter of `dest`. If a null character appears in `src` before
183  *  `num` chracters are appended, `platform_strncat` appends all chracters
184  *  from `src`, up to the null chracter. If `num` is greater than the
185  *  length of `src`, the length of `src` is used in place of `num`.
186  */
187 char *platform_strncat(char *dest, const char *src, size_t num);
188
189 /*
190  * Function: platform_tmpnam
191  *  Generates names you can use to create temporary files.
192  *
193  * Parameters:
194  *  str - Pointer that will hold the generated name and will be identical
195  *        to the name returned by the function. This is a convenient way
196  *        to save the generated name.
197  *
198  * Returns:
199  *  Pointer to the name generate or *NULL* if there is a failure. Failure
200  *  can occur if you attempt more than TMP_MAX calls.
201  *
202  * Remarks:
203  *  Returns a name unique in the current workign directory.
204  */
205 const char *platform_tmpnam(char *str);
206
207 /*
208  * Function: platform_getenv
209  *  Get a value from the current enviroment.
210  *
211  * Parameters:
212  *  var - Enviroment variable name
213  *
214  * Returns:
215  *  A pointer to the enviroment table entry containing `var. It's not
216  *  safe to modify the value of the enviroment variable using the returned
217  *  pointer. The return value is *NULL* if `var` is not found in the
218  *  enviroment table.
219  */
220 const char *platform_getenv(char *var);
221
222 int platform_vasprintf(char **dat, const char *fmt, va_list args);
223 int platform_vfprintf(FILE *stream, const char *format, va_list arg);
224
225 /*
226  * Function: platform_strcat
227  *  Append characters of a string.
228  *
229  * Parameters:
230  *  dest - Null terminated destination string
231  *  src  - Source string
232  *
233  * Returns:
234  *  Pointer to the destination string. No return value is used to indicate
235  *  an error.
236  *
237  * Remarks:
238  *  Appens `src` to `dest` and terminates with resulting null character.
239  *  The initial character of `src` overwrites the terminating null
240  *  character of `dest`. The behaviour of platform_strcat is undefined
241  *  if the source and destination string overlap.
242  */
243 char *platform_strcat(char *dest, const char *src);
244
245 /*
246  * Function: platform_strncpy
247  *  Copys characters of one string to another.
248  *
249  * Parameters:
250  *  dest - Destination string.
251  *  src  - Source string.
252  *  num  - Number of characters to be copied.
253  *
254  * Returns:
255  *  `dest`. No return value is reserved to indicate an error.
256  *
257  * Remarks:
258  *  Copies the initial characters of `src` to `dest` and returns `dest`.
259  *  If `num` is less than or equal to the length of `src1 a null character
260  *  is not appended automatically to the copied string. If `num` is greater
261  *  than the length of `src`, the destination string is padded with null
262  *  characters up to length `num`. The behaviour of this function is undefined
263  *  if the source and destination strings overlap.
264  */
265 char *platform_strncpy(char *dest, const char *src, size_t num);
266
267 /*
268  * Function: platform_strerror
269  *  Get a system error message
270  *
271  * Parameters:
272  *  err - Error number.
273  *
274  * Returns:
275  *  A pointer to the error message
276  */
277 const char *platform_strerror(int err);
278
279 /*
280  * Function: platform_fopen
281  *  Opens a file
282  *
283  * Parameters:
284  *  filename - File name.
285  *  mode     - Kind of access that's enabled.
286  *
287  * Returns:
288  *  A pointer to the open file. A null pointer value indicates an error.
289  */
290 FILE *platform_fopen(const char *filename, const char *mode);
291
292 /*
293  * Function: platform_fread
294  *  Reads data from a stream
295  *
296  * Parameters:
297  *  ptr    - Storage location for data.
298  *  size   - Item size in bytes.
299  *  count  - Maximum number of items to be read.
300  *  stream - Pointer to stream
301  *
302  * Returns:
303  *  The number of full items actually read, which may be less than `count`
304  *  if an error occurs or if the end of the file is encountered before
305  *  reaching `count`. If `size` or `count` is 0, `platform_fread`
306  *  returns 0 and the buffer contents are unchanged.
307  */
308 size_t platform_fread(void *ptr, size_t size, size_t count, FILE *stream);
309
310 /*
311  * Function: platform_fwrite
312  *  Writes data to a stream
313  *
314  * Parameters:
315  *  ptr    - Pointer to data to be written.
316  *  size   - Item size in bytes.
317  *  count  - Maximum number of items to be read.
318  *  stream - Pointer to stream
319  *
320  * Returns:
321  *  The number of full items actually written, which may be less than
322  *  `count` if an error occurs. Also, if an error occurs, the
323  *  file-position indicator cannot be determined.
324  *
325  * Remarks:
326  *  Writes up to `count` items, of `size` length each, from `ptr` to the
327  *  output stream. The file pointer associated with stream (if there is one)
328  *  is incremented by the number of bytes actually written.
329  */
330 size_t platform_fwrite(const void *ptr, size_t size, size_t count, FILE *stream);
331
332 /*
333  * Function: platform_fflush
334  *  Flushes a stream
335  *
336  * Parameters:
337  *  stream - Pointer to stream
338  */
339 int platform_fflush(FILE *stream);
340
341 /*
342  * Function: platform_fclose
343  *  Closes a stream
344  *
345  * Parameters:
346  *  stream - Pointer to stream
347  */
348 int platform_fclose(FILE *stream);
349
350 int platform_ferror(FILE *stream);
351 int platform_fgetc(FILE *stream);
352 int platform_fputs(const char *str, FILE *stream);
353 int platform_fseek(FILE *stream, long offset, int origin);
354
355 long platform_ftell(FILE *stream);
356
357 /*
358  * Function: platform_mkdir
359  *  Make a directory
360  *
361  * Parameters:
362  *  path    - Path to create
363  *  mode    - The mode of the directory (implementation defined)
364  *
365  * Returns:
366  *  0 value. -1 value is used to indicate an error. On error no
367  *  directory shall be created.
368  *
369  * Remarks:
370  *  Shall create a new empty directory with with the name path specified
371  *  by argument `path.
372  */
373 int platform_mkdir(const char *path, int mode);
374
375 /*
376  * Function: platform_opendir
377  *  Open a directory
378  *
379  * Parameters:
380  *  path - Path to the directory to open
381  *
382  * Returns:
383  *  Pointer to an object of type *DIR*. A null pointer value indicates
384  *  an error.
385  *
386  * Remarks:
387  *  Shall open a directory stream corresponding to the directory named by
388  *  the `path` argument. The directory stream is positioned at the first entry.
389  */
390 DIR *platform_opendir(const char *path);
391
392 /*
393  * Function: platform_closedir
394  *  Close a directory stream
395  *
396  * Parameters:
397  *  dir - Pointer to directory stream
398  *
399  * Returns:
400  *  0 value. A -1 value indicated an error.
401  *
402  * Remarks:
403  *  Shall close the directory stream referred to by the argument
404  *  `dir`. Upon return, the value of `dir` may no longer point to
405  *  an accessible object of the type *DIR*.
406  */
407 int platform_closedir(DIR *dir);
408
409 /*
410  * Function: platform_readdir
411  *  Read directory
412  *
413  * Parameters:
414  *  dir - Pointer to directory stream
415  *
416  * Returns:
417  *  Pointer to an object of type `struct dirent`. A null pointer value
418  *  indicates an error.
419  *
420  * Remarks:
421  *  When the end of the directory is encountered, a null pointer is
422  *  returned.
423  */
424 struct dirent *platform_readdir(DIR *dir);
425
426 /*
427  * Function: platform_isatty
428  *  Determines whether a file descriptor is associated with a character
429  *  device.
430  *
431  * Returns:
432  *  A nonzero value if the descriptor is associated with a character
433  *  device. Otherwise `platform_isatty` returns 0.
434  */
435 int platform_isatty(int fd);
436
437 #endif