summaryrefslogtreecommitdiff
path: root/sql/log.cc
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2000-11-15 23:00:06 +0200
committerunknown <monty@narttu.mysql.fi>2000-11-15 23:00:06 +0200
commit9a846a52ae62f701c2d54d3f468e2ead393acf91 (patch)
tree622092bf596b26a1f762020729c03d573a5b216d /sql/log.cc
parentf3d2341f1f30384d92b285c1e421d8c599ee2b79 (diff)
downloadmariadb-git-9a846a52ae62f701c2d54d3f468e2ead393acf91.tar.gz
changed to use IO_CACHE instead of FILE
BitKeeper/deleted/.del-mf_reccache.c: ***MISSING WEAVE*** Docs/manual.texi: Fix licence information + update changelog client/mysqlimport.c: Fixed typo client/sql_string.cc: Added support for IO_CACHE client/sql_string.h: Added support for IO_CACHE include/my_sys.h: More options for IO_CACHE mysql.proj: Update mysys/Makefile.am: Remoced mf_reccache.c mysys/mf_cache.c: Fixed return value on error and optimzed used of write cache files mysys/mf_iocache.c: More options for IO_CACHE mysys/my_vsnprintf.c: Optimized code sql/mf_iocache.cc: merge with mf_iocache.c sql/net_pkg.cc: cleanup sql/sql_class.cc: Support for transaction safe log files sql/sql_string.cc: Added support for IO_CACHE sql/sql_string.h: Added support for IO_CACHE sql/time.cc: cleanup BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/log.cc')
-rw-r--r--sql/log.cc342
1 files changed, 174 insertions, 168 deletions
diff --git a/sql/log.cc b/sql/log.cc
index c1e38a104ca..4ed48b18f0f 100644
--- a/sql/log.cc
+++ b/sql/log.cc
@@ -72,17 +72,16 @@ static int find_uniq_filename(char *name)
DBUG_RETURN(0);
}
-
-
-MYSQL_LOG::MYSQL_LOG(): file(-1),index_file(-1),last_time(0),query_start(0),
- name(0), log_type(LOG_CLOSED),write_error(0),inited(0),
- no_rotate(0)
+MYSQL_LOG::MYSQL_LOG(): last_time(0), query_start(0),
+ name(0), log_type(LOG_CLOSED),write_error(0),
+ inited(0), opened(0), no_rotate(0)
{
/*
We don't want to intialize LOCK_Log here as the thread system may
not have been initailized yet. We do it instead at 'open'.
*/
- index_file_name[0] = 0;
+ index_file_name[0] = 0;
+ bzero((char*) &log_file,sizeof(log_file));
}
MYSQL_LOG::~MYSQL_LOG()
@@ -103,6 +102,7 @@ void MYSQL_LOG::set_index_file_name(const char* index_file_name)
this->index_file_name[0] = 0;
}
+
int MYSQL_LOG::generate_new_name(char *new_name, const char *log_name)
{
if (log_type == LOG_NORMAL)
@@ -128,6 +128,9 @@ void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
{
MY_STAT tmp_stat;
char buff[512];
+ File file= -1;
+ bool do_magic;
+
if (!inited)
{
inited=1;
@@ -136,29 +139,27 @@ void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
if (log_type_arg == LOG_BIN && *fn_ext(log_name))
no_rotate = 1;
}
-
+
log_type=log_type_arg;
- name=my_strdup(log_name,MYF(0));
+ if (!(name=my_strdup(log_name,MYF(MY_WME))))
+ goto err;
if (new_name)
strmov(log_file_name,new_name);
else if (generate_new_name(log_file_name, name))
- return;
+ goto err;
if (log_type == LOG_BIN && !index_file_name[0])
fn_format(index_file_name, name, mysql_data_home, ".index", 6);
db[0]=0;
- bool do_magic = ((log_type == LOG_BIN) && !my_stat(log_file_name,
- &tmp_stat, MYF(0)));
+ do_magic = ((log_type == LOG_BIN) && !my_stat(log_file_name,
+ &tmp_stat, MYF(0)));
if ((file=my_open(log_file_name,O_APPEND | O_WRONLY | O_BINARY,
- MYF(MY_WME | ME_WAITTANG)) < 0)
- {
- my_free(name,MYF(0));
- name=0;
- log_type=LOG_CLOSED;
- return;
- }
+ MYF(MY_WME | ME_WAITTANG))) < 0 ||
+ init_io_cache(&log_file, file, IO_SIZE, WRITE_CACHE,
+ my_tell(file,MYF(MY_WME)), 0, MYF(MY_WME | MY_NABP)))
+ goto err;
if (log_type == LOG_NORMAL)
{
@@ -169,7 +170,9 @@ void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
sprintf(buff, "%s, Version: %s, started with:\nTcp port: %d Unix socket: %s\n", my_progname,server_version,mysql_port,mysql_unix_port);
#endif
end=strmov(strend(buff),"Time Id Command Argument\n");
- my_write(file,buff,(uint) (end-buff),MYF(0));
+ if (my_b_write(&log_file,buff,(uint) (end-buff)) ||
+ flush_io_cache(&log_file))
+ goto err;
}
else if (log_type == LOG_NEW)
{
@@ -184,11 +187,12 @@ void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
tm_tmp.tm_hour,
tm_tmp.tm_min,
tm_tmp.tm_sec);
- my_write(file,buff,(uint) strlen(buff),MYF(0));
+ if (my_b_write(&log_file,buff,(uint) strlen(buff)) ||
+ flush_io_cache(&log_file))
+ goto err;
}
else if (log_type == LOG_BIN)
{
-
// Explanation of the boolean black magic:
//
// if we are supposed to write magic number try write
@@ -196,34 +200,36 @@ void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
// then if index_file has not been previously opened, try to open it
// clean up if failed
- if ((do_magic && my_write(file, (byte*) BINLOG_MAGIC, 4,
- MYF(MY_NABP|MY_WME)) ||
+ if ((do_magic && my_b_write(&log_file, (byte*) BINLOG_MAGIC, 4)) ||
(index_file < 0 &&
- (index_file = my_fopen(index_file_name,O_APPEND | O_BINARY | O_RDWR,
- MYF(MY_WME))) < 0)))
- {
- my_close(file,MYF(MY_WME));
- my_free(name,MYF(0));
- name=0;
- file= -1;
- log_type=LOG_CLOSED;
- return;
- }
+ (index_file = my_open(index_file_name,O_APPEND | O_BINARY | O_RDWR,
+ MYF(MY_WME))) < 0))
+ goto err;
Start_log_event s;
- s.write(file);
+ s.write(&log_file);
pthread_mutex_lock(&LOCK_index);
- my_seek(index_file, 0L, MY_SEEK_END, MYF(MY_WME));
my_write(index_file, log_file_name,strlen(log_file_name), MYF(0));
my_write(index_file, "\n",1, MYF(0));
pthread_mutex_unlock(&LOCK_index);
}
+ return;
+
+err:
+ if (file >= 0)
+ my_close(file,MYF(0));
+ end_io_cache(&log_file);
+ x_free(name); name=0;
+ log_type=LOG_CLOSED;
+
+ return;
+
}
int MYSQL_LOG::get_current_log(LOG_INFO* linfo)
{
pthread_mutex_lock(&LOCK_log);
- strmake(linfo->log_file_name, log_file_name, sizeof(linfo->log_file_name));
- linfo->pos = my_tell(file, MYF(MY_WME));
+ strmake(linfo->log_file_name, log_file_name, sizeof(linfo->log_file_name)-1);
+ linfo->pos = my_b_tell(&log_file);
pthread_mutex_unlock(&LOCK_log);
return 0;
}
@@ -231,46 +237,46 @@ int MYSQL_LOG::get_current_log(LOG_INFO* linfo)
// if log_name is "" we stop at the first entry
int MYSQL_LOG::find_first_log(LOG_INFO* linfo, const char* log_name)
{
- // mutex needed because we need to make sure the file pointer does not move
- // from under our feet
- if (index_file < 0) return LOG_INFO_INVALID;
+ if (index_file < 0)
+ return LOG_INFO_INVALID;
int error = 0;
char* fname = linfo->log_file_name;
int log_name_len = (uint) strlen(log_name);
+ IO_CACHE io_cache;
+ // mutex needed because we need to make sure the file pointer does not move
+ // from under our feet
pthread_mutex_lock(&LOCK_index);
- if (my_seek(index_file, 0L, MY_SEEK_SET, MYF(MY_WME) ) == MY_FILEPOS_ERROR)
+ if (init_io_cache(&io_cache, index_file, IO_SIZE, READ_CACHE, (my_off_t) 0,
+ 0, MYF(MY_WME)))
{
error = LOG_INFO_SEEK;
goto err;
}
-
for(;;)
{
- if (!fgets(fname, FN_REFLEN, index_file))
+ uint length;
+ if (!(length=my_b_gets(&io_cache, fname, FN_REFLEN)))
{
- error = feof(index_file) ? LOG_INFO_EOF : LOG_INFO_IO;
+ error = !io_cache.error ? LOG_INFO_EOF : LOG_INFO_IO;
goto err;
}
// if the log entry matches, empty string matching anything
if (!log_name_len ||
- (fname[log_name_len] == '\n' &&
+ (log_name_len == length+1 && fname[log_name_len] == '\n' &&
!memcmp(fname, log_name, log_name_len)))
{
- if (log_name_len)
- fname[log_name_len] = 0; // to kill \n
- else
- {
- *(strend(fname) - 1) = 0;
- }
- linfo->index_file_offset = my_tell(index_file, MYF(MY_WME));
+ fname[length-1]=0; // remove last \n
+ linfo->index_file_offset = my_b_tell(&io_cache);
break;
}
}
error = 0;
+
err:
pthread_mutex_unlock(&LOCK_index);
+ end_io_cache(&io_cache);
return error;
}
@@ -283,27 +289,29 @@ int MYSQL_LOG::find_next_log(LOG_INFO* linfo)
if (!index_file) return LOG_INFO_INVALID;
int error = 0;
char* fname = linfo->log_file_name;
- char* end ;
-
- pthread_mutex_lock(&LOCK_index);
- if (my_fseek(index_file, linfo->index_file_offset, MY_SEEK_SET, MYF(MY_WME) ) == MY_FILEPOS_ERROR)
- {
- error = LOG_INFO_SEEK;
- goto err;
- }
+ IO_CACHE io_cache;
+ uint length;
- if (!fgets(fname, FN_REFLEN, index_file))
- {
- error = feof(index_file) ? LOG_INFO_EOF : LOG_INFO_IO;
- goto err;
- }
-
- end = strend(fname) - 1;
- *end = 0; // kill /n
- linfo->index_file_offset = ftell(index_file);
+ pthread_mutex_lock(&LOCK_index);
+ if (init_io_cache(&io_cache, index_file, IO_SIZE,
+ READ_CACHE, (my_off_t) linfo->index_file_offset, 0,
+ MYF(MY_WME)))
+ {
+ error = LOG_INFO_SEEK;
+ goto err;
+ }
+ if (!(length=my_b_gets(&io_cache, fname, FN_REFLEN)))
+ {
+ error = !io_cache.error ? LOG_INFO_EOF : LOG_INFO_IO;
+ goto err;
+ }
+ fname[length-1]=0; // kill /n
+ linfo->index_file_offset = my_b_tell(&io_cache);
error = 0;
+
err:
pthread_mutex_unlock(&LOCK_index);
+ end_io_cache(&io_cache);
return error;
}
@@ -311,22 +319,18 @@ err:
// we assume that buf has at least FN_REFLEN bytes alloced
void MYSQL_LOG::make_log_name(char* buf, const char* log_ident)
{
+ buf[0] = 0; // In case of error
if (inited)
- {
- int dir_len = dirname_length(log_file_name);
- int ident_len = (uint) strlen(log_ident);
- if (dir_len + ident_len + 1 > FN_REFLEN)
- {
- buf[0] = 0;
- return; // protection agains malicious buffer overflow
- }
+ {
+ int dir_len = dirname_length(log_file_name);
+ int ident_len = (uint) strlen(log_ident);
+ if (dir_len + ident_len + 1 > FN_REFLEN)
+ return; // protection agains malicious buffer overflow
- memcpy(buf, log_file_name, dir_len);
- memcpy(buf + dir_len, log_ident, ident_len + 1); // this takes care of \0
- // at the end
- }
- else
- buf[0] = 0;
+ memcpy(buf, log_file_name, dir_len);
+ // copy filename + end null
+ memcpy(buf + dir_len, log_ident, ident_len + 1);
+ }
}
bool MYSQL_LOG::is_active(const char* log_file_name)
@@ -336,15 +340,17 @@ bool MYSQL_LOG::is_active(const char* log_file_name)
void MYSQL_LOG::new_file()
{
- if (file)
+ // only rotate open logs that are marked non-rotatable
+ // (binlog with constant name are non-rotatable)
+ if (is_open() && ! no_rotate)
{
- if (no_rotate) // do not rotate logs that are marked non-rotatable
- return; // ( for binlog with constant name)
-
char new_name[FN_REFLEN], *old_name=name;
VOID(pthread_mutex_lock(&LOCK_log));
if (generate_new_name(new_name, name))
+ {
+ VOID(pthread_mutex_unlock(&LOCK_log));
return; // Something went wrong
+ }
if (log_type == LOG_BIN)
{
/*
@@ -352,15 +358,13 @@ void MYSQL_LOG::new_file()
to change base names at some point.
*/
Rotate_log_event r(new_name+dirname_length(new_name));
- r.write(file);
+ r.write(&log_file);
VOID(pthread_cond_broadcast(&COND_binlog_update));
}
name=0;
close();
open(old_name, log_type, new_name);
my_free(old_name,MYF(0));
- if (!file) // Something went wrong
- log_type=LOG_CLOSED;
last_time=query_start=0;
write_error=0;
VOID(pthread_mutex_unlock(&LOCK_log));
@@ -375,7 +379,10 @@ void MYSQL_LOG::write(THD *thd,enum enum_server_command command,
{
va_list args;
va_start(args,format);
+ char buff[32];
VOID(pthread_mutex_lock(&LOCK_log));
+
+ /* Test if someone closed after the is_open test */
if (log_type != LOG_CLOSED)
{
time_t skr;
@@ -405,28 +412,30 @@ void MYSQL_LOG::write(THD *thd,enum enum_server_command command,
struct tm *start;
localtime_r(&skr,&tm_tmp);
start=&tm_tmp;
- if (fprintf(file,"%02d%02d%02d %2d:%02d:%02d\t",
- start->tm_year % 100,
- start->tm_mon+1,
- start->tm_mday,
- start->tm_hour,
- start->tm_min,
- start->tm_sec) < 0)
+ /* Note that my_b_write() assumes it knows the length for this */
+ sprintf(buff,"%02d%02d%02d %2d:%02d:%02d\t",
+ start->tm_year % 100,
+ start->tm_mon+1,
+ start->tm_mday,
+ start->tm_hour,
+ start->tm_min,
+ start->tm_sec);
+ if (my_b_write(&log_file,buff,16))
error=errno;
}
- else if (fputs("\t\t",file) < 0)
+ else if (my_b_write(&log_file,"\t\t",2) < 0)
error=errno;
- if (fprintf(file,"%7ld %-10.10s",
- id,command_name[(uint) command]) < 0)
+ sprintf(buff,"%7ld %-10.10s", id,command_name[(uint) command]);
+ if (my_b_write(&log_file,buff,strlen(buff)))
error=errno;
if (format)
{
- if (fputc(' ',file) < 0 || vfprintf(file,format,args) < 0)
+ if (my_b_write(&log_file," ",1) ||
+ my_b_printf(&log_file,format,args) == (uint) -1)
error=errno;
}
- if (fputc('\n',file) < 0)
- error=errno;
- if (fflush(file) < 0)
+ if (my_b_write(&log_file,"\n",1) ||
+ flush_io_cache(&log_file))
error=errno;
if (error && ! write_error)
{
@@ -446,7 +455,7 @@ void MYSQL_LOG::write(Query_log_event* event_info)
if (is_open())
{
VOID(pthread_mutex_lock(&LOCK_log));
- if (file)
+ if (is_open())
{
THD *thd=event_info->thd;
if ((!(thd->options & OPTION_BIN_LOG) &&
@@ -460,43 +469,38 @@ void MYSQL_LOG::write(Query_log_event* event_info)
if (thd->last_insert_id_used)
{
Intvar_log_event e((uchar)LAST_INSERT_ID_EVENT, thd->last_insert_id);
- if (e.write(file))
+ if (e.write(&log_file))
{
sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
goto err;
}
}
-
if (thd->insert_id_used)
{
Intvar_log_event e((uchar)INSERT_ID_EVENT, thd->last_insert_id);
- if (e.write(file))
+ if (e.write(&log_file))
{
sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
goto err;
}
}
-
if (thd->convert_set)
+ {
+ char buf[1024] = "SET CHARACTER SET ";
+ char* p = strend(buf);
+ p = strmov(p, thd->convert_set->name);
+ int save_query_length = thd->query_length;
+ // just in case somebody wants it later
+ thd->query_length = (uint)(p - buf);
+ Query_log_event e(thd, buf);
+ if (e.write(&log_file))
{
- char buf[1024] = "SET CHARACTER SET ";
- char* p = strend(buf);
- p = strmov(p, thd->convert_set->name);
- int save_query_length = thd->query_length;
- // just in case somebody wants it later
- thd->query_length = (uint)(p - buf);
- Query_log_event e(thd, buf);
- if (e.write(file))
- {
- sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
- goto err;
- }
-
- thd->query_length = save_query_length; // clean up
-
+ sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
+ goto err;
}
-
- if (event_info->write(file))
+ thd->query_length = save_query_length; // clean up
+ }
+ if (event_info->write(&log_file) || flush_io_cache(&log_file))
{
sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
}
@@ -512,13 +516,13 @@ void MYSQL_LOG::write(Load_log_event* event_info)
if (is_open())
{
VOID(pthread_mutex_lock(&LOCK_log));
- if (file)
+ if (is_open())
{
THD *thd=event_info->thd;
if ((thd->options & OPTION_BIN_LOG) ||
!(thd->master_access & PROCESS_ACL))
{
- if (event_info->write(file))
+ if (event_info->write(&log_file) || flush_io_cache(&log_file))
sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
VOID(pthread_cond_broadcast(&COND_binlog_update));
}
@@ -537,7 +541,7 @@ void MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
{
time_t current_time;
VOID(pthread_mutex_lock(&LOCK_log));
- if (file)
+ if (is_open())
{ // Safety agains reopen
int error=0;
char buff[80],*end;
@@ -556,37 +560,42 @@ void MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
last_time=current_time;
struct tm tm_tmp;
struct tm *start;
+ char buff[32];
localtime_r(&current_time,&tm_tmp);
start=&tm_tmp;
- if (fprintf(file,"# Time: %02d%02d%02d %2d:%02d:%02d\n",
- start->tm_year % 100,
- start->tm_mon+1,
- start->tm_mday,
- start->tm_hour,
- start->tm_min,
- start->tm_sec) < 0)
+ /* Note that my_b_write() assumes it knows the length for this */
+ sprintf(buff,"# Time: %02d%02d%02d %2d:%02d:%02d\n",
+ start->tm_year % 100,
+ start->tm_mon+1,
+ start->tm_mday,
+ start->tm_hour,
+ start->tm_min,
+ start->tm_sec);
+ if (my_b_write(&log_file,buff,24))
error=errno;
}
- if (fprintf(file, "# User@Host: %s [%s] @ %s [%s]\n",
- thd->priv_user,
- thd->user,
- thd->host ? thd->host : "",
- thd->ip ? thd->ip : "") < 0)
- error=errno;;
+ if (my_b_printf(&log_file, "# User@Host: %s [%s] @ %s [%s]\n",
+ thd->priv_user,
+ thd->user,
+ thd->host ? thd->host : "",
+ thd->ip ? thd->ip : ""))
+ error=errno;
}
if (query_start)
{
/* For slow query log */
if (!(specialflag & SPECIAL_LONG_LOG_FORMAT))
current_time=time(NULL);
- fprintf(file,"# Time: %lu Lock_time: %lu Rows_sent: %lu\n",
- (ulong) (current_time - query_start),
- (ulong) (thd->time_after_lock - query_start),
- (ulong) thd->sent_row_count);
+ if (my_b_printf(&log_file,
+ "# Time: %lu Lock_time: %lu Rows_sent: %lu\n",
+ (ulong) (current_time - query_start),
+ (ulong) (thd->time_after_lock - query_start),
+ (ulong) thd->sent_row_count))
+ error=errno;
}
if (thd->db && strcmp(thd->db,db))
{ // Database changed
- if (fprintf(file,"use %s;\n",thd->db) < 0)
+ if (my_b_printf(&log_file,"use %s;\n",thd->db))
error=errno;
strmov(db,thd->db);
}
@@ -618,7 +627,8 @@ void MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
*end++=';';
*end++='\n';
*end=0;
- if (fputs("SET ",file) < 0 || fputs(buff+1,file) < 0)
+ if (my_b_write(&log_file,"SET ",4) ||
+ my_b_write(&log_file,buff+1,(uint) (end-buff)-1))
error=errno;
}
if (!query)
@@ -626,10 +636,9 @@ void MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
query="#adminstrator command";
query_length=21;
}
- if (my_fwrite(file,(byte*) query,query_length,MYF(MY_NABP)) ||
- fputc(';',file) < 0 || fputc('\n',file) < 0)
- error=errno;
- if (fflush(file) < 0)
+ if (my_b_write(&log_file,(byte*) query,query_length) ||
+ my_b_write(&log_file,";\n",2) ||
+ flush_io_cache(&log_file))
error=errno;
if (error && ! write_error)
{
@@ -641,51 +650,48 @@ void MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
}
}
-
-
+#ifdef TO_BE_REMOVED
void MYSQL_LOG::flush()
{
- if (file)
- if (fflush(file) < 0 && ! write_error)
+ if (is_open())
+ if (flush_io_cache(log_file) && ! write_error)
{
write_error=1;
sql_print_error(ER(ER_ERROR_ON_WRITE),name,errno);
}
}
+#endif
void MYSQL_LOG::close(bool exiting)
{ // One can't set log_type here!
- if (file)
+ if (is_open())
{
+ File file=log_file.file;
if (log_type == LOG_BIN)
{
Stop_log_event s;
- s.write(file);
+ s.write(&log_file);
VOID(pthread_cond_broadcast(&COND_binlog_update));
}
- if (my_fclose(file,MYF(0)) < 0 && ! write_error)
+ end_io_cache(&log_file);
+ if (my_close(file,MYF(0)) < 0 && ! write_error)
{
write_error=1;
sql_print_error(ER(ER_ERROR_ON_WRITE),name,errno);
}
- file=0;
- }
- if (name)
- {
- my_free(name,MYF(0));
- name=0;
+ log_type=LOG_CLOSED;
}
-
- if (exiting && index_file)
+ if (exiting && index_file >= 0)
{
- if (my_fclose(index_file,MYF(0)) < 0 && ! write_error)
+ if (my_close(index_file,MYF(0)) < 0 && ! write_error)
{
write_error=1;
sql_print_error(ER(ER_ERROR_ON_WRITE),name,errno);
}
index_file=0;
}
+ safeFree(name);
}