-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsp_print_libdoc.py
executable file
·140 lines (99 loc) · 3.58 KB
/
psp_print_libdoc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#! /usr/bin/env python3
import argparse
import os
import sys
from collections import defaultdict
from lxml import etree as ET
prxFolders = ("kd", "vsh/module")
def loadPSPLibdoc(xmlFile, targetLibrary):
tree = ET.parse(xmlFile)
root = tree.getroot()
nidEntries = defaultdict(set)
for prx in root.findall("PRXFILES/PRXFILE"):
prxFile = prx.find("PRX").text
for library in prx.findall("LIBRARIES/LIBRARY"):
libraryName = library.find("NAME").text
if (libraryName == targetLibrary) or (not targetLibrary):
for function in library.findall("FUNCTIONS/FUNCTION"):
functionNID = function.find("NID").text.upper().removeprefix('0X')
functionName = function.find("NAME").text
nidEntries[prxFile].add( (libraryName, functionNID, functionName) )
for prx in nidEntries.keys():
nidEntries[prx] = sorted(nidEntries[prx], key = lambda x: (x[0], x[1]))
return nidEntries
def loadPrxModule(directory, module, library):
nidEntries = {}
for prxFolder in prxFolders:
filePath = directory + '/' + prxFolder + '/' + module + '.xml'
if os.path.isfile(filePath):
print("Loading NID entries from '{}' ...".format(filePath))
nidEntries.update(loadPSPLibdoc(filePath, library))
return nidEntries
def loadAllPrxModules(directory, library):
nidEntries = {}
for prxFolder in prxFolders:
dirPath = directory + '/' + prxFolder + '/'
for libdocFile in os.listdir(dirPath):
filePath = os.path.join(dirPath, libdocFile)
fileEntries = loadPSPLibdoc(filePath, library)
if(len(fileEntries) > 0):
print("Loading NID entries from '{}' ...".format(filePath))
nidEntries.update(fileEntries)
return nidEntries
def printPrxFunctions(entries):
for prx in entries.keys():
print(prx)
currentLib = ""
for entry in entries[prx]:
if currentLib != entry[0]:
if currentLib:
print()
currentLib = entry[0]
print('\t' + currentLib)
print('\t\t|-- ' + '0x' + entry[1] + " --> " + entry[2])
print()
def printModuleExports(directory, module):
exports = loadPrxModule(directory, module, "")
if(len(exports) == 0):
print("No exports found for module '{}'".format(module))
else:
print("\nExports for module '{}':".format(module))
printPrxFunctions(exports)
def printLibraryExports(directory, library):
exports = loadAllPrxModules(directory, library)
if(len(exports) == 0):
print("No modules found exporting library '{}'".format(library))
else:
print("\nModules exporting library '{}':".format(library))
printPrxFunctions(exports)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-d', '--directory',
required=True,
type=str,
help='Directory of the PSP-Libdoc XML folder')
parser.add_argument('-e', '--exports',
required=False,
type=str,
help='Print all exports of the specified PRX module')
parser.add_argument('-i', '--imports',
required=False,
type=str,
help='Print all imports of the specified PRX module')
parser.add_argument('-l', '--libraryExports',
required=False,
type=str,
help='Print all PRX modules exporting the specified library')
parser.add_argument('-m', '--libraryImports',
required=False,
type=str,
help='Print all PRX modules importing the specified library')
args = parser.parse_args(sys.argv[1:])
if(args.exports):
printModuleExports(args.directory, args.exports)
if(args.imports):
printModuleImports(args.directory, args.imports)
if(args.libraryExports):
printLibraryExports(args.directory, args.libraryExports)
if(args.libraryImports):
printLibraryImports(args.directory, args.libraryImports)