2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
*Copyright (C) 2001-2004 Harold L Hunt II All Rights Reserved.
|
|
|
|
*
|
|
|
|
*Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
*"Software"), to deal in the Software without restriction, including
|
|
|
|
*without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
*distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
*permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
*the following conditions:
|
|
|
|
*
|
|
|
|
*The above copyright notice and this permission notice shall be
|
|
|
|
*included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
*THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
*EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
*MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
*NONINFRINGEMENT. IN NO EVENT SHALL HAROLD L HUNT II BE LIABLE FOR
|
|
|
|
*ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
|
|
*CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
*WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*Except as contained in this notice, the name of Harold L Hunt II
|
|
|
|
*shall not be used in advertising or otherwise to promote the sale, use
|
|
|
|
*or other dealings in this Software without prior written authorization
|
|
|
|
*from Harold L Hunt II.
|
|
|
|
*
|
|
|
|
* Authors: Harold L Hunt II
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_XWIN_CONFIG_H
|
|
|
|
#include <xwin-config.h>
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#include <../xfree86/common/xorgVersion.h>
|
2006-11-26 11:13:41 -07:00
|
|
|
#include "win.h"
|
|
|
|
|
|
|
|
#ifdef DDXOSVERRORF
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
OsVendorVErrorF(const char *pszFormat, va_list va_args)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
#if defined(XWIN_CLIPBOARD) || defined (XWIN_MULTIWINDOW)
|
2012-06-10 07:21:05 -06:00
|
|
|
/* make sure the clipboard and multiwindow threads do not interfere the
|
|
|
|
* main thread */
|
|
|
|
static pthread_mutex_t s_pmPrinting = PTHREAD_MUTEX_INITIALIZER;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Lock the printing mutex */
|
|
|
|
pthread_mutex_lock(&s_pmPrinting);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Print the error message to a log file, could be stderr */
|
|
|
|
LogVWrite(0, pszFormat, va_args);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if defined(XWIN_CLIPBOARD) || defined (XWIN_MULTIWINDOW)
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Unlock the printing mutex */
|
|
|
|
pthread_mutex_unlock(&s_pmPrinting);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2013-06-07 11:28:45 -06:00
|
|
|
* os/log.c:FatalError () calls our vendor ErrorF, so the message
|
|
|
|
* from a FatalError will be logged.
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
* Attempt to do last-ditch, safe, important cleanup here.
|
|
|
|
*/
|
|
|
|
void
|
2013-06-07 11:28:45 -06:00
|
|
|
OsVendorFatalError(const char *f, va_list args)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2013-06-07 11:28:45 -06:00
|
|
|
char errormsg[1024] = "";
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Don't give duplicate warning if UseMsg was called */
|
|
|
|
if (g_fSilentFatalError)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!g_fLogInited) {
|
|
|
|
g_fLogInited = TRUE;
|
|
|
|
g_pszLogFile = LogInit(g_pszLogFile, NULL);
|
|
|
|
}
|
|
|
|
LogClose(EXIT_ERR_ABORT);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
/* Format the error message */
|
|
|
|
vsnprintf(errormsg, sizeof(errormsg), f, args);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Sometimes the error message needs a bit of cosmetic cleaning
|
|
|
|
up for use in a dialog box...
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
while ((s = strstr(errormsg, "\n\t")) != NULL) {
|
|
|
|
s[0] = ' ';
|
|
|
|
s[1] = '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
winMessageBoxF("A fatal error has occurred and " PROJECT_NAME " will now exit.\n\n"
|
|
|
|
"%s\n\n"
|
|
|
|
"Please open %s for more information.\n",
|
|
|
|
MB_ICONERROR,
|
|
|
|
errormsg,
|
|
|
|
(g_pszLogFile ? g_pszLogFile : "the logfile"));
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* winMessageBoxF - Print a formatted error message in a useful
|
|
|
|
* message box.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMessageBoxF(const char *pszError, UINT uType, ...)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
char *pszErrorF = NULL;
|
|
|
|
char *pszMsgBox = NULL;
|
|
|
|
va_list args;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
va_start(args, uType);
|
|
|
|
size = vasprintf(&pszErrorF, pszError, args);
|
|
|
|
va_end(args);
|
|
|
|
if (size == -1) {
|
|
|
|
pszErrorF = NULL;
|
|
|
|
goto winMessageBoxF_Cleanup;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#define MESSAGEBOXF \
|
|
|
|
"%s\n" \
|
|
|
|
"Vendor: %s\n" \
|
2013-06-07 11:28:45 -06:00
|
|
|
"Release: %d.%d.%d.%d\n" \
|
2006-11-26 11:13:41 -07:00
|
|
|
"Contact: %s\n" \
|
2010-07-27 13:02:24 -06:00
|
|
|
"%s\n\n" \
|
2006-11-26 11:13:41 -07:00
|
|
|
"XWin was started with the following command-line:\n\n" \
|
|
|
|
"%s\n"
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
size = asprintf(&pszMsgBox, MESSAGEBOXF,
|
|
|
|
pszErrorF, XVENDORNAME,
|
|
|
|
XORG_VERSION_MAJOR, XORG_VERSION_MINOR, XORG_VERSION_PATCH,
|
2013-06-07 11:28:45 -06:00
|
|
|
XORG_VERSION_SNAP,
|
2012-06-10 07:21:05 -06:00
|
|
|
BUILDERADDR, BUILDERSTRING, g_pszCommandLine);
|
|
|
|
|
|
|
|
if (size == -1) {
|
|
|
|
pszMsgBox = NULL;
|
|
|
|
goto winMessageBoxF_Cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Display the message box string */
|
|
|
|
MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
winMessageBoxF_Cleanup:
|
2012-06-10 07:21:05 -06:00
|
|
|
free(pszErrorF);
|
|
|
|
free(pszMsgBox);
|
2006-11-26 11:13:41 -07:00
|
|
|
#undef MESSAGEBOXF
|
|
|
|
}
|