blob: edaa9d60dcd51d490a68218aa7194ea31f5410eb [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
Cristyf6ff9ea2016-12-05 09:53:35 -05002 Copyright 1999-2017 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 dedicated to making software imaging solutions freely available.
4
5 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
7
Cristyf19d4142017-04-24 11:34:30 -04008 https://www.imagemagick.org/script/license.php
cristy3ed852e2009-09-05 21:47:34 +00009
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 MagickWand private application programming interface declarations.
17*/
Cristy83bceaa2016-06-03 20:39:35 -040018#ifndef MAGICKWAND_STUDIO_H
19#define MAGICKWAND_STUDIO_H
cristy3ed852e2009-09-05 21:47:34 +000020
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
cristy0157aea2010-04-24 21:12:18 +000025#if defined(WIN32) || defined(WIN64)
cristy87110812013-04-03 00:40:44 +000026# define MAGICKWAND_WINDOWS_SUPPORT
cristy0157aea2010-04-24 21:12:18 +000027#else
cristy87110812013-04-03 00:40:44 +000028# define MAGICKWAND_POSIX_SUPPORT
cristy0157aea2010-04-24 21:12:18 +000029#endif
cristy3ed852e2009-09-05 21:47:34 +000030
31#define MAGICKWAND_IMPLEMENTATION 1
32
Cristy83bceaa2016-06-03 20:39:35 -040033#if !defined(MAGICKWAND_CONFIG_H)
34# define MAGICKWAND_CONFIG_H
Cristy6ed46be2015-09-06 05:36:11 -040035# include "MagickCore/magick-config.h"
cristy3ed852e2009-09-05 21:47:34 +000036#if defined(MAGICKCORE__FILE_OFFSET_BITS) && !defined(_FILE_OFFSET_BITS)
37# define _FILE_OFFSET_BITS MAGICKCORE__FILE_OFFSET_BITS
38#endif
39#if defined(_magickcore_const) && !defined(const)
40# define const _magickcore_const
41#endif
42#if defined(_magickcore_inline) && !defined(inline)
43# define inline _magickcore_inline
44#endif
cristyba56db52011-05-20 02:08:11 +000045# if defined(__cplusplus) || defined(c_plusplus)
46# undef inline
47# endif
cristy3ed852e2009-09-05 21:47:34 +000048#endif
49
50#if !defined(const)
51# define STDC
52#endif
53
cristy3ed852e2009-09-05 21:47:34 +000054#if defined(__cplusplus) || defined(c_plusplus)
55# define storage_class c_class
56#else
57# define storage_class class
58#endif
59
cristy3ed852e2009-09-05 21:47:34 +000060#include <stdarg.h>
61#include <stdio.h>
cristya0b81c32010-01-22 02:54:33 +000062#if defined(MAGICKCORE_HAVE_SYS_STAT_H)
63# include <sys/stat.h>
64#endif
65#if defined(MAGICKCORE_STDC_HEADERS)
66# include <stdlib.h>
67# include <stddef.h>
68#else
69# if defined(MAGICKCORE_HAVE_STDLIB_H)
70# include <stdlib.h>
71# endif
72#endif
dirk05d2ff72015-11-18 23:13:43 +010073#if !defined(magick_restrict)
74# if !defined(_magickcore_restrict)
75# define magick_restrict restrict
76# else
77# define magick_restrict _magickcore_restrict
78# endif
cristy0f6fc2d2015-05-30 00:49:11 +000079#endif
cristya0b81c32010-01-22 02:54:33 +000080#if defined(MAGICKCORE_HAVE_STRING_H)
81# if !defined(STDC_HEADERS) && defined(MAGICKCORE_HAVE_MEMORY_H)
82# include <memory.h>
83# endif
84# include <string.h>
85#endif
86#if defined(MAGICKCORE_HAVE_STRINGS_H)
87# include <strings.h>
88#endif
89#if defined(MAGICKCORE_HAVE_INTTYPES_H)
90# include <inttypes.h>
91#endif
92#if defined(MAGICKCORE_HAVE_STDINT_H)
93# include <stdint.h>
94#endif
95#if defined(MAGICKCORE_HAVE_UNISTD_H)
96# include <unistd.h>
97#endif
cristy87110812013-04-03 00:40:44 +000098#if defined(MAGICKWAND_WINDOWS_SUPPORT) && defined(_DEBUG)
cristy3ed852e2009-09-05 21:47:34 +000099#define _CRTDBG_MAP_ALLOC
100#endif
cristy3ed852e2009-09-05 21:47:34 +0000101
cristy87110812013-04-03 00:40:44 +0000102#if defined(MAGICKWAND_WINDOWS_SUPPORT) && defined(_DEBUG)
cristya0b81c32010-01-22 02:54:33 +0000103#define _CRTDBG_MAP_ALLOC
cristy3ed852e2009-09-05 21:47:34 +0000104#endif
cristy87110812013-04-03 00:40:44 +0000105#if defined(MAGICKWAND_WINDOWS_SUPPORT)
cristyd9123432012-10-17 12:30:20 +0000106# include <io.h>
cristya0b81c32010-01-22 02:54:33 +0000107# include <direct.h>
108# if !defined(MAGICKCORE_HAVE_STRERROR)
109# define HAVE_STRERROR
110# endif
111#endif
112
cristy3ed852e2009-09-05 21:47:34 +0000113#include <ctype.h>
114#include <locale.h>
115#include <errno.h>
116#include <fcntl.h>
117#include <math.h>
118#include <time.h>
119#include <limits.h>
120#include <signal.h>
121#include <assert.h>
122
cristy38d73d62011-05-19 01:55:37 +0000123#if defined(MAGICKCORE_HAVE_XLOCALE_H)
124# include <xlocale.h>
125#endif
cristy55bf91c2010-09-24 00:29:41 +0000126#if defined(MAGICKCORE_THREAD_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000127# include <pthread.h>
cristy3ed852e2009-09-05 21:47:34 +0000128#endif
129#if defined(MAGICKCORE_HAVE_SYS_SYSLIMITS_H)
130# include <sys/syslimits.h>
131#endif
132#if defined(MAGICKCORE_HAVE_ARM_LIMITS_H)
133# include <arm/limits.h>
134#endif
135
cristy1579d812010-01-22 15:45:14 +0000136#if defined(MAGICKCORE__OPENCL)
cristyfe2e68f2010-01-09 19:16:03 +0000137#if defined(MAGICKCORE_HAVE_CL_CL_H)
cristy07425aa2009-09-20 22:59:24 +0000138# include <CL/cl.h>
cristy07425aa2009-09-20 22:59:24 +0000139#endif
cristyfe2e68f2010-01-09 19:16:03 +0000140#if defined(MAGICKCORE_HAVE_OPENCL_CL_H)
cristy07425aa2009-09-20 22:59:24 +0000141# include <OpenCL/cl.h>
cristy99cc3002010-01-21 14:50:11 +0000142#endif
cristy07425aa2009-09-20 22:59:24 +0000143# define MAGICKCORE_OPENCL_SUPPORT 1
144#endif
145
cristybffe7d32012-01-20 01:46:17 +0000146#if defined(_OPENMP) && ((_OPENMP >= 200203) || defined(__OPENCC__))
cristy3ed852e2009-09-05 21:47:34 +0000147# include <omp.h>
cristyb28d6472009-10-17 20:13:35 +0000148# define MAGICKCORE_OPENMP_SUPPORT 1
cristy3ed852e2009-09-05 21:47:34 +0000149#endif
150
151#if defined(MAGICKCORE_HAVE_PREAD) && defined(MAGICKCORE_HAVE_DECL_PREAD) && !MAGICKCORE_HAVE_DECL_PREAD
152ssize_t pread(int,void *,size_t,off_t);
153#endif
154
155#if defined(MAGICKCORE_HAVE_PWRITE) && defined(MAGICKCORE_HAVE_DECL_PWRITE) && !MAGICKCORE_HAVE_DECL_PWRITE
156ssize_t pwrite(int,const void *,size_t,off_t);
157#endif
158
159#if defined(MAGICKCORE_HAVE_STRLCPY) && defined(MAGICKCORE_HAVE_DECL_STRLCPY) && !MAGICKCORE_HAVE_DECL_STRLCPY
160extern size_t strlcpy(char *,const char *,size_t);
161#endif
162
163#if defined(MAGICKCORE_HAVE_VSNPRINTF) && defined(MAGICKCORE_HAVE_DECL_VSNPRINTF) && !MAGICKCORE_HAVE_DECL_VSNPRINTF
164extern int vsnprintf(char *,size_t,const char *,va_list);
165#endif
166
cristye7139e02012-02-29 12:42:18 +0000167#include "MagickWand/method-attribute.h"
168
cristy87110812013-04-03 00:40:44 +0000169#if defined(MAGICKWAND_WINDOWS_SUPPORT) || defined(MAGICKWAND_POSIX_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000170# include <sys/types.h>
171# include <sys/stat.h>
Cristy4bb3ba92016-04-24 14:28:07 -0400172# if defined(MAGICKCORE_HAVE_SYS_TIMEB_H)
cristy3ed852e2009-09-05 21:47:34 +0000173# include <sys/timeb.h>
174# endif
cristy87110812013-04-03 00:40:44 +0000175# if defined(MAGICKWAND_POSIX_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000176# if defined(MAGICKCORE_HAVE_SYS_NDIR_H) || defined(MAGICKCORE_HAVE_SYS_DIR_H) || defined(MAGICKCORE_HAVE_NDIR_H)
177# define dirent direct
178# define NAMLEN(dirent) (dirent)->d_namlen
179# if defined(MAGICKCORE_HAVE_SYS_NDIR_H)
180# include <sys/ndir.h>
181# endif
182# if defined(MAGICKCORE_HAVE_SYS_DIR_H)
183# include <sys/dir.h>
184# endif
185# if defined(MAGICKCORE_HAVE_NDIR_H)
186# include <ndir.h>
187# endif
188# else
189# include <dirent.h>
190# define NAMLEN(dirent) strlen((dirent)->d_name)
191# endif
192# include <sys/wait.h>
193# include <pwd.h>
194# endif
195# if !defined(S_ISDIR)
196# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
197# endif
198# if !defined(S_ISREG)
199# define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
200# endif
cristy4c08aed2011-07-01 19:47:50 +0000201# include "MagickWand/MagickWand.h"
cristy87110812013-04-03 00:40:44 +0000202# if !defined(MAGICKWAND_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000203# include <sys/time.h>
204# if defined(MAGICKCORE_HAVE_SYS_TIMES_H)
205# include <sys/times.h>
206# endif
207# if defined(MAGICKCORE_HAVE_SYS_RESOURCE_H)
208# include <sys/resource.h>
209# endif
cristy58945e42012-09-04 14:33:54 +0000210# if defined(MAGICKCORE_HAVE_SYS_MMAN_H)
211# include <sys/mman.h>
212# endif
cristy66988ab2015-05-30 17:20:38 +0000213# if defined(MAGICKCORE_HAVE_SYS_SENDFILE_H)
214# include <sys/sendfile.h>
215# endif
cristy3ed852e2009-09-05 21:47:34 +0000216#endif
217#else
218# include <types.h>
219# include <stat.h>
220# if defined(macintosh)
221# if !defined(DISABLE_SIOUX)
222# include <SIOUX.h>
223# include <console.h>
224# endif
225# include <unix.h>
226# endif
cristy3ed852e2009-09-05 21:47:34 +0000227#endif
228
229#if defined(S_IRUSR) && defined(S_IWUSR)
230# define S_MODE (S_IRUSR | S_IWUSR)
cristy87110812013-04-03 00:40:44 +0000231#elif defined (MAGICKWAND_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000232# define S_MODE (_S_IREAD | _S_IWRITE)
233#else
234# define S_MODE 0600
235#endif
236
cristy87110812013-04-03 00:40:44 +0000237#if defined(MAGICKWAND_WINDOWS_SUPPORT)
cristy4c08aed2011-07-01 19:47:50 +0000238# include "MagickCore/nt-base.h"
cristy3ed852e2009-09-05 21:47:34 +0000239#endif
cristy3ed852e2009-09-05 21:47:34 +0000240
241#undef HAVE_CONFIG_H
242#undef gamma
243#undef index
244#undef pipe
245#undef y1
246
247/*
248 Review these platform specific definitions.
249*/
cristy87110812013-04-03 00:40:44 +0000250#if defined(MAGICKWAND_POSIX_SUPPORT) && !defined(__OS2__)
cristy3ed852e2009-09-05 21:47:34 +0000251# define DirectorySeparator "/"
252# define DirectoryListSeparator ':'
253# define EditorOptions " -title \"Edit Image Comment\" -e vi"
254# define Exit exit
255# define IsBasenameSeparator(c) ((c) == '/' ? MagickTrue : MagickFalse)
256# define X11_PREFERENCES_PATH "~/."
257# define ProcessPendingEvents(text)
258# define ReadCommandlLine(argc,argv)
259# define SetNotifyHandlers
260#else
cristy3ed852e2009-09-05 21:47:34 +0000261# if defined(__OS2__)
262# define DirectorySeparator "\\"
263# define DirectoryListSeparator ';'
264# define EditorOptions " -title \"Edit Image Comment\" -e vi"
265# define Exit exit
266# define IsBasenameSeparator(c) \
267 (((c) == '/') || ((c) == '\\') ? MagickTrue : MagickFalse)
268# define PreferencesDefaults "~\."
269# define ProcessPendingEvents(text)
270# define ReadCommandlLine(argc,argv)
271# define SetNotifyHandlers
272#endif
cristy87110812013-04-03 00:40:44 +0000273# if defined(MAGICKWAND_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000274# define DirectorySeparator "\\"
275# define DirectoryListSeparator ';'
276# define EditorOptions ""
277# define IsBasenameSeparator(c) \
278 (((c) == '/') || ((c) == '\\') ? MagickTrue : MagickFalse)
279# define ProcessPendingEvents(text)
280# if !defined(X11_PREFERENCES_PATH)
281# define X11_PREFERENCES_PATH "~\\."
282# endif
283# define ReadCommandlLine(argc,argv)
284# define SetNotifyHandlers \
285 SetErrorHandler(NTErrorHandler); \
286 SetWarningHandler(NTWarningHandler)
cristy3ed852e2009-09-05 21:47:34 +0000287# if !defined(MAGICKCORE_HAVE_TIFFCONF_H)
288# define HAVE_TIFFCONF_H
289# endif
290# endif
291
292#endif
293
294/*
295 Define system symbols if not already defined.
296*/
297#if !defined(STDIN_FILENO)
298#define STDIN_FILENO 0x00
299#endif
300
301#if !defined(O_BINARY)
302#define O_BINARY 0x00
303#endif
304
cristy104cea82009-10-25 02:26:51 +0000305#if !defined(PATH_MAX)
306#define PATH_MAX 4096
307#endif
308
cristy3ed852e2009-09-05 21:47:34 +0000309/*
dirk93b02b72013-11-16 16:03:36 +0000310 Magick defines.
311*/
312#if defined(_MSC_VER)
313# define DisableMSCWarning(nr) __pragma(warning(push)) \
314 __pragma(warning(disable:nr))
315# define RestoreMSCWarning __pragma(warning(pop))
316#else
317# define DisableMSCWarning(nr)
318# define RestoreMSCWarning
319#endif
320
cristy3ed852e2009-09-05 21:47:34 +0000321#if defined(__cplusplus) || defined(c_plusplus)
322}
323#endif
324
325#endif