我继承了一个有问题的需求树,需要做一些快速而肮脏的工作才能使其美观。
我有 1 个高级模块,其中包含来自深度 1 的 4 个模块的内链接,但深度 2 处只有 3 个模块。我使用分析向导创建了一个 DXL 属性,该属性显示了位于深度 1 的所有对象的一组特定属性。深度 2,但为了演示目的,我想将其限制为单个深度 2 模块(然后为其他 2 个模块创建 2 个其他 DXL 属性)。我已经复制了下面的 DXL(手写的,所以这里或那里可能有拼写错误)。
如何更改此 DXL 以仅从特定模块提取数据?
pragma runLim, 0
int lines[2] = {0, 0}
void adjustLines(int depth, showAtDepth) {
int count
for (count = 0; count < 2; count++) {
while (lines[depth-1]<lines[count]) {
if (depth = showAtDepth) displayRich("\\pard " " ")
lines[depth-1]++
}
}
}
void showIn(Object o, int depth) {
link l
LinkRef lr
ModName_otherMod = null
Module linkMod = null
ModuleVersion otherVersion = null
Object othero
string disp = null
string s - null
string plain, plainDisp
int plainTextLen
int count
bool doneOne = flase
string linkModName = "*"
for lr in all(o<-linkModName) do {
otherMod = module (sourceVersion lr)
if (!null otherMod) {
if ((!isDelected otherMod) && (null data(sourceVersion lr))) {
load((sourceVersion lr),false)
}
}
}
for l in all(o<-linkModName) do {
otherVersion = sourceVersion l
otherMod = module(otherVersion)
if(null otherMod || isDeleted otherMod) continue
othero = source l
if (null othero) {
load(otherVerion,false)
}
othero = source l
if (null othero) continue
if (isDeleted othero) continue
int oldLines = lines[depth-1]
adjustLines(depth, 2)
bool kick = (doneOne) && (line[depth-1] == oldLines)
if (kick) {
lines[depth-1]++
if (depth ==2) displayRich("\\pard " " ")
}
id (depth < 2) {
showIn(othero, depth+1)
}
doneOne = true
if (depth == 2) {
s = (identifier othero)
if (s == "")
displayRich("\\pard " " ")
else
displayRich("\\pard " s)
s = probeRichAttr_(othero, "User-Defined Attribute", false)
if (s == "")
displayRich("\\pard " " ")
else
displayRich("\\pard " s)
}
line[depth-1] += 4
}
}
showIn(obj, 1)
我不知道有关 DXL 的第一件事,所以我唯一更改的是更改从深度 2 模块中提取的属性。当我检查时,试图将 ModName_otherMod 更改为等于“目标模块的名称”,但出现错误。
这看起来很像跟踪向导的原始代码(没有时间检查细节)。
我会手动启动跟踪向导,在那里你可以直接说出要分析哪个模块的链接。
该向导位于模块资源管理器的“分析”->“向导”中。它使您可以将分析限制在特定模块。 在模块级别 3 启动向导,在链接中进行分析,选择级别 2 的特定模块并进行递归分析。
在生成的列上单击鼠标右键即可获得生成的代码。
然后,您可以比较分析所有模块的代码和仅分析一个特定模块的代码。在那里你可以看到如何限制模块(这里使用数组完成
limitModules
)。
最后将生成的代码与您继承的代码进行比较,并检查手动对代码进行了哪些具体更改并合并代码。