Skip to content

Commit deb751e

Browse files
aadsmfacebook-github-bot
authored andcommitted
Rename chisel's fblldb to fbchisellldb
Summary: To avoid conflicting with another fblldb module that is now distributed with lldb I'm renaming this to fbioslldb. The name itself will also be more clear about the module's purpose. Not removing fblldb.py yet because there are other systems depending on this file that will need to be updated once this has landed. Once I update those systems I'll remove fblldb.py. Reviewed By: kolinkrewinkel Differential Revision: D20768692 fbshipit-source-id: 531dd0da882112cbb93f7ea182b5f6f6c45b926f
1 parent c3c793f commit deb751e

25 files changed

+252
-251
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Then add the following line to your `~/.lldbinit` file.
2424
```Python
2525
# ~/.lldbinit
2626
...
27-
command script import /usr/local/opt/chisel/libexec/fblldb.py
27+
command script import /usr/local/opt/chisel/libexec/fbchisellldb.py
2828
```
2929

3030
Alternatively, download chisel and add the following line to your _~/.lldbinit_ file.
3131

3232
```Python
3333
# ~/.lldbinit
3434
...
35-
command script import /path/to/fblldb.py
35+
command script import /path/to/fbchisellldb.py
3636

3737
```
3838

@@ -97,7 +97,7 @@ You can add local, custom commands. Here's a contrived example.
9797
# Example file with custom commands, located at /magical/commands/example.py
9898

9999
import lldb
100-
import fblldbbase as fb
100+
import fbchisellldbbase as fb
101101

102102
def lldbcommands():
103103
return [ PrintKeyWindowLevel() ]
@@ -115,13 +115,13 @@ class PrintKeyWindowLevel(fb.FBCommand):
115115
lldb.debugger.HandleCommand('p (CGFloat)[(id)[(id)[UIApplication sharedApplication] keyWindow] windowLevel]')
116116
```
117117

118-
Then all that's left is to source the commands in lldbinit. `Chisel` has a python function just for this, _loadCommandsInDirectory_ in the _fblldb.py_ module.
118+
Then all that's left is to source the commands in lldbinit. `Chisel` has a python function just for this, _loadCommandsInDirectory_ in the _fbobjclldb.py_ module.
119119

120120
```Python
121121
# ~/.lldbinit
122122
...
123-
command script import /path/to/fblldb.py
124-
script fblldb.loadCommandsInDirectory('/magical/commands/')
123+
command script import /path/to/fbobjclldb.py
124+
script fbobjclldb.loadCommandsInDirectory('/magical/commands/')
125125

