2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 % MagickCore Log Events %
20 % Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
28 % Unless required by applicable law or agreed to in writing, software %
29 % distributed under the License is distributed on an "AS IS" BASIS, %
30 % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31 % See the License for the specific language governing permissions and %
32 % limitations under the License. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 #include "MagickCore/studio.h"
43 #include "MagickCore/blob.h"
44 #include "MagickCore/client.h"
45 #include "MagickCore/configure.h"
46 #include "MagickCore/configure-private.h"
47 #include "MagickCore/exception.h"
48 #include "MagickCore/exception-private.h"
49 #include "MagickCore/hashmap.h"
50 #include "MagickCore/log.h"
51 #include "MagickCore/log-private.h"
52 #include "MagickCore/memory_.h"
53 #include "MagickCore/option.h"
54 #include "MagickCore/semaphore.h"
55 #include "MagickCore/timer.h"
56 #include "MagickCore/string_.h"
57 #include "MagickCore/string-private.h"
58 #include "MagickCore/token.h"
59 #include "MagickCore/thread_.h"
60 #include "MagickCore/thread-private.h"
61 #include "MagickCore/utility.h"
62 #include "MagickCore/utility-private.h"
63 #include "MagickCore/version.h"
64 #include "MagickCore/xml-tree.h"
69 #define LogFilename "log.xml"
76 UndefinedHandler = 0x0000,
78 ConsoleHandler = 0x0001,
79 StdoutHandler = 0x0002,
80 StderrHandler = 0x0004,
82 DebugHandler = 0x0010,
86 typedef struct _EventInfo
95 typedef struct _HandlerInfo
140 typedef struct _LogMapInfo
156 static const HandlerInfo
159 { "Console", ConsoleHandler },
160 { "Debug", DebugHandler },
161 { "Event", EventHandler },
162 { "File", FileHandler },
163 { "None", NoHandler },
164 { "Stderr", StderrHandler },
165 { "Stdout", StdoutHandler },
166 { (char *) NULL, UndefinedHandler }
169 static const LogMapInfo
172 { NoEvents, ConsoleHandler, "Magick-%g.log",
173 "%t %r %u %v %d %c[%p]: %m/%f/%l/%d\\n %e" }
177 log_name[MaxTextExtent] = "Magick";
179 static LinkedListInfo
180 *log_list = (LinkedListInfo *) NULL;
183 *log_semaphore = (SemaphoreInfo *) NULL;
185 static volatile MagickBooleanType
186 instantiate_log = MagickFalse;
189 Forward declarations.
191 static LogHandlerType
192 ParseLogHandlers(const char *);
195 *GetLogInfo(const char *,ExceptionInfo *);
197 static MagickBooleanType
198 InitializeLogList(ExceptionInfo *),
199 LoadLogLists(const char *,ExceptionInfo *);
202 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
206 % C l o s e M a g i c k L o g %
210 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
212 % CloseMagickLog() closes the Magick log.
214 % The format of the CloseMagickLog method is:
216 % CloseMagickLog(void)
219 MagickExport void CloseMagickLog(void)
227 if (IsEventLogging() == MagickFalse)
229 exception=AcquireExceptionInfo();
230 log_info=GetLogInfo("*",exception);
231 exception=DestroyExceptionInfo(exception);
232 LockSemaphoreInfo(log_semaphore);
233 if (log_info->file != (FILE *) NULL)
235 (void) FormatLocaleFile(log_info->file,"</log>\n");
236 (void) fclose(log_info->file);
237 log_info->file=(FILE *) NULL;
239 UnlockSemaphoreInfo(log_semaphore);
243 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
247 + G e t L o g I n f o %
251 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
253 % GetLogInfo() searches the log list for the specified name and if found
254 % returns attributes for that log.
256 % The format of the GetLogInfo method is:
258 % LogInfo *GetLogInfo(const char *name,ExceptionInfo *exception)
260 % A description of each parameter follows:
262 % o name: the log name.
264 % o exception: return any errors or warnings in this structure.
267 static LogInfo *GetLogInfo(const char *name,ExceptionInfo *exception)
272 assert(exception != (ExceptionInfo *) NULL);
273 if ((log_list == (LinkedListInfo *) NULL) || (instantiate_log == MagickFalse))
274 if (InitializeLogList(exception) == MagickFalse)
275 return((LogInfo *) NULL);
276 if ((log_list == (LinkedListInfo *) NULL) ||
277 (IsLinkedListEmpty(log_list) != MagickFalse))
278 return((LogInfo *) NULL);
279 if ((name == (const char *) NULL) || (LocaleCompare(name,"*") == 0))
280 return((LogInfo *) GetValueFromLinkedList(log_list,0));
284 LockSemaphoreInfo(log_semaphore);
285 ResetLinkedListIterator(log_list);
286 p=(LogInfo *) GetNextValueInLinkedList(log_list);
287 while (p != (LogInfo *) NULL)
289 if (LocaleCompare(name,p->name) == 0)
291 p=(LogInfo *) GetNextValueInLinkedList(log_list);
293 if (p != (LogInfo *) NULL)
294 (void) InsertValueInLinkedList(log_list,0,
295 RemoveElementByValueFromLinkedList(log_list,p));
296 UnlockSemaphoreInfo(log_semaphore);
301 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
305 % G e t L o g I n f o L i s t %
309 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
311 % GetLogInfoList() returns any logs that match the specified pattern.
313 % The format of the GetLogInfoList function is:
315 % const LogInfo **GetLogInfoList(const char *pattern,
316 % size_t *number_preferences,ExceptionInfo *exception)
318 % A description of each parameter follows:
320 % o pattern: Specifies a pointer to a text string containing a pattern.
322 % o number_preferences: This integer returns the number of logs in the list.
324 % o exception: return any errors or warnings in this structure.
327 #if defined(__cplusplus) || defined(c_plusplus)
331 static int LogInfoCompare(const void *x,const void *y)
337 p=(const LogInfo **) x,
338 q=(const LogInfo **) y;
339 if (LocaleCompare((*p)->path,(*q)->path) == 0)
340 return(LocaleCompare((*p)->name,(*q)->name));
341 return(LocaleCompare((*p)->path,(*q)->path));
344 #if defined(__cplusplus) || defined(c_plusplus)
348 MagickExport const LogInfo **GetLogInfoList(const char *pattern,
349 size_t *number_preferences,ExceptionInfo *exception)
354 register const LogInfo
363 assert(pattern != (char *) NULL);
364 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
365 assert(number_preferences != (size_t *) NULL);
366 *number_preferences=0;
367 p=GetLogInfo("*",exception);
368 if (p == (const LogInfo *) NULL)
369 return((const LogInfo **) NULL);
370 preferences=(const LogInfo **) AcquireQuantumMemory((size_t)
371 GetNumberOfElementsInLinkedList(log_list)+1UL,sizeof(*preferences));
372 if (preferences == (const LogInfo **) NULL)
373 return((const LogInfo **) NULL);
377 LockSemaphoreInfo(log_semaphore);
378 ResetLinkedListIterator(log_list);
379 p=(const LogInfo *) GetNextValueInLinkedList(log_list);
380 for (i=0; p != (const LogInfo *) NULL; )
382 if ((p->stealth == MagickFalse) &&
383 (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
385 p=(const LogInfo *) GetNextValueInLinkedList(log_list);
387 UnlockSemaphoreInfo(log_semaphore);
388 qsort((void *) preferences,(size_t) i,sizeof(*preferences),LogInfoCompare);
389 preferences[i]=(LogInfo *) NULL;
390 *number_preferences=(size_t) i;
395 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
399 % G e t L o g L i s t %
403 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
405 % GetLogList() returns any logs that match the specified pattern.
407 % The format of the GetLogList function is:
409 % char **GetLogList(const char *pattern,size_t *number_preferences,
410 % ExceptionInfo *exception)
412 % A description of each parameter follows:
414 % o pattern: Specifies a pointer to a text string containing a pattern.
416 % o number_preferences: This integer returns the number of logs in the list.
418 % o exception: return any errors or warnings in this structure.
422 #if defined(__cplusplus) || defined(c_plusplus)
426 static int LogCompare(const void *x,const void *y)
434 return(LocaleCompare(*p,*q));
437 #if defined(__cplusplus) || defined(c_plusplus)
441 MagickExport char **GetLogList(const char *pattern,
442 size_t *number_preferences,ExceptionInfo *exception)
447 register const LogInfo
456 assert(pattern != (char *) NULL);
457 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
458 assert(number_preferences != (size_t *) NULL);
459 *number_preferences=0;
460 p=GetLogInfo("*",exception);
461 if (p == (const LogInfo *) NULL)
462 return((char **) NULL);
463 preferences=(char **) AcquireQuantumMemory((size_t)
464 GetNumberOfElementsInLinkedList(log_list)+1UL,sizeof(*preferences));
465 if (preferences == (char **) NULL)
466 return((char **) NULL);
470 LockSemaphoreInfo(log_semaphore);
471 ResetLinkedListIterator(log_list);
472 p=(const LogInfo *) GetNextValueInLinkedList(log_list);
473 for (i=0; p != (const LogInfo *) NULL; )
475 if ((p->stealth == MagickFalse) &&
476 (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
477 preferences[i++]=ConstantString(p->name);
478 p=(const LogInfo *) GetNextValueInLinkedList(log_list);
480 UnlockSemaphoreInfo(log_semaphore);
481 qsort((void *) preferences,(size_t) i,sizeof(*preferences),LogCompare);
482 preferences[i]=(char *) NULL;
483 *number_preferences=(size_t) i;
488 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
492 % G e t L o g N a m e %
496 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
498 % GetLogName() returns the current log name.
500 % The format of the GetLogName method is:
502 % const char *GetLogName(void)
505 MagickExport const char *GetLogName(void)
511 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
515 + I n i t i a l i z e L o g L i s t %
519 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
521 % InitializeLogList() initialize the log list.
523 % The format of the InitializeLogList method is:
525 % MagickBooleanType InitializeLogList(ExceptionInfo *exception)
527 % A description of each parameter follows.
529 % o exception: return any errors or warnings in this structure.
532 static MagickBooleanType InitializeLogList(ExceptionInfo *exception)
534 if ((log_list == (LinkedListInfo *) NULL) && (instantiate_log == MagickFalse))
536 if (log_semaphore == (SemaphoreInfo *) NULL)
537 AcquireSemaphoreInfo(&log_semaphore);
538 LockSemaphoreInfo(log_semaphore);
539 if ((log_list == (LinkedListInfo *) NULL) &&
540 (instantiate_log == MagickFalse))
542 (void) LoadLogLists(LogFilename,exception);
543 instantiate_log=MagickTrue;
545 UnlockSemaphoreInfo(log_semaphore);
547 return(log_list != (LinkedListInfo *) NULL ? MagickTrue : MagickFalse);
551 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
555 % I s E v e n t L o g g i n g %
559 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
561 % IsEventLogging() returns MagickTrue if debug of events is enabled otherwise
564 % The format of the IsEventLogging method is:
566 % MagickBooleanType IsEventLogging(void)
569 MagickExport MagickBooleanType IsEventLogging(void)
577 if ((log_list == (LinkedListInfo *) NULL) ||
578 (IsLinkedListEmpty(log_list) != MagickFalse))
580 exception=AcquireExceptionInfo();
581 log_info=GetLogInfo("*",exception);
582 exception=DestroyExceptionInfo(exception);
583 return(log_info->event_mask != NoEvents ? MagickTrue : MagickFalse);
586 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
590 % L i s t L o g I n f o %
594 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
596 % ListLogInfo() lists the log info to a file.
598 % The format of the ListLogInfo method is:
600 % MagickBooleanType ListLogInfo(FILE *file,ExceptionInfo *exception)
602 % A description of each parameter follows.
604 % o file: An pointer to a FILE.
606 % o exception: return any errors or warnings in this structure.
609 MagickExport MagickBooleanType ListLogInfo(FILE *file,ExceptionInfo *exception)
611 #define MegabytesToBytes(value) ((MagickSizeType) (value)*1024*1024)
628 if (file == (const FILE *) NULL)
630 log_info=GetLogInfoList("*",&number_aliases,exception);
631 if (log_info == (const LogInfo **) NULL)
634 path=(const char *) NULL;
635 for (i=0; i < (ssize_t) number_aliases; i++)
637 if (log_info[i]->stealth != MagickFalse)
639 if ((path == (const char *) NULL) ||
640 (LocaleCompare(path,log_info[i]->path) != 0))
645 if (log_info[i]->path != (char *) NULL)
646 (void) FormatLocaleFile(file,"\nPath: %s\n\n",log_info[i]->path);
648 for (j=0; j < (ssize_t) (8*sizeof(LogHandlerType)); j++)
655 if ((log_info[i]->handler_mask & mask) != 0)
657 (void) FormatLocaleFile(file,"%s ",LogHandlers[j].name);
658 length+=strlen(LogHandlers[j].name);
661 for (j=(ssize_t) length; j <= 12; j++)
662 (void) FormatLocaleFile(file," ");
663 (void) FormatLocaleFile(file," Generations Limit Format\n");
664 (void) FormatLocaleFile(file,"-----------------------------------------"
665 "--------------------------------------\n");
667 path=log_info[i]->path;
668 if (log_info[i]->filename != (char *) NULL)
670 (void) FormatLocaleFile(file,"%s",log_info[i]->filename);
671 for (j=(ssize_t) strlen(log_info[i]->filename); j <= 16; j++)
672 (void) FormatLocaleFile(file," ");
674 (void) FormatLocaleFile(file,"%9g ",(double) log_info[i]->generations);
675 (void) FormatLocaleFile(file,"%8g ",(double) log_info[i]->limit);
676 if (log_info[i]->format != (char *) NULL)
677 (void) FormatLocaleFile(file,"%s",log_info[i]->format);
678 (void) FormatLocaleFile(file,"\n");
681 log_info=(const LogInfo **) RelinquishMagickMemory((void *) log_info);
686 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
690 + L o g C o m p o n e n t G e n e s i s %
694 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
696 % LogComponentGenesis() instantiates the log component.
698 % The format of the LogComponentGenesis method is:
700 % MagickBooleanType LogComponentGenesis(void)
703 MagickPrivate MagickBooleanType LogComponentGenesis(void)
705 AcquireSemaphoreInfo(&log_semaphore);
710 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
714 + L o g C o m p o n e n t T e r m i n u s %
718 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
720 % LogComponentTerminus() destroys the logging component.
722 % The format of the LogComponentTerminus method is:
724 % LogComponentTerminus(void)
728 static void *DestroyLogElement(void *log_info)
733 p=(LogInfo *) log_info;
734 if (p->file != (FILE *) NULL)
736 (void) FormatLocaleFile(p->file,"</log>\n");
737 (void) fclose(p->file);
738 p->file=(FILE *) NULL;
740 if (p->exempt == MagickFalse)
742 if (p->format != (char *) NULL)
743 p->format=DestroyString(p->format);
744 if (p->path != (char *) NULL)
745 p->path=DestroyString(p->path);
746 if (p->filename != (char *) NULL)
747 p->filename=DestroyString(p->filename);
749 p=(LogInfo *) RelinquishMagickMemory(p);
750 return((void *) NULL);
753 MagickPrivate void LogComponentTerminus(void)
755 if (log_semaphore == (SemaphoreInfo *) NULL)
756 AcquireSemaphoreInfo(&log_semaphore);
757 LockSemaphoreInfo(log_semaphore);
758 if (log_list != (LinkedListInfo *) NULL)
759 log_list=DestroyLinkedList(log_list,DestroyLogElement);
760 instantiate_log=MagickFalse;
761 UnlockSemaphoreInfo(log_semaphore);
762 DestroySemaphoreInfo(&log_semaphore);
766 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
770 % L o g M a g i c k E v e n t %
774 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
776 % LogMagickEvent() logs an event as determined by the log configuration file.
777 % If an error occurs, MagickFalse is returned otherwise MagickTrue.
779 % The format of the LogMagickEvent method is:
781 % MagickBooleanType LogMagickEvent(const LogEventType type,
782 % const char *module,const char *function,const size_t line,
783 % const char *format,...)
785 % A description of each parameter follows:
787 % o type: the event type.
789 % o filename: the source module filename.
791 % o function: the function name.
793 % o line: the line number of the source module.
795 % o format: the output format.
798 static char *TranslateEvent(const LogEventType magick_unused(type),
799 const char *module,const char *function,const size_t line,
800 const char *domain,const char *event)
827 exception=AcquireExceptionInfo();
828 log_info=(LogInfo *) GetLogInfo("*",exception);
829 exception=DestroyExceptionInfo(exception);
830 seconds=time((time_t *) NULL);
831 elapsed_time=GetElapsedTime(&log_info->timer);
832 user_time=GetUserTime(&log_info->timer);
833 text=AcquireString(event);
834 if (log_info->format == (char *) NULL)
836 extent=strlen(event)+MaxTextExtent;
837 if (LocaleCompare(log_info->format,"xml") == 0)
840 timestamp[MaxTextExtent];
843 Translate event in "XML" format.
845 (void) FormatMagickTime(seconds,extent,timestamp);
846 (void) FormatLocaleString(text,extent,
848 " <timestamp>%s</timestamp>\n"
849 " <elapsed-time>%lu:%02lu.%03lu</elapsed-time>\n"
850 " <user-time>%0.3f</user-time>\n"
851 " <process-id>%.20g</process-id>\n"
852 " <thread-id>%.20g</thread-id>\n"
853 " <module>%s</module>\n"
854 " <function>%s</function>\n"
855 " <line>%.20g</line>\n"
856 " <domain>%s</domain>\n"
857 " <event>%s</event>\n"
858 "</entry>",timestamp,(unsigned long) (elapsed_time/60.0),
859 (unsigned long) floor(fmod(elapsed_time,60.0)),(unsigned long)
860 (1000.0*(elapsed_time-floor(elapsed_time))+0.5),user_time,
861 (double) getpid(),(double) GetMagickThreadSignature(),module,function,
862 (double) line,domain,event);
866 Translate event in "human readable" format.
869 for (p=log_info->format; *p != '\0'; p++)
872 if ((size_t) (q-text+MaxTextExtent) >= extent)
874 extent+=MaxTextExtent;
875 text=(char *) ResizeQuantumMemory(text,extent+MaxTextExtent,
877 if (text == (char *) NULL)
878 return((char *) NULL);
882 The format of the log is defined by embedding special format characters:
901 if ((*p == '\\') && (*(p+1) == 'r'))
907 if ((*p == '\\') && (*(p+1) == 'n'))
923 q+=CopyMagickString(q,GetClientName(),extent);
928 q+=CopyMagickString(q,domain,extent);
933 q+=CopyMagickString(q,event,extent);
938 q+=CopyMagickString(q,function,extent);
943 if (log_info->generations == 0)
945 (void) CopyMagickString(q,"0",extent);
949 q+=FormatLocaleString(q,extent,"%.20g",(double) (log_info->generation %
950 log_info->generations));
955 q+=FormatLocaleString(q,extent,"%.20g",(double) line);
963 for (p=module+strlen(module)-1; p > module; p--)
964 if (*p == *DirectorySeparator)
969 q+=CopyMagickString(q,p,extent);
974 q+=CopyMagickString(q,GetLogName(),extent);
979 q+=FormatLocaleString(q,extent,"%.20g",(double) getpid());
984 q+=FormatLocaleString(q,extent,"%lu:%02lu.%03lu",(unsigned long)
985 (elapsed_time/60.0),(unsigned long) floor(fmod(elapsed_time,60.0)),
986 (unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))+0.5));
991 q+=FormatMagickTime(seconds,extent,q);
996 q+=FormatLocaleString(q,extent,"%0.3fu",user_time);
1001 q+=CopyMagickString(q,MagickLibVersionText,extent);
1021 static char *TranslateFilename(const LogInfo *log_info)
1036 Translate event in "human readable" format.
1038 assert(log_info != (LogInfo *) NULL);
1039 assert(log_info->filename != (char *) NULL);
1040 filename=AcquireString((char *) NULL);
1041 extent=MaxTextExtent;
1043 for (p=log_info->filename; *p != '\0'; p++)
1046 if ((size_t) (q-filename+MaxTextExtent) >= extent)
1048 extent+=MaxTextExtent;
1049 filename=(char *) ResizeQuantumMemory(filename,extent+MaxTextExtent,
1051 if (filename == (char *) NULL)
1052 return((char *) NULL);
1053 q=filename+strlen(filename);
1056 The format of the filename is defined by embedding special format
1075 q+=CopyMagickString(q,GetClientName(),extent);
1080 if (log_info->generations == 0)
1082 (void) CopyMagickString(q,"0",extent);
1086 q+=FormatLocaleString(q,extent,"%.20g",(double) (log_info->generation %
1087 log_info->generations));
1092 q+=CopyMagickString(q,GetLogName(),extent);
1097 q+=FormatLocaleString(q,extent,"%.20g",(double) getpid());
1102 q+=CopyMagickString(q,MagickLibVersionText,extent);
1122 MagickBooleanType LogMagickEventList(const LogEventType type,const char *module,
1123 const char *function,const size_t line,const char *format,
1127 event[MaxTextExtent],
1142 if (IsEventLogging() == MagickFalse)
1143 return(MagickFalse);
1144 exception=AcquireExceptionInfo();
1145 log_info=(LogInfo *) GetLogInfo("*",exception);
1146 exception=DestroyExceptionInfo(exception);
1147 LockSemaphoreInfo(log_semaphore);
1148 if ((log_info->event_mask & type) == 0)
1150 UnlockSemaphoreInfo(log_semaphore);
1153 domain=CommandOptionToMnemonic(MagickLogEventOptions,type);
1154 #if defined(MAGICKCORE_HAVE_VSNPRINTF)
1155 n=vsnprintf(event,MaxTextExtent,format,operands);
1157 n=vsprintf(event,format,operands);
1160 event[MaxTextExtent-1]='\0';
1161 text=TranslateEvent(type,module,function,line,domain,event);
1162 if (text == (char *) NULL)
1164 (void) ContinueTimer((TimerInfo *) &log_info->timer);
1165 UnlockSemaphoreInfo(log_semaphore);
1166 return(MagickFalse);
1168 if ((log_info->handler_mask & ConsoleHandler) != 0)
1170 (void) FormatLocaleFile(stderr,"%s\n",text);
1171 (void) fflush(stderr);
1173 if ((log_info->handler_mask & DebugHandler) != 0)
1175 #if defined(MAGICKCORE_WINDOWS_SUPPORT)
1176 OutputDebugString(text);
1177 OutputDebugString("\n");
1180 if ((log_info->handler_mask & EventHandler) != 0)
1182 #if defined(MAGICKCORE_WINDOWS_SUPPORT)
1183 (void) NTReportEvent(text,MagickFalse);
1186 if ((log_info->handler_mask & FileHandler) != 0)
1191 file_info.st_size=0;
1192 if (log_info->file != (FILE *) NULL)
1193 (void) fstat(fileno(log_info->file),&file_info);
1194 if (file_info.st_size > (ssize_t) (1024*1024*log_info->limit))
1196 (void) FormatLocaleFile(log_info->file,"</log>\n");
1197 (void) fclose(log_info->file);
1198 log_info->file=(FILE *) NULL;
1200 if (log_info->file == (FILE *) NULL)
1205 filename=TranslateFilename(log_info);
1206 if (filename == (char *) NULL)
1208 (void) ContinueTimer((TimerInfo *) &log_info->timer);
1209 UnlockSemaphoreInfo(log_semaphore);
1210 return(MagickFalse);
1212 log_info->append=IsPathAccessible(filename);
1213 log_info->file=fopen_utf8(filename,"ab");
1214 filename=(char *) RelinquishMagickMemory(filename);
1215 if (log_info->file == (FILE *) NULL)
1217 UnlockSemaphoreInfo(log_semaphore);
1218 return(MagickFalse);
1220 log_info->generation++;
1221 if (log_info->append == MagickFalse)
1222 (void) FormatLocaleFile(log_info->file,"<?xml version=\"1.0\" "
1223 "encoding=\"UTF-8\" standalone=\"yes\"?>\n");
1224 (void) FormatLocaleFile(log_info->file,"<log>\n");
1226 (void) FormatLocaleFile(log_info->file," <event>%s</event>\n",text);
1227 (void) fflush(log_info->file);
1229 if ((log_info->handler_mask & StdoutHandler) != 0)
1231 (void) FormatLocaleFile(stdout,"%s\n",text);
1232 (void) fflush(stdout);
1234 if ((log_info->handler_mask & StderrHandler) != 0)
1236 (void) FormatLocaleFile(stderr,"%s\n",text);
1237 (void) fflush(stderr);
1239 text=(char *) RelinquishMagickMemory(text);
1240 (void) ContinueTimer((TimerInfo *) &log_info->timer);
1241 UnlockSemaphoreInfo(log_semaphore);
1245 MagickBooleanType LogMagickEvent(const LogEventType type,const char *module,
1246 const char *function,const size_t line,const char *format,...)
1254 va_start(operands,format);
1255 status=LogMagickEventList(type,module,function,line,format,operands);
1261 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1265 + L o a d L o g L i s t %
1269 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1271 % LoadLogList() loads the log configuration file which provides a
1272 % mapping between log attributes and log name.
1274 % The format of the LoadLogList method is:
1276 % MagickBooleanType LoadLogList(const char *xml,const char *filename,
1277 % const size_t depth,ExceptionInfo *exception)
1279 % A description of each parameter follows:
1281 % o xml: The log list in XML format.
1283 % o filename: The log list filename.
1285 % o depth: depth of <include /> statements.
1287 % o exception: return any errors or warnings in this structure.
1290 static MagickBooleanType LoadLogList(const char *xml,const char *filename,
1291 const size_t depth,ExceptionInfo *exception)
1294 keyword[MaxTextExtent],
1301 *log_info = (LogInfo *) NULL;
1307 Load the log map file.
1309 if (xml == (const char *) NULL)
1310 return(MagickFalse);
1311 if (log_list == (LinkedListInfo *) NULL)
1313 log_list=NewLinkedList(0);
1314 if (log_list == (LinkedListInfo *) NULL)
1316 ThrowFileException(exception,ResourceLimitError,
1317 "MemoryAllocationFailed",filename);
1318 return(MagickFalse);
1322 token=AcquireString((const char *) xml);
1323 for (q=(const char *) xml; *q != '\0'; )
1328 GetMagickToken(q,&q,token);
1331 (void) CopyMagickString(keyword,token,MaxTextExtent);
1332 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
1337 while ((LocaleNCompare(q,"]>",2) != 0) && (*q != '\0'))
1338 GetMagickToken(q,&q,token);
1341 if (LocaleNCompare(keyword,"<!--",4) == 0)
1346 while ((LocaleNCompare(q,"->",2) != 0) && (*q != '\0'))
1347 GetMagickToken(q,&q,token);
1350 if (LocaleCompare(keyword,"<include") == 0)
1355 while (((*token != '/') && (*(token+1) != '>')) && (*q != '\0'))
1357 (void) CopyMagickString(keyword,token,MaxTextExtent);
1358 GetMagickToken(q,&q,token);
1361 GetMagickToken(q,&q,token);
1362 if (LocaleCompare(keyword,"file") == 0)
1365 (void) ThrowMagickException(exception,GetMagickModule(),
1366 ConfigureError,"IncludeElementNestedTooDeeply","`%s'",token);
1370 path[MaxTextExtent],
1373 GetPathComponent(filename,HeadPath,path);
1375 (void) ConcatenateMagickString(path,DirectorySeparator,
1377 if (*token == *DirectorySeparator)
1378 (void) CopyMagickString(path,token,MaxTextExtent);
1380 (void) ConcatenateMagickString(path,token,MaxTextExtent);
1381 xml=FileToString(path,~0,exception);
1382 if (xml != (char *) NULL)
1384 status|=LoadLogList(xml,path,depth+1,exception);
1385 xml=DestroyString(xml);
1392 if (LocaleCompare(keyword,"<logmap>") == 0)
1395 Allocate memory for the log list.
1397 log_info=(LogInfo *) AcquireMagickMemory(sizeof(*log_info));
1398 if (log_info == (LogInfo *) NULL)
1399 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
1400 (void) ResetMagickMemory(log_info,0,sizeof(*log_info));
1401 log_info->path=ConstantString(filename);
1402 GetTimerInfo((TimerInfo *) &log_info->timer);
1403 log_info->exempt=MagickFalse;
1404 log_info->signature=MagickSignature;
1407 if (log_info == (LogInfo *) NULL)
1409 if (LocaleCompare(keyword,"</logmap>") == 0)
1411 status=AppendValueToLinkedList(log_list,log_info);
1412 if (status == MagickFalse)
1413 (void) ThrowMagickException(exception,GetMagickModule(),
1414 ResourceLimitError,"MemoryAllocationFailed","`%s'",filename);
1415 log_info=(LogInfo *) NULL;
1417 GetMagickToken(q,(const char **) NULL,token);
1420 GetMagickToken(q,&q,token);
1421 GetMagickToken(q,&q,token);
1427 if (LocaleCompare((char *) keyword,"events") == 0)
1429 log_info->event_mask=(LogEventType) (log_info->event_mask |
1430 ParseCommandOption(MagickLogEventOptions,MagickTrue,token));
1438 if (LocaleCompare((char *) keyword,"filename") == 0)
1440 if (log_info->filename != (char *) NULL)
1441 log_info->filename=(char *)
1442 RelinquishMagickMemory(log_info->filename);
1443 log_info->filename=ConstantString(token);
1446 if (LocaleCompare((char *) keyword,"format") == 0)
1448 if (log_info->format != (char *) NULL)
1449 log_info->format=(char *)
1450 RelinquishMagickMemory(log_info->format);
1451 log_info->format=ConstantString(token);
1459 if (LocaleCompare((char *) keyword,"generations") == 0)
1461 if (LocaleCompare(token,"unlimited") == 0)
1463 log_info->generations=(~0UL);
1466 log_info->generations=StringToUnsignedLong(token);
1474 if (LocaleCompare((char *) keyword,"limit") == 0)
1476 if (LocaleCompare(token,"unlimited") == 0)
1478 log_info->limit=(~0UL);
1481 log_info->limit=StringToUnsignedLong(token);
1489 if (LocaleCompare((char *) keyword,"output") == 0)
1491 log_info->handler_mask=(LogHandlerType)
1492 (log_info->handler_mask | ParseLogHandlers(token));
1501 token=DestroyString(token);
1502 if (log_list == (LinkedListInfo *) NULL)
1503 return(MagickFalse);
1504 return(status != 0 ? MagickTrue : MagickFalse);
1508 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1512 % L o a d L o g L i s t s %
1516 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1518 % LoadLogLists() loads one or more log configuration file which provides a
1519 % mapping between log attributes and log name.
1521 % The format of the LoadLogLists method is:
1523 % MagickBooleanType LoadLogLists(const char *filename,
1524 % ExceptionInfo *exception)
1526 % A description of each parameter follows:
1528 % o filename: the log configuration filename.
1530 % o exception: return any errors or warnings in this structure.
1533 static MagickBooleanType LoadLogLists(const char *filename,
1534 ExceptionInfo *exception)
1549 Load external log map.
1551 if (log_list == (LinkedListInfo *) NULL)
1553 log_list=NewLinkedList(0);
1554 if (log_list == (LinkedListInfo *) NULL)
1556 ThrowFileException(exception,ResourceLimitError,
1557 "MemoryAllocationFailed",filename);
1558 return(MagickFalse);
1562 options=GetConfigureOptions(filename,exception);
1563 option=(const StringInfo *) GetNextValueInLinkedList(options);
1564 while (option != (const StringInfo *) NULL)
1566 status|=LoadLogList((const char *) GetStringInfoDatum(option),
1567 GetStringInfoPath(option),0,exception);
1568 option=(const StringInfo *) GetNextValueInLinkedList(options);
1570 options=DestroyConfigureOptions(options);
1572 Load built-in log map.
1574 for (i=0; i < (ssize_t) (sizeof(LogMap)/sizeof(*LogMap)); i++)
1579 register const LogMapInfo
1583 log_info=(LogInfo *) AcquireMagickMemory(sizeof(*log_info));
1584 if (log_info == (LogInfo *) NULL)
1586 (void) ThrowMagickException(exception,GetMagickModule(),
1587 ResourceLimitError,"MemoryAllocationFailed","`%s'",log_info->name);
1590 (void) ResetMagickMemory(log_info,0,sizeof(*log_info));
1591 log_info->path=(char *) "[built-in]";
1592 GetTimerInfo((TimerInfo *) &log_info->timer);
1593 log_info->event_mask=p->event_mask;
1594 log_info->handler_mask=p->handler_mask;
1595 log_info->filename=ConstantString(p->filename);
1596 log_info->format=ConstantString(p->format);
1597 log_info->exempt=MagickTrue;
1598 log_info->signature=MagickSignature;
1599 status|=AppendValueToLinkedList(log_list,log_info);
1600 if (status == MagickFalse)
1601 (void) ThrowMagickException(exception,GetMagickModule(),
1602 ResourceLimitError,"MemoryAllocationFailed","`%s'",log_info->name);
1604 return(status != 0 ? MagickTrue : MagickFalse);
1608 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1612 + P a r s e L o g H a n d l e r s %
1616 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1618 % ParseLogHandlers() parses a string defining which handlers takes a log
1619 % message and exports them.
1621 % The format of the ParseLogHandlers method is:
1623 % LogHandlerType ParseLogHandlers(const char *handlers)
1625 % A description of each parameter follows:
1627 % o handlers: one or more handlers separated by commas.
1630 static LogHandlerType ParseLogHandlers(const char *handlers)
1644 handler_mask=NoHandler;
1645 for (p=handlers; p != (char *) NULL; p=strchr(p,','))
1647 while ((*p != '\0') && ((isspace((int) ((unsigned char) *p)) != 0) ||
1650 for (i=0; LogHandlers[i].name != (char *) NULL; i++)
1652 length=strlen(LogHandlers[i].name);
1653 if (LocaleNCompare(p,LogHandlers[i].name,length) == 0)
1655 handler_mask=(LogHandlerType) (handler_mask | LogHandlers[i].handler);
1659 if (LogHandlers[i].name == (char *) NULL)
1660 return(UndefinedHandler);
1662 return(handler_mask);
1666 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1670 % S e t L o g E v e n t M a s k %
1674 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1676 % SetLogEventMask() accepts a list that determines which events to log. All
1677 % other events are ignored. By default, no debug is enabled. This method
1678 % returns the previous log event mask.
1680 % The format of the SetLogEventMask method is:
1682 % LogEventType SetLogEventMask(const char *events)
1684 % A description of each parameter follows:
1686 % o events: log these events.
1689 MagickExport LogEventType SetLogEventMask(const char *events)
1700 exception=AcquireExceptionInfo();
1701 log_info=(LogInfo *) GetLogInfo("*",exception);
1702 exception=DestroyExceptionInfo(exception);
1703 option=ParseCommandOption(MagickLogEventOptions,MagickTrue,events);
1704 LockSemaphoreInfo(log_semaphore);
1705 log_info=(LogInfo *) GetValueFromLinkedList(log_list,0);
1706 log_info->event_mask=(LogEventType) option;
1708 log_info->event_mask=UndefinedEvents;
1709 UnlockSemaphoreInfo(log_semaphore);
1710 return(log_info->event_mask);
1714 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1718 % S e t L o g F o r m a t %
1722 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1724 % SetLogFormat() sets the format for the "human readable" log record.
1726 % The format of the LogMagickFormat method is:
1728 % SetLogFormat(const char *format)
1730 % A description of each parameter follows:
1732 % o format: the log record format.
1735 MagickExport void SetLogFormat(const char *format)
1743 exception=AcquireExceptionInfo();
1744 log_info=(LogInfo *) GetLogInfo("*",exception);
1745 exception=DestroyExceptionInfo(exception);
1746 LockSemaphoreInfo(log_semaphore);
1747 if (log_info->format != (char *) NULL)
1748 log_info->format=DestroyString(log_info->format);
1749 log_info->format=ConstantString(format);
1750 UnlockSemaphoreInfo(log_semaphore);
1754 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1758 % S e t L o g N a m e %
1762 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1764 % SetLogName() sets the log name and returns it.
1766 % The format of the SetLogName method is:
1768 % const char *SetLogName(const char *name)
1770 % A description of each parameter follows:
1772 % o log_name: SetLogName() returns the current client name.
1774 % o name: Specifies the new client name.
1777 MagickExport const char *SetLogName(const char *name)
1779 if ((name != (char *) NULL) && (*name != '\0'))
1780 (void) CopyMagickString(log_name,name,MaxTextExtent);