Table of Contents
一、前言
二、DBUG下载与使用
三、小结
Home Database Mysql Tutorial MySQL源码学习——DBUG调试_MySQL

MySQL源码学习——DBUG调试_MySQL

Jun 01, 2016 pm 01:50 PM
study

bitsCN.com

一、前言

         在规模稍微大点的项目中,为了方便快速找到bug的所在,我们往往需要在代码中加入一些调试用的代码,比如加入一些printf,打印出一些重点的信息;加入assert,进行断言判断。这些比较随意的调试代码会使整个系统显得比较凌乱。于是Fred Fish开发了一套用于嵌入代码中的库,开发人员只需要调用相应的函数即可加入调试信息。

        对于MySQL这种多线程的程序来说,调试也是比较困难的,MySQL选择了DBUG作为其调试代码(在原始代码的基础上进行了略微的改造),充分说明了DBUG的实用性,本文就DBUG的原始代码进行介绍。

二、DBUG下载与使用

       这里以linux下的开发进行介绍。

      首先需要下载DBUG源码,下载地址:http://sourceforge.net/projects/dbug/

      解压后在dbug/src下即是debug所需的源码文件:dbug.h dbug.c

      dbug/example.c是一个简单的例子,源码如下:

/* * This file is Public Domain * * Just short example, how Fred Fish's dbug package should be used * * Tonu Samuel <tonu> * */#include "dbug.h"static int sub1 (void);static void sub2 (char *arg);static intsub1 (void){  DBUG_ENTER ("sub1");  sub2 ("Hello world!");  sub2 ("Hello earth!");  sub2 ("Hello programmer!");  DBUG_RETURN (0);}static voidsub2 (char *arg){  DBUG_ENTER ("sub2");  DBUG_PRINT ("info", ("Got argument: '%s'", arg));  printf ("%s/n", arg);  DBUG_VOID_RETURN;}intmain (void){  int ret = 0;  DBUG_PUSH ("d:t:O");  DBUG_PROCESS ("example");  ret = sub1 ();  DBUG_PRINT ("info", ("Returned value: %d", ret));  return 0;}</tonu>
Copy after login

我们将example.c放到src目录下,然后编译example文件:

dbug/src$ gcc -Wall -g dbug.c example.c -o example
Copy after login

运行example输出如下:

>sub1| >sub2| | info: Got argument: 'Hello world!'Hello world!| <sub2>sub2| | info: Got argument: 'Hello earth!'Hello earth!| <sub2>sub2| | info: Got argument: 'Hello programmer!'Hello programmer!| <sub2 pre="">< value: Returned info: <sub1></sub1></sub2></sub2></sub2>
Copy after login

          结合源码,我们通过打印出来的信息,可以很容易的看出调试信息所表达的意思:

函数sub1调用了三次sub2,三次的参数分别是'Hello world!' ,'Hello earth!' ,'Hello programmer!' ,最后return 0.

         下面初略介绍下上面用到的几个宏定义:

DBUG_PUSH ("d:t:O");  设置调试的启动参数,参数列表在MySQL手册上也有:

标记 描述
d

允许对当前状态从DBUG_宏输出。可能跟着一列关键词,这些关键词仅对那些带有
关键词的DBUG宏选择输出。一个空的关键词列意味着对所有宏输出。

D

在每个调试起输出行后延迟。参量一个十分之一秒为单位来延迟的数,它受限于机器的能
力。比如 -#D,20 指定一个2秒的延迟。

f

限制调试和/或跟踪,以及简单设定于列出名字的函数。注意,空列将禁止所用函数。应
该给出适当的d 或 t 标记,如果它们被允许了,这个标记仅限制它们的动作。

F 对调试或跟踪输出的每一行识别源文件名。
i 对调试或跟踪输出的每一行用PID或线程ID识别进程。
g

允许解析,创建名为的dbugmon.out文件,它包含可用来简单设定程序的信息。可能跟着
一列关键词,它们是选择只对列中的函数做简单设定。一个空列意味着所有函数都要考虑
到。

L 为调试或跟踪输出的每一行识别源文件行号。
n 为调试或跟踪输出的每一行打印当前函数嵌套深度。
N 给调试输出的每一行编号。
o 重定向调试器输出流到指定文件。默认输出是stderr 文件。
O

类似于 o,但是文件在每次写操作之间被冲刷。当需要之时,文件在每次写操作之间被关
闭然后重新打开。

p

限制调试器作用于指定进程。为使调试器动作,一个进程必须用DBUG_PROCESS宏来识
别,且匹配列表中的一个。

P 为调试或跟踪输出的每一行打印当前进程名字。
r

当推出一个新状态时,不继承前状态的操作嵌套深度级别。当输出在左边空白开始时有
用。

S

在每个调试过的函数做_sanity(_file_,_line_)函数直到 _sanity() 返回不同于0的结果。(大多
数的时候与safemalloc 一起用来找出内存漏洞)。

t

允许函数调用/退出跟踪行。可能跟着一个给出最大跟踪级别的数字列(只含一个修改
量),超过这个数字,调试中或跟踪中的宏不能产生任何输出。 默认为一个编译时间选
项。

        DBUG_PROCESS ("example"); 设置进程名为example

        DBUG_ENTER ("sub1"); 表示进入函数sub1

        DBUG_PRINT ("info", ("Got argument: '%s'", arg)); 和printf效果差不多,打印出需要的调试信息。

       DBUG_RETURN (0);  在return 0 的基础上,打印出return 0的调试信息。