126126
```
127127

commands/FBAccessibilityCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
import os
99
import re
1010

11-
import fblldbbase as fb
12-
import fblldbobjecthelpers as objHelpers
11+
import fbchisellldbbase as fb
12+
import fbchisellldbobjecthelpers as objHelpers
1313

1414

1515
# This is the key corresponding to accessibility label in

commands/FBAutoLayoutCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# LICENSE file in the root directory of this source tree.
77

88

9-
import fblldbbase as fb
10-
import fblldbviewhelpers as viewHelpers
9+
import fbchisellldbbase as fb
10+
import fbchisellldbviewhelpers as viewHelpers
1111
import lldb
1212

1313

commands/FBClassDump.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
import string
99

10-
import fblldbbase as fb
11-
import fblldbobjcruntimehelpers as runtimeHelpers
10+
import fbchisellldbbase as fb
11+
import fbchisellldbobjcruntimehelpers as runtimeHelpers
1212

1313

1414
def lldbcommands():

commands/FBComponentCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# This source code is licensed under the MIT license found in the
66
# LICENSE file in the root directory of this source tree.
77

8-
import fblldbbase as fb
9-
import fblldbviewhelpers as viewHelpers
8+
import fbchisellldbbase as fb
9+
import fbchisellldbviewhelpers as viewHelpers
1010

1111

1212
def lldbcommands():

commands/FBCopyCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
import lldb
1313
import errno
14-
import fblldbbase as fb
15-
import fblldbobjecthelpers as objectHelpers
14+
import fbchisellldbbase as fb
15+
import fbchisellldbobjecthelpers as objectHelpers
1616

1717

1818
def lldbcommands():

commands/FBDebugCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
import re
1313
import sys
1414

15-
import fblldbbase as fb
16-
import fblldbobjcruntimehelpers as objc
15+
import fbchisellldbbase as fb
16+
import fbchisellldbobjcruntimehelpers as objc
1717
import lldb
1818

1919

commands/FBDelay.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from threading import Timer
99

10-
import fblldbbase as fb
10+
import fbchisellldbbase as fb
1111
import lldb
1212

1313

commands/FBDisplayCommands.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# This source code is licensed under the MIT license found in the
66
# LICENSE file in the root directory of this source tree.
77

8-
import fblldbbase as fb
9-
import fblldbobjcruntimehelpers as runtimeHelpers
10-
import fblldbviewcontrollerhelpers as viewControllerHelpers
11-
import fblldbviewhelpers as viewHelpers
8+
import fbchisellldbbase as fb
9+
import fbchisellldbobjcruntimehelpers as runtimeHelpers
10+
import fbchisellldbviewcontrollerhelpers as viewControllerHelpers
11+
import fbchisellldbviewhelpers as viewHelpers
1212
import lldb
1313

1414

commands/FBFindCommands.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import os
99
import re
1010

11-
import fblldbbase as fb
12-
import fblldbobjcruntimehelpers as objc
13-
import fblldbviewcontrollerhelpers as vcHelpers
11+
import fbchisellldbbase as fb
12+
import fbchisellldbobjcruntimehelpers as objc
13+
import fbchisellldbviewcontrollerhelpers as vcHelpers
1414
import lldb
1515

1616

commands/FBFlickerCommands.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import os
99
import sys
1010

11-
import fblldbbase as fb
12-
import fblldbobjcruntimehelpers as runtimeHelpers
13-
import fblldbviewhelpers as viewHelpers
11+
import fbchisellldbbase as fb
12+
import fbchisellldbobjcruntimehelpers as runtimeHelpers
13+
import fbchisellldbviewhelpers as viewHelpers
1414
import lldb
1515

1616

commands/FBImportCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This source code is licensed under the MIT license found in the
66
# LICENSE file in the root directory of this source tree.
77

8-
import fblldbbase as fb
8+
import fbchisellldbbase as fb
99
import lldb
1010

1111

@@ -27,4 +27,4 @@ def run(self, arguments, options):
2727
.GetSelectedThread()
2828
.GetSelectedFrame()
2929
)
30-
fb.importModule(frame, "UIKit")
30+
fb.importModule(frame, "UIKit")

commands/FBInvocationCommands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import re
99

10-
import fblldbbase as fb
10+
import fbchisellldbbase as fb
1111
import lldb
1212

1313

commands/FBPrintCommands.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
import re
1010
import subprocess
1111

12-
import fblldbbase as fb
13-
import fblldbobjcruntimehelpers as runtimeHelpers
14-
import fblldbviewcontrollerhelpers as vcHelpers
15-
import fblldbviewhelpers as viewHelpers
12+
import fbchisellldbbase as fb
13+
import fbchisellldbobjcruntimehelpers as runtimeHelpers
14+
import fbchisellldbviewcontrollerhelpers as vcHelpers
15+
import fbchisellldbviewhelpers as viewHelpers
1616
import lldb
1717

1818

commands/FBTextInputCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# This source code is licensed under the MIT license found in the
66
# LICENSE file in the root directory of this source tree.
77

8-
import fblldbbase as fb
9-
import fblldbviewhelpers as viewHelpers
8+
import fbchisellldbbase as fb
9+
import fbchisellldbviewhelpers as viewHelpers
1010

1111

1212
ACCESSIBILITY_ID = 0

commands/FBVisualizationCommands.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
import os
1010
import time
1111

12-
import fblldbbase as fb
13-
import fblldbobjecthelpers as objectHelpers
12+
import fbchisellldbbase as fb
13+
import fbchisellldbobjecthelpers as objectHelpers
1414
import lldb
1515

1616

commands/FBXCTestCommands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import re
99

10-
import fblldbbase as fb
10+
import fbchisellldbbase as fb
1111
import lldb
1212

1313

0 commit comments

Comments
 (0)