2009-05-27 15:15:59 +05:30
|
|
|
/*****************************************************************************
|
|
|
|
|
2016-06-21 14:21:03 +02:00
|
|
|
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
2017-01-05 10:48:03 +02:00
|
|
|
Copyright (c) 2017, MariaDB Corporation
|
2009-05-27 15:15:59 +05:30
|
|
|
|
|
|
|
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 the Free Software
|
|
|
|
Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of 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
|
2012-08-01 17:27:34 +03:00
|
|
|
this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
|
2009-05-27 15:15:59 +05:30
|
|
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************//**
|
|
|
|
@file include/srv0start.h
|
|
|
|
Starts the Innobase database server
|
|
|
|
|
|
|
|
Created 10/10/1995 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#ifndef srv0start_h
|
|
|
|
#define srv0start_h
|
|
|
|
|
|
|
|
#include "univ.i"
|
2012-08-01 17:27:34 +03:00
|
|
|
#include "log0log.h"
|
2009-05-27 15:15:59 +05:30
|
|
|
#include "ut0byte.h"
|
|
|
|
|
2016-08-12 11:17:45 +03:00
|
|
|
// Forward declaration
|
|
|
|
struct dict_table_t;
|
|
|
|
|
|
|
|
/** If buffer pool is less than the size,
|
|
|
|
only one buffer pool instance is used. */
|
|
|
|
#define BUF_POOL_SIZE_THRESHOLD (1024 * 1024 * 1024)
|
2012-08-01 17:27:34 +03:00
|
|
|
|
2009-05-27 15:15:59 +05:30
|
|
|
/*********************************************************************//**
|
2016-08-12 11:17:45 +03:00
|
|
|
Parse temporary tablespace configuration.
|
|
|
|
@return true if ok, false on parse error */
|
|
|
|
bool
|
|
|
|
srv_parse_temp_data_file_paths_and_sizes(
|
|
|
|
/*=====================================*/
|
2009-05-27 15:15:59 +05:30
|
|
|
char* str); /*!< in/out: the data file path string */
|
|
|
|
/*********************************************************************//**
|
|
|
|
Frees the memory allocated by srv_parse_data_file_paths_and_sizes()
|
|
|
|
and srv_parse_log_group_home_dirs(). */
|
|
|
|
void
|
|
|
|
srv_free_paths_and_sizes(void);
|
|
|
|
/*==========================*/
|
|
|
|
/*********************************************************************//**
|
|
|
|
Adds a slash or a backslash to the end of a string if it is missing
|
|
|
|
and the string is not empty.
|
2016-08-12 11:17:45 +03:00
|
|
|
@return string which has the separator if the string is not empty */
|
2009-05-27 15:15:59 +05:30
|
|
|
char*
|
|
|
|
srv_add_path_separator_if_needed(
|
|
|
|
/*=============================*/
|
|
|
|
char* str); /*!< in: null-terminated character string */
|
2016-12-30 15:04:10 +02:00
|
|
|
|
2009-05-27 15:15:59 +05:30
|
|
|
/****************************************************************//**
|
|
|
|
Starts Innobase and creates a new database if database files
|
|
|
|
are not found and the user wants.
|
2016-08-12 11:17:45 +03:00
|
|
|
@return DB_SUCCESS or error code */
|
2013-03-26 00:03:13 +02:00
|
|
|
dberr_t
|
2009-05-27 15:15:59 +05:30
|
|
|
innobase_start_or_create_for_mysql(void);
|
|
|
|
/*====================================*/
|
2017-01-31 19:43:03 +02:00
|
|
|
/** Shut down InnoDB. */
|
|
|
|
void
|
|
|
|
innodb_shutdown();
|
2012-08-01 17:27:34 +03:00
|
|
|
|
2016-12-14 17:46:58 +01:00
|
|
|
/****************************************************************//**
|
|
|
|
Shuts down background threads that can generate undo pages. */
|
|
|
|
void
|
|
|
|
srv_shutdown_bg_undo_sources(void);
|
|
|
|
|
2012-08-01 17:27:34 +03:00
|
|
|
/********************************************************************
|
|
|
|
Signal all per-table background threads to shutdown, and wait for them to do
|
|
|
|
so. */
|
|
|
|
void
|
|
|
|
srv_shutdown_table_bg_threads(void);
|
2009-05-27 15:15:59 +05:30
|
|
|
/*=============================*/
|
2013-03-26 00:03:13 +02:00
|
|
|
|
|
|
|
/*************************************************************//**
|
|
|
|
Copy the file path component of the physical file to parameter. It will
|
|
|
|
copy up to and including the terminating path separator.
|
|
|
|
@return number of bytes copied or ULINT_UNDEFINED if destination buffer
|
|
|
|
is smaller than the path to be copied. */
|
|
|
|
ulint
|
|
|
|
srv_path_copy(
|
|
|
|
/*==========*/
|
|
|
|
char* dest, /*!< out: destination buffer */
|
|
|
|
ulint dest_len, /*!< in: max bytes to copy */
|
|
|
|
const char* basedir, /*!< in: base directory */
|
|
|
|
const char* table_name) /*!< in: source table name */
|
2016-06-21 14:21:03 +02:00
|
|
|
MY_ATTRIBUTE((nonnull, warn_unused_result));
|
2013-03-26 00:03:13 +02:00
|
|
|
|
2016-08-12 11:17:45 +03:00
|
|
|
/** Get the meta-data filename from the table name for a
|
|
|
|
single-table tablespace.
|
|
|
|
@param[in] table table object
|
|
|
|
@param[out] filename filename
|
|
|
|
@param[in] max_len filename max length */
|
2013-03-26 00:03:13 +02:00
|
|
|
void
|
|
|
|
srv_get_meta_data_filename(
|
2016-08-12 11:17:45 +03:00
|
|
|
dict_table_t* table,
|
|
|
|
char* filename,
|
|
|
|
ulint max_len);
|
2013-03-26 00:03:13 +02:00
|
|
|
|
2016-09-06 09:43:16 +03:00
|
|
|
/** Get the encryption-data filename from the table name for a
|
|
|
|
single-table tablespace.
|
|
|
|
@param[in] table table object
|
|
|
|
@param[out] filename filename
|
|
|
|
@param[in] max_len filename max length */
|
|
|
|
void
|
|
|
|
srv_get_encryption_data_filename(
|
|
|
|
dict_table_t* table,
|
|
|
|
char* filename,
|
|
|
|
ulint max_len);
|
|
|
|
|
2009-05-27 15:15:59 +05:30
|
|
|
/** Log sequence number at shutdown */
|
2012-08-01 17:27:34 +03:00
|
|
|
extern lsn_t srv_shutdown_lsn;
|
2009-05-27 15:15:59 +05:30
|
|
|
/** Log sequence number immediately after startup */
|
2012-08-01 17:27:34 +03:00
|
|
|
extern lsn_t srv_start_lsn;
|
2009-05-27 15:15:59 +05:30
|
|
|
|
|
|
|
/** TRUE if the server is being started */
|
2016-08-12 11:17:45 +03:00
|
|
|
extern bool srv_is_being_started;
|
|
|
|
/** TRUE if SYS_TABLESPACES is available for lookups */
|
|
|
|
extern bool srv_sys_tablespaces_open;
|
2009-05-27 15:15:59 +05:30
|
|
|
/** TRUE if the server was successfully started */
|
|
|
|
extern ibool srv_was_started;
|
|
|
|
/** TRUE if the server is being started, before rolling back any
|
|
|
|
incomplete transactions */
|
2016-08-12 11:17:45 +03:00
|
|
|
extern bool srv_startup_is_before_trx_rollback_phase;
|
2009-05-27 15:15:59 +05:30
|
|
|
|
|
|
|
/** TRUE if a raw partition is in use */
|
|
|
|
extern ibool srv_start_raw_disk_in_use;
|
|
|
|
|
|
|
|
/** Shutdown state */
|
2016-08-12 11:17:45 +03:00
|
|
|
enum srv_shutdown_t {
|
2009-05-27 15:15:59 +05:30
|
|
|
SRV_SHUTDOWN_NONE = 0, /*!< Database running normally */
|
|
|
|
SRV_SHUTDOWN_CLEANUP, /*!< Cleaning up in
|
|
|
|
logs_empty_and_mark_files_at_shutdown() */
|
2012-08-01 17:27:34 +03:00
|
|
|
SRV_SHUTDOWN_FLUSH_PHASE,/*!< At this phase the master and the
|
|
|
|
purge threads must have completed their
|
|
|
|
work. Once we enter this phase the
|
|
|
|
page_cleaner can clean up the buffer
|
|
|
|
pool and exit */
|
2009-05-27 15:15:59 +05:30
|
|
|
SRV_SHUTDOWN_LAST_PHASE,/*!< Last phase after ensuring that
|
|
|
|
the buffer pool can be freed: flush
|
|
|
|
all file spaces and close all files */
|
|
|
|
SRV_SHUTDOWN_EXIT_THREADS/*!< Exit all threads */
|
|
|
|
};
|
|
|
|
|
|
|
|
/** At a shutdown this value climbs from SRV_SHUTDOWN_NONE to
|
|
|
|
SRV_SHUTDOWN_CLEANUP and then to SRV_SHUTDOWN_LAST_PHASE, and so on */
|
2016-08-12 11:17:45 +03:00
|
|
|
extern enum srv_shutdown_t srv_shutdown_state;
|
2009-05-27 15:15:59 +05:30
|
|
|
#endif
|