三、小结

      本文简单介绍了DBUG的使用方法,没有深究,源码很少,却很实用,在源码的注释部分,我看到了是Fred Fish1987年写的,呃,我才刚出生....,没想到现在还在看那时候的代码,可能这就是所谓的经典吧。

       兄弟们,你们还在为复杂环境下的bug调试而苦恼么?还在为堆栈被写乱掉无从下手而凌乱么?淡定吧,一起来用DBUG吧~~

bitsCN.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Learn to completely uninstall pip and use Python more efficiently Learn to completely uninstall pip and use Python more efficiently Jan 16, 2024 am 09:01 AM

No more need for pip? Come and learn how to uninstall pip effectively! Introduction: pip is one of Python's package management tools, which can easily install, upgrade and uninstall Python packages. However, sometimes we may need to uninstall pip, perhaps because we wish to use another package management tool, or because we need to completely clear the Python environment. This article will explain how to uninstall pip efficiently and provide specific code examples. 1. How to uninstall pip The following will introduce two common methods of uninstalling pip.

A deep dive into matplotlib's colormap A deep dive into matplotlib's colormap Jan 09, 2024 pm 03:51 PM

To learn more about the matplotlib color table, you need specific code examples 1. Introduction matplotlib is a powerful Python drawing library. It provides a rich set of drawing functions and tools that can be used to create various types of charts. The colormap (colormap) is an important concept in matplotlib, which determines the color scheme of the chart. In-depth study of the matplotlib color table will help us better master the drawing functions of matplotlib and make drawings more convenient.

Revealing the appeal of C language: Uncovering the potential of programmers Revealing the appeal of C language: Uncovering the potential of programmers Feb 24, 2024 pm 11:21 PM

The Charm of Learning C Language: Unlocking the Potential of Programmers With the continuous development of technology, computer programming has become a field that has attracted much attention. Among many programming languages, C language has always been loved by programmers. Its simplicity, efficiency and wide application make learning C language the first step for many people to enter the field of programming. This article will discuss the charm of learning C language and how to unlock the potential of programmers by learning C language. First of all, the charm of learning C language lies in its simplicity. Compared with other programming languages, C language

Getting Started with Pygame: Comprehensive Installation and Configuration Tutorial Getting Started with Pygame: Comprehensive Installation and Configuration Tutorial Feb 19, 2024 pm 10:10 PM

Learn Pygame from scratch: complete installation and configuration tutorial, specific code examples required Introduction: Pygame is an open source game development library developed using the Python programming language. It provides a wealth of functions and tools, allowing developers to easily create a variety of type of game. This article will help you learn Pygame from scratch, and provide a complete installation and configuration tutorial, as well as specific code examples to get you started quickly. Part One: Installing Python and Pygame First, make sure you have

Let's learn how to input the root number in Word together Let's learn how to input the root number in Word together Mar 19, 2024 pm 08:52 PM

When editing text content in Word, you sometimes need to enter formula symbols. Some guys don’t know how to input the root number in Word, so Xiaomian asked me to share with my friends a tutorial on how to input the root number in Word. Hope it helps my friends. First, open the Word software on your computer, then open the file you want to edit, and move the cursor to the location where you need to insert the root sign, refer to the picture example below. 2. Select [Insert], and then select [Formula] in the symbol. As shown in the red circle in the picture below: 3. Then select [Insert New Formula] below. As shown in the red circle in the picture below: 4. Select [Radical Formula], and then select the appropriate root sign. As shown in the red circle in the picture below:

Learn the main function in Go language from scratch Learn the main function in Go language from scratch Mar 27, 2024 pm 05:03 PM

Title: Learn the main function in Go language from scratch. As a simple and efficient programming language, Go language is favored by developers. In the Go language, the main function is an entry function, and every Go program must contain the main function as the entry point of the program. This article will introduce how to learn the main function in Go language from scratch and provide specific code examples. 1. First, we need to install the Go language development environment. You can go to the official website (https://golang.org

Learn the strconv.Atoi function in the Go language documentation to convert strings to integers Learn the strconv.Atoi function in the Go language documentation to convert strings to integers Nov 03, 2023 am 08:55 AM

Learn the strconv.Atoi function in the Go language documentation to convert strings to integers. The Go language is a powerful and flexible programming language. The strconv package in its standard library provides the function of string conversion. In this post, we will learn how to convert string to integer using strconv.Atoi function. First, we need to understand the purpose and declaration of the strconv.Atoi function. The description of the function in the document is as follows: funcAtoi(sstring)(i

Quickly learn pip installation and master the skills from scratch Quickly learn pip installation and master the skills from scratch Jan 16, 2024 am 10:30 AM

Learn pip installation from scratch and quickly master the skills. Specific code examples are required. Overview: pip is a Python package management tool that can easily install, upgrade and manage Python packages. For Python developers, it is very important to master the skills of using pip. This article will introduce the installation method of pip from scratch, and give some practical tips and specific code examples to help readers quickly master the use of pip. 1. Install pip Before using pip, you first need to install pip. pip

See all articles