美文网首页
【比特币源码精读一】

【比特币源码精读一】

作者: michaelYH | 来源:发表于2018-07-25 14:15 被阅读0次

/**

bitcoind.cpp    启动源码

*/

//source code

int main(int argc, char* argv[])

{

    SetupEnvironment();    //util.cpp

    // Connect bitcoind signal handlers

    noui_connect();

    return (AppInit(argc, argv) ? EXIT_SUCCESS : EXIT_FAILURE);

}

//代码测试

intmain() {

std::cout<<"Hello, World!"<

return0;

}

//文件路径 src/util.cpp

/**

* Server/client environment: argument handling, config file parsing,

* thread wrappers, startup time

*/

void SetupEnvironment()

{

#ifdef HAVE_MALLOPT_ARENA_MAX

    // glibc-specific: On 32-bit systems set the number of arenas to 1.

    // By default, since glibc 2.10, the C library will create up to two heap

    // arenas per core. This is known to cause excessive virtual address space

    // usage in our usage. Work around it by setting the maximum number of

    // arenas to 1.

    //内存分配区设置

    //Win32索引32位地址(4字节),X64索引64位地址(8字节)

    if (sizeof(void*) == 4) {

        mallopt(M_ARENA_MAX, 1);

    }

#endif

    // On most POSIX systems (e.g. Linux, but not BSD) the environment's locale

    // may be invalid, in which case the "C" locale is used as fallback.

    /**

    [michael@s132-148-91-102 ~]$ locale

   *LANG=en_US.UTF-8

   *LC_CTYPE="en_US.UTF-8"

   *LC_NUMERIC="en_US.UTF-8"

    *LC_TIME="en_US.UTF-8"

    *LC_COLLATE="en_US.UTF-8"

    *LC_MONETARY="en_US.UTF-8"

    *LC_MESSAGES="en_US.UTF-8"

    *LC_PAPER="en_US.UTF-8"

    *LC_NAME="en_US.UTF-8"

    *LC_ADDRESS="en_US.UTF-8"

    *LC_TELEPHONE="en_US.UTF-8"

    *LC_MEASUREMENT="en_US.UTF-8"

    *LC_IDENTIFICATION="en_US.UTF-8"

    *LC_ALL=

    */

#if !defined(WIN32) && !defined(MAC_OSX) && !defined(__FreeBSD__) && !defined(__OpenBSD__)

    try {

        std::locale(""); // Raises a runtime error if current locale is invalid

    } catch (const std::runtime_error&) {

        setenv("LC_ALL", "C", 1);

    }

#endif

    // The path locale is lazy initialized and to avoid deinitialization errors

    // in multithreading environments, it is set explicitly by the main thread.

    // A dummy locale is used to extract the internal default locale, used by

    // fs::path, which is then used to explicitly imbue the path.

    //文件系统的本地化设置

    std::locale loc = fs::path::imbue(std::locale::classic());

    fs::path::imbue(loc);

}

// src/noui.cpp // no ui connect

// #include// #includevoid noui_connect()

{

    // Connect bitcoind signal handlers

    uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);

    uiInterface.ThreadSafeQuestion.connect(noui_ThreadSafeQuestion);

    uiInterface.InitMessage.connect(noui_InitMessage);

}

/**

* boost

* Boost provides free peer-reviewed portable C++ source libraries.

*/

相关文章

  • 比特币源码研读

    forest21000版 比特币源码研读之一比特币源码研读之二比特币源码研读之三比特币源码研读之四比特币源码研读之...

  • 【比特币源码精读一】

    /** bitcoind.cpp 启动源码 */ //source code int main(int arg...

  • 关于区块链的收藏文章

    精读比特币白皮书1 精读比特币白皮书2:中本聪确实聪明 精读比特币白皮书3:最宝贵的果然是时间 精读比特币白皮书4...

  • 开始研读比特币1

    1,进入比特币源码目录,先读读编译doc/build-unix.md,查看比特币源码如何编译,了解比特币的依赖库,...

  • 比特币源码研读之一

    作者:区块链研习比特币源码研读班 菜菜子 一、源码下载 本文比特币源码下载地址为:https://github.c...

  • 比特币源码研读之十一

    比特币源码研读系列已经发表了十篇了,通过这十篇源码研读系列让我对比特币源码及比特币运行原理有了进一步的理解,也让我...

  • 你知道你的比特币有多么不安全吗?

    发文简介:本文是《精读比特币》第11章比特币安全的内容。作者结合自己以往的例子讲了比特币面临的安全威胁,讲解了在区...

  • 比特币源码研读之一

    比特币源码研读之一——区块链研习社 《比特币源码研读班》 一看文件夹结构 和 github编译依赖,分析的依赖库 ...

  • [Blockchain_Bitcoin] Bitcoin Cor

    Bitcoin Core是比特币的核心源码,可以在比特币官网下载解压,比特币官网还提供了非常值得学习的比特币原理介...

  • 比特币源码分析——共识模块

    title: 比特币源码分析——共识模块date: 2021-11-02 18:39:52 前言 分析比特币系统的...

网友评论

      本文标题:【比特币源码精读一】

      本文链接:https://www.haomeiwen.com/subject/kaupmftx.html