/*******************************************************************//**
Creates a space memory object and puts it to the tablespace memory cache. If
there is an error, prints an error message to the .err log.
@return    TRUE if success */
UNIV_INTERN
ibool
fil_space_create(
/*=============*/
    const char*    name,    /*!< in: space name */
    ulint        id,    /*!< in: space id */
    ulint        flags,    /*!< in: compressed page size
                and file format, or 0 */
    ulint        purpose)/*!< in: FIL_TABLESPACE, or FIL_LOG if log */
{
    fil_space_t*    space;

    /* The tablespace flags (FSP_SPACE_FLAGS) should be 0 for
    ROW_FORMAT=COMPACT
    ((table->flags & ~(~0 << DICT_TF_BITS)) == DICT_TF_COMPACT) and
    ROW_FORMAT=REDUNDANT (table->flags == 0).  For any other
    format, the tablespace flags should equal
    (table->flags & ~(~0 << DICT_TF_BITS)). */
    ut_a(flags != DICT_TF_COMPACT);
    ut_a(!(flags & (~0UL << DICT_TF_BITS)));

try_again:
    /*printf(
    "InnoDB: Adding tablespace %lu of name %s, purpose %lu\n", id, name,
    purpose);*/

    ut_a(fil_system);
    ut_a(name);

    mutex_enter(&fil_system->mutex);

    space = fil_space_get_by_name(name);

    if (UNIV_LIKELY_NULL(space)) {
      goto try_again;
    }

    space = fil_space_get_by_id(id);

    if (UNIV_LIKELY_NULL(space)) {     return(FALSE);
    }
        /**     *结构体详见     */
    space = mem_alloc(sizeof(fil_space_t));

    space->name = mem_strdup(name);
    space->id = id;

    fil_system->tablespace_version++;
    space->tablespace_version = fil_system->tablespace_version;
    space->mark = FALSE;

    if (UNIV_LIKELY(purpose == FIL_TABLESPACE && !recv_recovery_on)
        && UNIV_UNLIKELY(id > fil_system->max_assigned_id)) {
        if (!fil_system->space_id_reuse_warned) {

        }

        fil_system->max_assigned_id = id;
    }

    space->stop_ios = FALSE;
    space->stop_new_ops = FALSE;
    space->purpose = purpose;
    space->size = ;
    space->flags = flags;

    space->n_reserved_extents = ;

    space->n_pending_flushes = ;
    space->n_pending_ops = ;
    //初始化chain链表
    UT_LIST_INIT(space->chain);
    space->magic_n = FIL_SPACE_MAGIC_N;

    rw_lock_create(fil_space_latch_key, &space->latch, SYNC_FSP);
        //分别以id和name作为哈希值,放入fil_system相应哈希表中
    HASH_INSERT(fil_space_t, hash, fil_system->spaces, id, space);

    HASH_INSERT(fil_space_t, name_hash, fil_system->name_hash,ut_fold_string(name), space);
    space->is_in_unflushed_spaces = FALSE;
        //放入lru中
    UT_LIST_ADD_LAST(space_list, fil_system->space_list, space);

    mutex_exit(&fil_system->mutex);

    return(TRUE);
}
/*******************************************************************//**
Returns the table space by a given name, NULL if not found. */
UNIV_INLINE
fil_space_t*
fil_space_get_by_name(
/*==================*/
    const char*    name)    /*!< in: space name */
{
    fil_space_t*    space;
    ulint        fold;

    ut_ad(mutex_own(&fil_system->mutex));

    fold = ut_fold_string(name);

    HASH_SEARCH(name_hash, fil_system->name_hash, fold,
            fil_space_t*, space,
            ut_ad(space->magic_n == FIL_SPACE_MAGIC_N),
            !strcmp(name, space->name));

    return(space);
}

fil_space_create的更多相关文章

  1. fil_system_struct

    /** The tablespace memory cache */ typedef struct fil_system_struct fil_system_t; /** The tablespace ...

  2. Innodb物理存储结构系列1

    本篇先介绍 下Innodb表空间,文件相关的内存数据结构. 1. 数据结构 Innodb的tablespace和文件的关系,是一对多的关系,先来看三个结构体 1. fil_system_struct: ...

  3. InnoDB undo log物理结构的初始化

    水平有限,如果有误请指出.一直以来未对Innodb 的undo进行好好的学习,最近刚好有点时间准备学习一下,通过阿里内核月报和自己看代码的综合总结一下.本文环境: 代码版本 percona 5.7.2 ...

  4. MySQL启动过程详解三:Innodb存储引擎的启动

    Innodb启动过程如下: 1. 初始化innobase_hton,它是一个handlerton类型的指针,以便在server层能够调用存储引擎的接口. 2. Innodb相关参数的检车和初始化,包括 ...

随机推荐

  1. Careercup - Facebook面试题 - 6321181669982208

    2014-05-02 09:40 题目链接 原题: Given a number N, write a program that returns all possible combinations o ...

  2. Android PopupWindow 点击消失解决办法

    1.点击PopupWindow 外部区域时,PopupWindow消失 popMenu = new PopupWindow(getApplicationContext()); popMenu.setW ...

  3. 仅仅测试Word2016发布博客

    我来啦! 我走啦!     哈哈哈!   int main(int argc, char *argv[]) {     int mysocket; //建立一个socket后返回的值是int类型的. ...

  4. c++ break while

    #include <iostream> #include <vector> #include <pthread.h> #include "destory_ ...

  5. 在Eclipse中使用Propertites Editor插件来解决property文件中文显示乱码

    在一般情况下,propertites文件在eclipse中的显示中文一直显示乱码,想要解决这个问题,需要通过在eclipse中安装一个Propertites Editor插件来进行解决. 在Eclip ...

  6. Matlab中@与函数调用

    function m f=@(x) x^2; y(f,3); function y(f,x) disp(num2str(f(x))); end end 函数调用另一个函数的时候,把另一个函数名作为参数 ...

  7. 因SELinux引起的用户登录问题解决案例

    增强安全性带来的负作用往往是牺牲便利性,就像北京地铁的安检一样,但有些时候我们确实需要它.   案例是,用户有一台安装了KylinOS(国产麒麟,使用的是redhat的内核)的系统,当我们对其系统文件 ...

  8. memory leak

    In computer science, a memory leak occurs when a computer program incorrectly manages memory allocat ...

  9. SDUT 1220 完美数

    完美数 Time Limit: 1000ms   Memory limit: 65536K 题目描述 任何一个自然数的约数中都有1和它本身,我们把小于它本身的因数叫做这个自然数的真约数. 如6的所有真 ...

  10. Android 监测手机联网状态 wifi、移动数据流量、无联网状态

    手机当完成联网时会发送一个广播,我们只要创建一个广播接收者即可,代码如下: package com.example.NetworkChangeReceiver2; import android.con ...