Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
cd6292d2
Commit
cd6292d2
authored
Aug 10, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Use create_temp_file() when available
parent
3cb09c98
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
22 deletions
+78
-22
innobase/include/os0file.h
innobase/include/os0file.h
+2
-2
innobase/os/os0file.c
innobase/os/os0file.c
+52
-20
sql/ha_innodb.cc
sql/ha_innodb.cc
+24
-0
No files found.
innobase/include/os0file.h
View file @
cd6292d2
...
@@ -134,12 +134,12 @@ void
...
@@ -134,12 +134,12 @@ void
os_io_init_simple
(
void
);
os_io_init_simple
(
void
);
/*===================*/
/*===================*/
/***************************************************************************
/***************************************************************************
Creates a temporary file.
In case of error, causes abnormal termination.
*/
Creates a temporary file. */
FILE
*
FILE
*
os_file_create_tmpfile
(
void
);
os_file_create_tmpfile
(
void
);
/*========================*/
/*========================*/
/* out: temporary file handle, or NULL
*/
/* out: temporary file handle, or NULL on error
*/
/********************************************************************
/********************************************************************
A simple function to open or create a file. */
A simple function to open or create a file. */
...
...
innobase/os/os0file.c
View file @
cd6292d2
...
@@ -371,39 +371,71 @@ os_io_init_simple(void)
...
@@ -371,39 +371,71 @@ os_io_init_simple(void)
}
}
}
}
#ifndef UNIV_HOTBACKUP
/*************************************************************************
Creates a temporary file. This function is defined in ha_innodb.cc. */
int
innobase_mysql_tmpfile
(
void
);
/*========================*/
/* out: temporary file descriptor, or < 0 on error */
#endif
/* !UNIV_HOTBACKUP */
/***************************************************************************
/***************************************************************************
Creates a temporary file.
In case of error, causes abnormal termination.
*/
Creates a temporary file. */
FILE
*
FILE
*
os_file_create_tmpfile
(
void
)
os_file_create_tmpfile
(
void
)
/*========================*/
/*========================*/
/* out: temporary file handle, or NULL
*/
/* out: temporary file handle, or NULL on error
*/
{
{
FILE
*
file
;
FILE
*
file
=
NULL
;
#ifdef __WIN__
int
fd
=
-
1
;
int
fd
=
-
1
;
char
*
name
;
#ifdef UNIV_HOTBACKUP
file
=
NULL
;
int
tries
;
if
(
NULL
==
(
name
=
tempnam
(
fil_path_to_mysql_datadir
,
"ib"
))
for
(
tries
=
10
;
tries
--
;
)
{
||
-
1
==
(
fd
=
_open
(
name
,
_O_CREAT
|
_O_EXCL
|
_O_RDWR
char
*
name
=
tempnam
(
fil_path_to_mysql_datadir
,
"ib"
);
|
_O_SEQUENTIAL
|
_O_SHORT_LIVED
|
_O_TEMPORARY
))
if
(
!
name
)
{
||
NULL
==
(
file
=
fdopen
(
fd
,
"w+b"
)))
{
break
;
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: unable to create"
" temporary file %s
\n
"
,
name
?
name
:
"name"
);
if
(
fd
!=
-
1
)
{
_close
(
fd
);
}
}
fd
=
open
(
name
,
# ifdef __WIN__
O_SEQUENTIAL
|
O_SHORT_LIVED
|
O_TEMPORARY
|
# endif
/* __WIN__ */
O_CREAT
|
O_EXCL
|
O_RDWR
,
S_IREAD
|
S_IWRITE
);
if
(
fd
>=
0
)
{
# ifndef __WIN__
unlink
(
name
);
# endif
/* !__WIN__ */
free
(
name
);
break
;
}
}
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Warning: "
"unable to create temporary file %s, retrying
\n
"
,
name
);
free
(
name
);
free
(
name
);
#else
/* __WIN__ */
}
file
=
tmpfile
();
#else
/* UNIV_HOTBACKUP */
if
(
file
==
NULL
)
{
fd
=
innobase_mysql_tmpfile
();
#endif
/* UNIV_HOTBACKUP */
if
(
fd
>=
0
)
{
file
=
fdopen
(
fd
,
"w+b"
);
}
if
(
!
file
)
{
ut_print_timestamp
(
stderr
);
ut_print_timestamp
(
stderr
);
fputs
(
" InnoDB: Error: unable to create temporary file
\n
"
,
fputs
(
" InnoDB: Error: unable to create temporary file
\n
"
,
stderr
);
stderr
);
if
(
fd
>=
0
)
{
close
(
fd
);
}
}
#endif
/* __WIN__ */
}
return
(
file
);
return
(
file
);
}
}
...
...
sql/ha_innodb.cc
View file @
cd6292d2
...
@@ -406,6 +406,30 @@ innobase_mysql_print_thd(
...
@@ -406,6 +406,30 @@ innobase_mysql_print_thd(
putc
(
'\n'
,
f
);
putc
(
'\n'
,
f
);
}
}
/*************************************************************************
Creates a temporary file. */
extern
"C"
int
innobase_mysql_tmpfile
(
void
)
/*========================*/
/* out: temporary file descriptor, or < 0 on error */
{
char
filename
[
FN_REFLEN
];
File
fd
=
create_temp_file
(
filename
,
NullS
,
"ib"
,
#ifdef __WIN__
O_BINARY
|
O_TRUNC
|
O_SEQUENTIAL
|
O_TEMPORARY
|
O_SHORT_LIVED
|
#endif
/* __WIN__ */
O_CREAT
|
O_EXCL
|
O_RDWR
,
MYF
(
MY_WME
));
#ifndef __WIN__
if
(
fd
>=
0
)
{
unlink
(
filename
);
}
#endif
/* !__WIN__ */
return
(
fd
);
}
/*************************************************************************
/*************************************************************************
Gets the InnoDB transaction handle for a MySQL handler object, creates
Gets the InnoDB transaction handle for a MySQL handler object, creates
an InnoDB transaction struct if the corresponding MySQL thread struct still
an InnoDB transaction struct if the corresponding MySQL thread struct still
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment