Why Programs Fail : A Guide to Systematic Debugging
暫譯: 為什麼程式會失敗:系統性除錯指南
Andreas Zeller
- 出版商: Morgan Kaufmann
- 出版日期: 2005-10-25
- 售價: $2,870
- 貴賓價: 9.5 折 $2,727
- 語言: 英文
- 頁數: 480
- 裝訂: Paperback
- ISBN: 1558608664
- ISBN-13: 9781558608665
已過版
買這商品的人也買了...
-
$1,600$1,520 -
$399.NET Architecture and Programming Using Visual C++ (Paperback)
-
$399Relational Database Design Clearly Explained, 2/e (Paperback)
-
$620$490 -
$2,390$2,271 -
$1,225$1,164 -
$399Joe Celko's SQL Programming Style
-
$299SQL Built-In Functions and Stored Procedures: The i5/iSeries Programmer's Guide
-
$299Web Standards Design Guide
-
$880$695 -
$390$308 -
$180$153 -
$980$931 -
$825Beginning SQL Server 2005 for Developers: From Novice to Professional (Paperback)
-
$650$507 -
$980$774 -
$1,088SQL Power!: The Comprehensive Guide
-
$860$731 -
$299$236 -
$490$387 -
$925Accelerated SQL Server 2008 (Paperback)
-
$750Microsoft SQL Server 2008 Step by Step (Paperback)
-
$1,740$1,653 -
$299Network Simulation Experiments Manual, 3/e (Paperback)
-
$399Practical Packet Analysis, 2/e : Using Wireshark to Solve Real-World Network Problems (Paperback)
相關主題
商品描述
Description:
Why Programs Fail is about bugs in computer programs, how to find them, how to reproduce them, and how to fix them in such a way that they do not occur anymore. This is the first comprehensive book on systematic debugging and covers a wide range of tools and techniques ranging from hands-on observation to fully automated diagnoses, and includes instructions for building automated debuggers. This discussion is built upon a solid theory of how failures occur, rather than relying on seat-of-the-pants techniques, which are of little help with large software systems or to those learning to program. The author, Andreas Zeller, is well known in the programming community for creating the GNU Data Display Debugger (DDD), a tool that visualizes the data structures of a program while it is running.
Table of Contents:
About the Author
Preface
1 How Failures Come to Be
1.1 My Program Does Not Work!
1.2 From Defects to Failures
1.3 Lost in Time and Space
1.4 From Failures to Fixes
1.5 Automated Debugging Techniques
1.6 Bugs, Faults, or Defects?
1.7 Concepts
1.8 Tools
1.9 Further Reading
1.10 Exercises
2 Tracking Problems
2.1 Oh! All These Problems
2.2 Reporting Problems
2.3 Managing Problems
2.4 Classifying Problems
2.4.1 Severity
2.4.2 Priority
2.4.3 Identifier
2.4.4 Comments
2.4.5 Notification
2.5 Processing Problems
2.6 Managing Problem Tracking
2.7 Requirements as Problems
2.8 Managing Duplicates
2.9 Relating Problems and Fixes
2.10 Relating Problems and Tests
2.11 Concepts
2.12 Tools
BUGZILLA
PHPBUGTRACKER
ISSUETRACKER
TRAC
SOURCEFORGE
GFORGE
2.13 Further Reading
2.14 Exercises
3 Making Programs Fail
3.1 Testing for Debugging
3.2 Controlling the Program
3.3 Testing at the Presentation Layer
3.3.1 Low-level Interaction
3.3.2 System-level Interaction
3.3.3 Higher-level Interaction
3.3.4 Assessing Test Results
3.4 Testing at the Functionality Layer
3.5 Testing at the Unit Layer
3.6 Isolating Units
3.7 Designing for Debugging
3.8 Preventing Unknown Problems
3.9 Concepts
3.10 Tools
JUNIT
ANDROID
APPLESCRIPT
VBSCRIPT
Other scripting languages
FAU
VMWare
Virtual PC
3.11 Further Reading
3.12 Exercises
4 Reproducing Problems
4.1 The First Task in Debugging
4.2 Reproducing the Problem Environment
4.3 Reproducing Program Execution
4.3.1 Reproducing Data
4.3.2 Reproducing User Interaction
4.3.3 Reproducing Communications
4.3.4 Reproducing Time
4.3.5 Reproducing Randomness
4.3.6 Reproducing Operating Environments
4.3.7 Reproducing Schedules
4.3.8 Physical Influences
4.3.9 Effects of Debugging Tools
4.4 Reproducing System Interaction
4.5 Focusing on Units
4.5.1 Setting Up a Control Layer
4.5.2 A Control Example
4.5.3 Mock Objects
4.5.4 Controlling More Interaction
4.6 Concepts
4.7 Tools
Winrunner
Android
Revirt
Checkpointing Tools
4.8 Further Reading
4.9 Exercises
5 Simplifying Problems
5.1 Simplifying the Problem
5.2 The Gecko BugAThon
5.3 Manual Simplification
5.4 Automatic Simplification
5.5 A Simplification Algorithm
5.6 Simplifying User Interaction
5.7 Random Input Simplified
5.8 Simplifying Faster
5.8.1 Caching
5.8.2 Stop Early
5.8.3 Syntactic Simplification
5.8.4 Isolate Differences, Not Circumstances
5.9 Concepts
5.10 Tools
Delta Debugging
Simplification Library
5.11 Further Reading
5.12 Exercises
6 Scientific Debugging
6.1 How to Become a Debugging Guru
6.2 The Scientific Method
6.3 Applying the Scientific Method
6.3.1 Debugging sample—Preparation
6.3.2 Debugging sample—Hypothesis
6.3.3 Debugging sample—Hypothesis
6.3.4 Debugging sample—Hypothesis
6.3.5 Debugging sample—Hypothesis
6.4 Explicit Debugging
6.5 Keeping a Logbook
6.6 Debugging Quick-and-Dirty
6.7 Algorithmic Debugging
6.8 Deriving a Hypothesis
6.9 Reasoning About Programs
6.10 Concepts
6.11 Further Reading
6.12 Exercises
7 Deducing Errors
7.1 Isolating Value Origins
7.2 Understanding Control Flow
7.3 Tracking Dependences
7.3.1 Effects of Statements
7.3.2 Affected Statements
7.3.3 Statement Dependences
7.3.4 Following Dependences
7.3.5 Leveraging Dependences
7.4 Slicing Programs
7.4.1 Forward Slices
7.4.2 Backward Slices
7.4.3 Slice Operations
7.4.4 Leveraging Slices
7.4.5 Executable Slices
7.5 Deducing Code Smells
7.6 Limits of Static Analysis
7.7 Concepts
7.8 Tools
CODESURFER
FINDBUGS
7.9 Further Reading
7.10 Exercises
8 Observing Facts
8.1 Observing State
8.2 Logging Execution
8.2.1 Logging Functions
8.2.2 Logging Frameworks
8.2.3 Logging with Aspects
8.2.4 Logging at the Binary Level
8.3 Using Debuggers
8.3.1 A Debugging Session
8.3.2 Controlling Execution
8.3.3 Postmortem Debugging
8.3.4 Logging Data
8.3.5 Invoking Functions
8.3.6 Fix and Continue
8.3.7 Embedded Debuggers
8.3.8 Debugger Caveats
8.4 Querying Events
8.4.1 Watchpoints
8.4.2 Uniform Event Queries
8.5 Visualizing State
8.6 Concepts
8.7 Tools
LOG4J
ASPECTJ
PIN
BCEL
GDB
DDD
JAVA SPIDER
eDOBS
8.8 Further Reading
8.9 Exercises
9 Tracking Origins
9.1 Reasoning Backwards
9.2 Exploring Execution History
9.3 Dynamic Slicing
9.4 Leveraging Origins
9.5 Tracking Down Infections
9.6 Concepts
9.7 Tools
ODB
9.8 Further Reading
9.9 Exercises
10 Asserting Expectations
10.1 Automating Observation
10.2 Basic Assertions
10.3 Asserting Invariants
10.4 Asserting Correctness
10.5 Assertions as Specifications
10.6 From Assertions to Verification
10.7 Reference Runs
10.8 System Assertions
10.8.1 Validating the Heap with MALLOC_CHECK
10.8.2 Avoiding Buffer Overflows with ELECTRICFENCE
10.8.3 Detecting Memory Errors with VALGRIND
10.8.4 Language Extensions
10.9 Checking Production Code
10.10 Concepts
10.11 Tools
JML
ESC
GUARD
VALGRIND
PURIFY
INSURE++=INSURE++
CYCLONE
CCURED
10.12 Further Reading
10.13 Exercises
11 Detecting Anomalies
11.1 Capturing Normal Behavior
11.2 Comparing Coverage
11.3 Statistical Debugging
11.4 Collecting Data in the Field
11.5 Dynamic Invariants
11.6 Invariants on the Fly
11.7 From Anomalies to Defects
11.8 Concepts
11.9 Tools
DAIKON
DIDUCE
11.10 Further Reading
11.11 Exercises
12 Causes and Effects
12.1 Causes and Alternate Worlds
12.2 Verifying Causes
12.3 Causality in Practice
12.4 Finding Actual Causes
12.5 Narrowing Down Causes
12.6 A Narrowing Example
12.7 The Common Context
12.8 Causes in Debugging
12.9 Concepts
12.10 Further Reading
12.11 Exercises
13 Isolating Failure Causes
13.1 Isolating Causes Automatically
13.2 Isolating versus Simplifying
13.3 An Isolation Algorithm
13.4 Implementing Isolation
13.5 Isolating Failure-inducing Input
13.6 Isolating Failure-inducing Schedules
13.7 Isolating Failure-inducing Changes
13.8 Problems and Limitations
13.9 Concepts
13.10 Tools
Delta Debugging Plug-ins for ECLIPSE
CCACHE
13.11 Further Reading
13.12 Exercises
14 Isolating Cause-Effect Chains
14.1 Useless Causes
14.2 Capturing Program States
14.3 Comparing Program States
14.4 Isolating Relevant Program States
14.5 Isolating Cause-Effect Chains
14.6 Isolating Failure-inducing Code
14.7 Issues and Risks
14.8 Concepts
14.9 Tools
ASKIGOR
IGOR
14.10 Further Reading
14.11 Exercises
15 Fixing the Defect
15.1 Locating the Defect
15.2 Focusing on the Most Likely Errors
15.3 Validating the Defect
15.3.1 Does the Error Cause the Failure?
15.3.2 Is the Cause Really an Error?
15.3.3 Think Before You Code
The Devil’s Guide to Debugging
15.4 Correcting the Defect
15.4.1 Does the Failure No Longer Occur?
15.4.2 Did the Correction Introduce New Problems?
15.4.3 Was the Same Mistake Made Elsewhere?
15.4.4 Did I Do My Homework?
15.5 Workarounds
15.6 Learning from Mistakes
15.7 Concepts
15.8 Further Reading
15.9 Exercises
Appendix: Formal Definitions
A.1 Delta Debugging
A.1.1 Configurations
A.2 Passing and Failing Run
A.3 Tests
A.4 Minimality
A.5 Simplifying
A.6 Differences
A.7 Isolating
A.2 Memory Graphs
A.2.1 Formal Structure
A.2.2 Unfolding Data Structures
A.2.3 Matching Vertices and Edges
A.2.4 Computing the Common Subgraph
A.2.5 Computing Graph Differences
A.2.6 Applying Partial State Changes
A.2.7 Capturing C State
A.3 Cause-Effect Chains
Glossary
Bibliography
Index
商品描述(中文翻譯)
描述:
《為什麼程式會失敗》探討了電腦程式中的錯誤,如何找到它們,如何重現它們,以及如何修復它們以避免再次發生。這是第一本全面的系統性除錯書籍,涵蓋了從實地觀察到完全自動化診斷的各種工具和技術,並包括建立自動化除錯器的指導。這一討論建立在如何發生失敗的堅實理論之上,而不是依賴於隨意的技術,這對於大型軟體系統或學習程式設計的人幫助不大。作者 Andreas Zeller 在程式設計社群中因創建 GNU Data Display Debugger (DDD) 而聞名,這是一個在程式運行時可視化數據結構的工具。
目錄:
關於作者
前言
1 如何產生失敗
1.1 我的程式不工作!
1.2 從缺陷到失敗
1.3 在時間和空間中迷失
1.4 從失敗到修復
1.5 自動化除錯技術
1.6 錯誤、故障或缺陷?
1.7 概念
1.8 工具
1.9 進一步閱讀
1.10 練習
2 追蹤問題
2.1 哦!這些問題
2.2 報告問題
2.3 管理問題
2.4 分類問題
2.4.1 嚴重性
2.4.2 優先順序
2.4.3 識別碼
2.4.4 註解
2.4.5 通知
2.5 處理問題
2.6 管理問題追蹤
2.7 需求作為問題
2.8 管理重複項
2.9 關聯問題與修復
2.10 關聯問題與測試
2.11 概念
2.12 工具
BUGZILLA
PHPBUGTRACKER
ISSUETRACKER
TRAC
SOURCEFORGE
GFORGE
2.13 進一步閱讀
2.14 練習
3 使程式失敗
3.1 測試以進行除錯
3.2 控制程式
3.3 在呈現層進行測試
3.3.1 低層次互動
3.3.2 系統層次互動
3.3.3 高層次互動
3.3.4 評估測試結果
3.4 在功能層進行測試
3.5 在單元層進行測試
3.6 隔離單元
3.7 設計以便除錯
3.8 防止未知問題
3.9 概念
3.10 工具
JUNIT
ANDROID
APPLESCRIPT
VBSCRIPT
其他腳本語言
FAU
VMWare
Virtual PC
3.11 進一步閱讀
3.12 練習
4 重現問題
4.1 除錯中的第一任務
4.2 重現問題環境
4.3 重現程式執行
4.3.1 重現數據
4.3.2 重現用戶互動
4.3.3 重現通訊
4.3.4 重現時間
4.3.5 重現隨機性
4.3.6 重現操作環境
4.3.7 重現排程
4.3.8 物理影響
4.3.9 除錯工具的影響
4.4 重現系統互動
4.5 專注於單元
4.5.1 設置控制層
4.5.2 控制範例
4.5.3 模擬物件
4.5.4 控制更多互動
4.6 概念
4.7 工具
Winrunner
Android
Revirt
檢查點工具
4.8 進一步閱讀
4.9 練習
5 簡化問題
5.1 簡化問題
5.2 Gecko BugAThon
5.3 手動簡化
5.4 自動簡化
5.5 簡化演算法
5.6 簡化用戶互動
5.7 隨機輸入簡化
5.8 更快的簡化
5.8.1 快取
5.8.2 及早停止
5.8.3 語法簡化
5.8.4 隔離差異,而非情況
5.9 概念
5.10 工具
Delta Debugging
簡化庫
5.11 進一步閱讀
5.12 練習
6 科學除錯
6.1 如何成為除錯大師
6.2 科學方法
6.3 應用科學方法
6.3.1 除錯範例—準備
6.3.2 除錯範例—假設
6.3.3 除錯範例—假設
6.3.4 除錯範例—假設
6.3.5 除錯範例—假設
6.4 明確除錯
6.5 保持日誌
6.6 快速且粗糙的除錯
6.7 演算法除錯
6.8 推導假設
6.9 對程式進行推理
6.10 概念
6.11 進一步閱讀
6.12 練習
7 推導錯誤
7.1 隔離值來源
7.2 理解控制流程
7.3 追蹤依賴
7.3.1 語句的影響
7.3.2 受影響的語句
7.3.3 語句依賴
7.3.4 追蹤依賴
7.3.5 利用依賴
7.4 程式切片
7.4.1 向前切片
7.4.2 向後切片
7.4.3 切片操作
7.4.4 利用切片
7.4.5 可執行切片
7.5 推導程式異味
7.6 靜態分析的限制
7.7 概念
7.8 工具
CODESURFER
FINDBUGS
7.9 進一步閱讀
7.10 練習
8 觀察事實
8.1 觀察狀態
8.2 記錄執行
8.2.1 記錄函數
8.2.2 記錄框架
8.2.3 使用切面記錄
8.2.4 在二進位層級記錄
8.3 使用除錯器
8.3.1 除錯會話
8.3.2 控制執行
8.3.3 死後除錯
8.3.4 記錄數據
8.3.5 調用函數
8.3.6 修正並繼續
8.3.7 嵌入式除錯器
8.3.8 除錯器注意事項
8.4 查詢事件
8.4.1 監視點
8.4.2 統一事件查詢
8.5 可視化狀態
8.6 概念
8.7 工具
LOG4J
ASPECTJ
PIN
BCEL
GDB
DDD
JAVA SPIDER
eDOBS
8.8 進一步閱讀
8.9 練習
9 追蹤來源
9.1 向後推理
9.2 探索執行歷史
9.3 動態切片
9.4 利用來源
9.5 追蹤感染
9.6 概念
9.7 工具
ODB
9.8 進一步閱讀
9.9 練習
10 斷言期望
10.1 自動化觀察
10.2 基本斷言
10.3 斷言不變式
10.4 斷言正確性
10.5 斷言作為規範
10.6 從斷言到驗證
10.7 參考運行
10.8 系統斷言
10.8.1 使用 MALLOC_CHECK 驗證堆
10.8.2 使用 ELECTRICFENCE 避免緩衝區溢出
10.8.3 使用 VALGRIND 偵測記憶體錯誤
10.8.4 語言擴展
10.9 檢查生產代碼
10.10 概念
10.11 工具
JML
ESC
GUARD
VALGRIND
PURIFY
INSURE++=INSURE++
CYCLONE
CCURED
10.12 進一步閱讀
10.13 練習
11 偵測異常
11.1 捕捉正常行為
11.2 比較覆蓋率
11.3 統計除錯
11.4 在現場收集數據
11.5 動態不變式
11.6 即時不變式
11.7 從異常到缺陷
11.8 概念
11.9 工具
DAIKON
DIDUCE
11.10 進一步閱讀
11.11 練習
12 原因與結果
12.1 原因與替代世界
12.2 驗證原因
12.3 實踐中的因果關係
12.4 找到實際原因
12.5 縮小原因範圍
12.6 縮小範例
12.7 共同上下文
12.8 除錯中的原因
12.9 概念
12.10 進一步閱讀
12.11 練習
13 隔離失敗原因
13.1 自動隔離原因
13.2 隔離與簡化
13.3 隔離演算法
13.4 實施隔離
13.5 隔離導致失敗的輸入
13.6 隔離導致失敗的排程
13.7 隔離導致失敗的變更
13.8 問題與限制
13.9 概念
13.10 工具
ECLIPSE 的 Delta Debugging 插件
CCACHE
13.11 進一步閱讀
13.12 練習
14 隔離因果鏈
14.1 無用的原因
14.2 捕捉程式狀態
14.3 比較程式狀態
14.4 隔離相關程式狀態
14.5 隔離因果鏈
14.6 隔離導致失敗的程式碼
14.7 問題與風險
14.8 概念
14.9 工具
ASKIGOR
IGOR
14.10 進一步閱讀
14.11 練習
15 修復缺陷
15.1 定位缺陷
15.2 專注於最可能的錯誤
15.3 驗證缺陷
15.3.1 錯誤是否導致失敗?
15.3.2 原因是否真的錯誤?
15.3.3 在編碼前思考
《惡魔的除錯指南》
15.4 修正缺陷
15.4.1 失敗是否不再發生?
15.4.2 修正是否引入新問題?
15.4.3 是否在其他地方犯了同樣的錯誤?
15.4.4 我是否做了功課?
15.5 替代方案
15.6 從錯誤中學習
15.7 概念
15.8 進一步閱讀
15.9 練習
附錄:正式定義
A.1 Delta Debugging
A.1.1 配置
A.2 通過和失敗運行
A.3 測試
A.4 最小性
A.5 簡化
A.6 差異
A.7 隔離
A.2 記憶體圖
A.2.1 正式結構
A.2.2 展開數據結構
A.2.3 匹配頂點和邊
A.2.4 計算公共子圖
A.2.5 計算圖的差異
A.2.6 應用部分狀態變更
A.2.7 捕捉 C 狀態
A.3 因果鏈
詞彙表
參考文獻
索引