2003-01-28 07:38:28 +01:00
|
|
|
/* Copyright (C) 2000-2003 MySQL AB
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
|
|
|
#include "my_static.h"
|
|
|
|
#include "mysys_err.h"
|
|
|
|
#include <m_string.h>
|
|
|
|
#include <m_ctype.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#ifdef VMS
|
|
|
|
#include <my_static.c>
|
|
|
|
#include <m_ctype.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __WIN__
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <locale.h>
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
my_bool have_tcpip=0;
|
|
|
|
static void my_win_init(void);
|
|
|
|
static my_bool win32_init_tcp_ip();
|
|
|
|
#else
|
|
|
|
#define my_win_init()
|
|
|
|
#endif
|
2003-01-28 07:38:28 +01:00
|
|
|
#ifdef __NETWARE__
|
|
|
|
static void netware_init();
|
|
|
|
#else
|
|
|
|
#define netware_init()
|
|
|
|
#endif
|
|
|
|
|
2004-11-10 23:36:18 +01:00
|
|
|
my_bool my_init_done= 0;
|
|
|
|
uint mysys_usage_id= 0; /* Incremented for each my_init() */
|
2007-10-11 17:07:40 +02:00
|
|
|
ulong my_thread_stack_size= 65536;
|
2001-01-27 10:24:05 +01:00
|
|
|
|
2000-10-10 23:06:37 +02:00
|
|
|
static ulong atoi_octal(const char *str)
|
2000-09-26 01:57:29 +02:00
|
|
|
{
|
|
|
|
long int tmp;
|
2003-03-16 09:30:10 +01:00
|
|
|
while (*str && my_isspace(&my_charset_latin1, *str))
|
2000-09-26 01:57:29 +02:00
|
|
|
str++;
|
|
|
|
str2int(str,
|
2004-11-10 23:36:18 +01:00
|
|
|
(*str == '0' ? 8 : 10), /* Octalt or decimalt */
|
2000-09-26 01:57:29 +02:00
|
|
|
0, INT_MAX, &tmp);
|
|
|
|
return (ulong) tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-11 05:24:08 +01:00
|
|
|
/*
|
|
|
|
Init my_sys functions and my_sys variabels
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-12-11 05:24:08 +01:00
|
|
|
SYNOPSIS
|
|
|
|
my_init()
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
0 ok
|
|
|
|
1 Couldn't initialize environment
|
|
|
|
*/
|
|
|
|
|
|
|
|
my_bool my_init(void)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 11:59:39 +02:00
|
|
|
char * str;
|
2000-07-31 21:29:14 +02:00
|
|
|
if (my_init_done)
|
2003-12-11 05:24:08 +01:00
|
|
|
return 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
my_init_done=1;
|
2004-11-10 23:36:18 +01:00
|
|
|
mysys_usage_id++;
|
2004-11-11 09:35:55 +01:00
|
|
|
my_umask= 0660; /* Default umask for new files */
|
|
|
|
my_umask_dir= 0700; /* Default umask for new directories */
|
2007-10-11 17:07:40 +02:00
|
|
|
init_glob_errs();
|
2009-01-12 20:48:02 +01:00
|
|
|
#if defined(THREAD)
|
|
|
|
if (my_thread_global_init())
|
|
|
|
return 1;
|
|
|
|
# if defined(SAFE_MUTEX)
|
2003-01-28 07:38:28 +01:00
|
|
|
safe_mutex_global_init(); /* Must be called early */
|
2009-01-12 20:48:02 +01:00
|
|
|
# endif
|
2007-08-24 17:06:44 +02:00
|
|
|
#endif
|
|
|
|
#if defined(THREAD) && defined(MY_PTHREAD_FASTMUTEX) && !defined(SAFE_MUTEX)
|
|
|
|
fastmutex_global_init(); /* Must be called early */
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif
|
|
|
|
netware_init();
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef THREAD
|
|
|
|
#if defined(HAVE_PTHREAD_INIT)
|
|
|
|
pthread_init(); /* Must be called before DBUG_ENTER */
|
|
|
|
#endif
|
2006-04-15 17:49:00 +02:00
|
|
|
#if !defined( __WIN__) && !defined(__NETWARE__)
|
2000-07-31 21:29:14 +02:00
|
|
|
sigfillset(&my_signals); /* signals blocked by mf_brkhant */
|
|
|
|
#endif
|
2001-02-07 16:42:20 +01:00
|
|
|
#endif /* THREAD */
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("my_init");
|
2005-07-31 11:49:55 +02:00
|
|
|
DBUG_PROCESS((char*) (my_progname ? my_progname : "unknown"));
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!home_dir)
|
|
|
|
{ /* Don't initialize twice */
|
|
|
|
my_win_init();
|
|
|
|
if ((home_dir=getenv("HOME")) != 0)
|
|
|
|
home_dir=intern_filename(home_dir_buff,home_dir);
|
|
|
|
#ifndef VMS
|
2000-09-26 01:57:29 +02:00
|
|
|
/* Default creation of new files */
|
2000-07-31 21:29:14 +02:00
|
|
|
if ((str=getenv("UMASK")) != 0)
|
2000-09-26 01:57:29 +02:00
|
|
|
my_umask=(int) (atoi_octal(str) | 0600);
|
|
|
|
/* Default creation of new dir's */
|
2000-07-31 21:29:14 +02:00
|
|
|
if ((str=getenv("UMASK_DIR")) != 0)
|
2000-09-26 01:57:29 +02:00
|
|
|
my_umask_dir=(int) (atoi_octal(str) | 0700);
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif
|
|
|
|
#ifdef VMS
|
|
|
|
init_ctype(); /* Stupid linker don't link _ctype.c */
|
|
|
|
#endif
|
|
|
|
DBUG_PRINT("exit",("home: '%s'",home_dir));
|
|
|
|
}
|
|
|
|
#ifdef __WIN__
|
|
|
|
win32_init_tcp_ip();
|
|
|
|
#endif
|
2003-12-11 05:24:08 +01:00
|
|
|
DBUG_RETURN(0);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
} /* my_init */
|
|
|
|
|
|
|
|
|
|
|
|
/* End my_sys */
|
|
|
|
|
|
|
|
void my_end(int infoflag)
|
|
|
|
{
|
2005-09-23 14:07:31 +02:00
|
|
|
/*
|
|
|
|
this code is suboptimal to workaround a bug in
|
|
|
|
Sun CC: Sun C++ 5.6 2004/06/02 for x86, and should not be
|
|
|
|
optimized until this compiler is not in use anymore
|
|
|
|
*/
|
2005-09-23 09:47:41 +02:00
|
|
|
FILE *info_file= DBUG_FILE;
|
2005-09-23 14:07:31 +02:00
|
|
|
my_bool print_info= (info_file != stderr);
|
2007-08-01 21:59:05 +02:00
|
|
|
/*
|
|
|
|
We do not use DBUG_ENTER here, as after cleanup DBUG is no longer
|
|
|
|
operational, so we cannot use DBUG_RETURN.
|
2006-03-22 09:55:26 +01:00
|
|
|
*/
|
2007-08-02 06:49:29 +02:00
|
|
|
DBUG_PRINT("info",("Shutting down: infoflag: %d print_info: %d",
|
|
|
|
infoflag, print_info));
|
2005-09-23 09:47:41 +02:00
|
|
|
if (!info_file)
|
|
|
|
{
|
|
|
|
info_file= stderr;
|
|
|
|
print_info= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((infoflag & MY_CHECK_ERROR) || print_info)
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
{ /* Test if some file is left open */
|
|
|
|
if (my_file_opened | my_stream_opened)
|
|
|
|
{
|
2009-02-05 07:16:00 +01:00
|
|
|
char ebuff[512];
|
|
|
|
my_snprintf(ebuff, sizeof(ebuff), EE(EE_OPEN_WARNING),
|
|
|
|
my_file_opened, my_stream_opened);
|
|
|
|
my_message_no_curses(EE_OPEN_WARNING, ebuff, ME_BELL);
|
|
|
|
DBUG_PRINT("error", ("%s", ebuff));
|
2006-05-04 05:28:24 +02:00
|
|
|
my_print_open_files();
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
}
|
2005-12-01 21:43:37 +01:00
|
|
|
free_charsets();
|
2006-11-21 21:32:58 +01:00
|
|
|
my_error_unregister_all();
|
2003-01-07 10:45:06 +01:00
|
|
|
my_once_free();
|
2005-09-23 09:47:41 +02:00
|
|
|
|
|
|
|
if ((infoflag & MY_GIVE_INFO) || print_info)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
#ifdef HAVE_GETRUSAGE
|
|
|
|
struct rusage rus;
|
2005-02-28 10:59:46 +01:00
|
|
|
#ifdef HAVE_purify
|
|
|
|
/* Purify assumes that rus is uninitialized after getrusage call */
|
|
|
|
bzero((char*) &rus, sizeof(rus));
|
|
|
|
#endif
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!getrusage(RUSAGE_SELF, &rus))
|
2001-01-27 10:24:05 +01:00
|
|
|
fprintf(info_file,"\n\
|
|
|
|
User time %.2f, System time %.2f\n\
|
|
|
|
Maximum resident set size %ld, Integral resident set size %ld\n\
|
|
|
|
Non-physical pagefaults %ld, Physical pagefaults %ld, Swaps %ld\n\
|
|
|
|
Blocks in %ld out %ld, Messages in %ld out %ld, Signals %ld\n\
|
|
|
|
Voluntary context switches %ld, Involuntary context switches %ld\n",
|
2000-07-31 21:29:14 +02:00
|
|
|
(rus.ru_utime.tv_sec * SCALE_SEC +
|
|
|
|
rus.ru_utime.tv_usec / SCALE_USEC) / 100.0,
|
|
|
|
(rus.ru_stime.tv_sec * SCALE_SEC +
|
|
|
|
rus.ru_stime.tv_usec / SCALE_USEC) / 100.0,
|
|
|
|
rus.ru_maxrss, rus.ru_idrss,
|
|
|
|
rus.ru_minflt, rus.ru_majflt,
|
|
|
|
rus.ru_nswap, rus.ru_inblock, rus.ru_oublock,
|
|
|
|
rus.ru_msgsnd, rus.ru_msgrcv, rus.ru_nsignals,
|
|
|
|
rus.ru_nvcsw, rus.ru_nivcsw);
|
|
|
|
#endif
|
2006-05-08 21:50:13 +02:00
|
|
|
#if defined(__NETWARE__) && !defined(__WIN__)
|
2000-07-31 21:29:14 +02:00
|
|
|
fprintf(info_file,"\nRun time: %.1f\n",(double) clock()/CLOCKS_PER_SEC);
|
|
|
|
#endif
|
|
|
|
#if defined(SAFEMALLOC)
|
2007-08-02 06:49:29 +02:00
|
|
|
TERMINATE(stderr, (infoflag & MY_GIVE_INFO) != 0);
|
2000-07-31 21:29:14 +02:00
|
|
|
#elif defined(__WIN__) && defined(_MSC_VER)
|
|
|
|
_CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_WARN, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_ERROR, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtCheckMemory();
|
|
|
|
_CrtDumpMemoryLeaks();
|
|
|
|
#endif
|
|
|
|
}
|
2007-08-01 21:59:05 +02:00
|
|
|
else if (infoflag & MY_CHECK_ERROR)
|
|
|
|
{
|
|
|
|
TERMINATE(stderr, 0); /* Print memory leaks on screen */
|
|
|
|
}
|
2006-05-15 18:07:18 +02:00
|
|
|
|
|
|
|
if (!(infoflag & MY_DONT_FREE_DBUG))
|
2007-02-23 12:13:55 +01:00
|
|
|
{
|
2006-05-15 18:07:18 +02:00
|
|
|
DBUG_END(); /* Must be done before my_thread_end */
|
2007-02-23 12:13:55 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef THREAD
|
|
|
|
my_thread_end();
|
|
|
|
my_thread_global_end();
|
2003-01-28 07:38:28 +01:00
|
|
|
#if defined(SAFE_MUTEX)
|
|
|
|
/*
|
|
|
|
Check on destroying of mutexes. A few may be left that will get cleaned
|
|
|
|
up by C++ destructors
|
|
|
|
*/
|
2006-11-21 21:32:58 +01:00
|
|
|
safe_mutex_end((infoflag & (MY_GIVE_INFO | MY_CHECK_ERROR)) ? stderr :
|
|
|
|
(FILE *) 0);
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif /* defined(SAFE_MUTEX) */
|
|
|
|
#endif /* THREAD */
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef __WIN__
|
2003-01-28 07:38:28 +01:00
|
|
|
if (have_tcpip)
|
|
|
|
WSACleanup();
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif /* __WIN__ */
|
2003-01-28 07:38:28 +01:00
|
|
|
my_init_done=0;
|
2000-07-31 21:29:14 +02:00
|
|
|
} /* my_end */
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef __WIN__
|
|
|
|
|
|
|
|
|
2006-06-05 20:37:06 +02:00
|
|
|
/*
|
2007-02-23 12:13:55 +01:00
|
|
|
my_parameter_handler
|
|
|
|
|
|
|
|
Invalid parameter handler we will use instead of the one "baked"
|
|
|
|
into the CRT for MSC v8. This one just prints out what invalid
|
|
|
|
parameter was encountered. By providing this routine, routines like
|
|
|
|
lseek will return -1 when we expect them to instead of crash.
|
2006-06-05 20:37:06 +02:00
|
|
|
*/
|
2007-02-23 12:13:55 +01:00
|
|
|
|
|
|
|
void my_parameter_handler(const wchar_t * expression, const wchar_t * function,
|
|
|
|
const wchar_t * file, unsigned int line,
|
2006-06-05 20:37:06 +02:00
|
|
|
uintptr_t pReserved)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("my",("Expression: %s function: %s file: %s, line: %d",
|
|
|
|
expression, function, file, line));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-14 16:04:36 +02:00
|
|
|
#ifdef __MSVC_RUNTIME_CHECKS
|
|
|
|
#include <rtcapi.h>
|
|
|
|
|
|
|
|
/* Turn off runtime checks for 'handle_rtc_failure' */
|
|
|
|
#pragma runtime_checks("", off)
|
|
|
|
|
|
|
|
/*
|
|
|
|
handle_rtc_failure
|
|
|
|
Catch the RTC error and dump it to stderr
|
|
|
|
*/
|
|
|
|
|
|
|
|
int handle_rtc_failure(int err_type, const char *file, int line,
|
|
|
|
const char* module, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
fprintf(stderr, "Error:");
|
|
|
|
vfprintf(stderr, format, args);
|
|
|
|
fprintf(stderr, " At %s:%d\n", file, line);
|
|
|
|
va_end(args);
|
|
|
|
(void) fflush(stderr);
|
|
|
|
|
|
|
|
return 0; /* Error is handled */
|
|
|
|
}
|
2007-10-02 20:44:37 +02:00
|
|
|
#pragma runtime_checks("", restore)
|
2007-05-14 16:04:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
static void my_win_init(void)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("my_win_init");
|
|
|
|
|
2006-06-05 20:37:06 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#if _MSC_VER < 1300
|
2004-02-17 01:09:42 +01:00
|
|
|
/*
|
|
|
|
Clear the OS system variable TZ and avoid the 100% CPU usage
|
|
|
|
Only for old versions of Visual C++
|
|
|
|
*/
|
2002-10-17 01:22:56 +02:00
|
|
|
_putenv( "TZ=" );
|
2006-06-05 20:37:06 +02:00
|
|
|
#endif
|
|
|
|
#if _MSC_VER >= 1400
|
|
|
|
/* this is required to make crt functions return -1 appropriately */
|
|
|
|
_set_invalid_parameter_handler(my_parameter_handler);
|
|
|
|
#endif
|
2004-02-17 01:09:42 +01:00
|
|
|
#endif
|
2007-05-14 16:04:36 +02:00
|
|
|
#ifdef __MSVC_RUNTIME_CHECKS
|
|
|
|
/*
|
|
|
|
Install handler to send RTC (Runtime Error Check) warnings
|
|
|
|
to log file
|
|
|
|
*/
|
|
|
|
_RTC_SetErrorFunc(handle_rtc_failure);
|
|
|
|
#endif
|
|
|
|
|
2002-10-17 01:22:56 +02:00
|
|
|
_tzset();
|
|
|
|
|
2008-04-03 11:50:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-10-11 17:07:40 +02:00
|
|
|
/* The following is used by time functions */
|
|
|
|
#define OFFSET_TO_EPOC ((__int64) 134774 * 24 * 60 * 60 * 1000 * 1000 * 10)
|
|
|
|
#define MS 10000000
|
|
|
|
{
|
|
|
|
FILETIME ft;
|
|
|
|
LARGE_INTEGER li, t_cnt;
|
|
|
|
DBUG_ASSERT(sizeof(LARGE_INTEGER) == sizeof(query_performance_frequency));
|
|
|
|
if (QueryPerformanceFrequency((LARGE_INTEGER *)&query_performance_frequency) == 0)
|
|
|
|
query_performance_frequency= 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GetSystemTimeAsFileTime(&ft);
|
|
|
|
li.LowPart= ft.dwLowDateTime;
|
|
|
|
li.HighPart= ft.dwHighDateTime;
|
|
|
|
query_performance_offset= li.QuadPart-OFFSET_TO_EPOC;
|
|
|
|
QueryPerformanceCounter(&t_cnt);
|
|
|
|
query_performance_offset-= (t_cnt.QuadPart /
|
|
|
|
query_performance_frequency * MS +
|
|
|
|
t_cnt.QuadPart %
|
|
|
|
query_performance_frequency * MS /
|
|
|
|
query_performance_frequency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2008-01-09 19:13:07 +01:00
|
|
|
/*
|
|
|
|
Open HKEY_LOCAL_MACHINE\SOFTWARE\MySQL and set any strings found
|
|
|
|
there as environment variables
|
|
|
|
*/
|
|
|
|
HKEY key_handle;
|
|
|
|
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, (LPCTSTR)"SOFTWARE\\MySQL",
|
|
|
|
0, KEY_READ, &key_handle) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
LONG ret;
|
|
|
|
DWORD index= 0;
|
|
|
|
DWORD type;
|
|
|
|
char key_name[256], key_data[1024];
|
2008-04-22 12:54:51 +02:00
|
|
|
DWORD key_name_len= sizeof(key_name) - 1;
|
|
|
|
DWORD key_data_len= sizeof(key_data) - 1;
|
2008-01-09 19:13:07 +01:00
|
|
|
|
|
|
|
while ((ret= RegEnumValue(key_handle, index++,
|
|
|
|
key_name, &key_name_len,
|
|
|
|
NULL, &type, (LPBYTE)&key_data,
|
|
|
|
&key_data_len)) != ERROR_NO_MORE_ITEMS)
|
|
|
|
{
|
|
|
|
char env_string[sizeof(key_name) + sizeof(key_data) + 2];
|
|
|
|
|
|
|
|
if (ret == ERROR_MORE_DATA)
|
|
|
|
{
|
|
|
|
/* Registry value larger than 'key_data', skip it */
|
|
|
|
DBUG_PRINT("error", ("Skipped registry value that was too large"));
|
|
|
|
}
|
|
|
|
else if (ret == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (type == REG_SZ)
|
|
|
|
{
|
|
|
|
strxmov(env_string, key_name, "=", key_data, NullS);
|
|
|
|
|
|
|
|
/* variable for putenv must be allocated ! */
|
|
|
|
putenv(strdup(env_string)) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Unhandled error, break out of loop */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
key_name_len= sizeof(key_name) - 1;
|
|
|
|
key_data_len= sizeof(key_data) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(key_handle) ;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
DBUG_VOID_RETURN ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
2003-01-28 07:38:28 +01:00
|
|
|
Name: CheckForTcpip| Desc: checks if tcpip has been installed on system
|
|
|
|
According to Microsoft Developers documentation the first registry
|
|
|
|
entry should be enough to check if TCP/IP is installed, but as expected
|
|
|
|
this doesn't work on all Win32 machines :(
|
2000-07-31 21:29:14 +02:00
|
|
|
------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#define TCPIPKEY "SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters"
|
|
|
|
#define WINSOCK2KEY "SYSTEM\\CurrentControlSet\\Services\\Winsock2\\Parameters"
|
|
|
|
#define WINSOCKKEY "SYSTEM\\CurrentControlSet\\Services\\Winsock\\Parameters"
|
|
|
|
|
|
|
|
static my_bool win32_have_tcpip(void)
|
|
|
|
{
|
|
|
|
HKEY hTcpipRegKey;
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, TCPIPKEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, WINSOCK2KEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, WINSOCKKEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
if (!getenv("HAVE_TCPIP") || have_tcpip) /* Provide a workaround */
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey ( hTcpipRegKey);
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
static my_bool win32_init_tcp_ip()
|
|
|
|
{
|
|
|
|
if (win32_have_tcpip())
|
|
|
|
{
|
|
|
|
WORD wVersionRequested = MAKEWORD( 2, 0 );
|
|
|
|
WSADATA wsaData;
|
|
|
|
/* Be a good citizen: maybe another lib has already initialised
|
|
|
|
sockets, so dont clobber them unless necessary */
|
|
|
|
if (WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
{
|
|
|
|
/* Load failed, maybe because of previously loaded
|
|
|
|
incompatible version; try again */
|
|
|
|
WSACleanup( );
|
|
|
|
if (!WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (wsaData.wVersion != wVersionRequested)
|
|
|
|
{
|
|
|
|
/* Version is no good, try again */
|
|
|
|
WSACleanup( );
|
|
|
|
if (!WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif /* __WIN__ */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __NETWARE__
|
2004-05-25 21:00:14 +02:00
|
|
|
/*
|
|
|
|
Basic initialisation for netware
|
|
|
|
*/
|
2003-01-28 07:38:28 +01:00
|
|
|
|
|
|
|
static void netware_init()
|
|
|
|
{
|
2003-02-17 01:14:37 +01:00
|
|
|
char cwd[PATH_MAX], *name;
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2004-05-25 21:00:14 +02:00
|
|
|
DBUG_ENTER("netware_init");
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
/* init only if we are not a client library */
|
|
|
|
if (my_progname)
|
|
|
|
{
|
|
|
|
#if SUPPORTED_BY_LIBC /* Removed until supported in Libc */
|
|
|
|
struct termios tp;
|
|
|
|
/* Disable control characters */
|
|
|
|
tcgetattr(STDIN_FILENO, &tp);
|
|
|
|
tp.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
|
|
tp.c_cc[VEOF] = _POSIX_VDISABLE;
|
|
|
|
tp.c_cc[VSUSP] = _POSIX_VDISABLE;
|
|
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &tp);
|
|
|
|
#endif /* SUPPORTED_BY_LIBC */
|
|
|
|
|
|
|
|
/* With stdout redirection */
|
|
|
|
if (!isatty(STDOUT_FILENO))
|
|
|
|
{
|
|
|
|
setscreenmode(SCR_AUTOCLOSE_ON_EXIT); /* auto close the screen */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setscreenmode(SCR_NO_MODE); /* keep the screen up */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse program name and change to base format */
|
2005-08-09 15:57:35 +02:00
|
|
|
name= (char*) my_progname;
|
2003-01-28 07:38:28 +01:00
|
|
|
for (; *name; name++)
|
|
|
|
{
|
|
|
|
if (*name == '\\')
|
|
|
|
{
|
2003-03-21 22:45:39 +01:00
|
|
|
*name = '/';
|
2003-01-28 07:38:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-21 22:45:39 +01:00
|
|
|
*name = tolower(*name);
|
2003-01-28 07:38:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-25 21:00:14 +02:00
|
|
|
|
|
|
|
DBUG_VOID_RETURN;
|
2003-01-28 07:38:28 +01:00
|
|
|
}
|
|
|
|
#endif /* __NETWARE__ */
|