Skip to content

Commit ffb25b7

Browse files
authored
Merge pull request #19162 from hvitved/rust/to-string-non-rec
Rust: Make `Element.toString` non-recursive
2 parents 0e23b86 + 56f4694 commit ffb25b7

File tree

12 files changed

+40
-13
lines changed

12 files changed

+40
-13
lines changed

misc/codegen/templates/ql_class.mustache

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ module Generated {
3030
* Gets the string representation of this element.
3131
*/
3232
cached
33-
final string toString() { result = this.toStringImpl() }
33+
final string toString() {
34+
result = this.toStringImpl() and
35+
// recursion guard to prevent `toString` from being defined recursively
36+
(exists(any(Element e).toStringImpl()) implies any())
37+
}
3438

3539
/**
3640
* INTERNAL: Do not use.

rust/ql/.generated.list

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/ql/lib/codeql/rust/elements/internal/ElementImpl.qll

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module Impl {
2020
* Returns a string suitable to be inserted into the name of the parent. Typically `"..."`,
2121
* but may be overridden by subclasses.
2222
*/
23+
pragma[nomagic]
2324
string toAbbreviatedString() { result = "..." }
2425

2526
predicate isUnknown() { none() } // compatibility with test generation, to be fixed

rust/ql/lib/codeql/rust/elements/internal/ModuleImpl.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ module Impl {
2424
* ```
2525
*/
2626
class Module extends Generated::Module {
27-
override string toStringImpl() { result = "mod " + this.getName() }
27+
override string toStringImpl() { result = "mod " + this.getName().getText() }
2828
}
2929
}

rust/ql/lib/codeql/rust/elements/internal/UseImpl.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ module Impl {
1919
* ```
2020
*/
2121
class Use extends Generated::Use {
22-
override string toStringImpl() { result = "use " + this.getUseTree() }
22+
override string toStringImpl() { result = "use " + this.getUseTree().toAbbreviatedString() }
2323
}
2424
}

rust/ql/lib/codeql/rust/elements/internal/UseTreeImpl.qll

+17-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,28 @@ module Impl {
2626
result = strictconcat(int i | | this.toStringPart(i) order by i)
2727
}
2828

29-
private string toStringPart(int index) {
30-
result = this.getPath().toStringImpl() and index = 0
31-
or
29+
private string toStringPartCommon(int index) {
3230
result = "::{...}" and this.hasUseTreeList() and index = 1
3331
or
3432
result = "::*" and this.isGlob() and index = 2
3533
or
3634
result = " as " + this.getRename().getName().getText() and index = 3
3735
}
36+
37+
private string toStringPart(int index) {
38+
result = this.getPath().toStringImpl() and index = 0
39+
or
40+
result = this.toStringPartCommon(index)
41+
}
42+
43+
override string toAbbreviatedString() {
44+
result = strictconcat(int i | | this.toAbbreviatedStringPart(i) order by i)
45+
}
46+
47+
private string toAbbreviatedStringPart(int index) {
48+
result = this.getPath().toAbbreviatedString() and index = 0
49+
or
50+
result = this.toStringPartCommon(index)
51+
}
3852
}
3953
}

rust/ql/lib/codeql/rust/elements/internal/generated/Element.qll

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swift/ql/.generated.list

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swift/ql/lib/codeql/swift/elements/expr/InitializerLookupExpr.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ private import codeql.swift.elements.decl.Initializer
55
final private class InitializerLookupExprImpl extends Impl::MethodLookupExpr {
66
InitializerLookupExprImpl() { super.getMethod() instanceof Initializer }
77

8-
override string toStringImpl() { result = this.getMember().toString() }
8+
override string toStringImpl() { result = this.getMember().toStringImpl() }
99
}
1010

1111
final class InitializerLookupExpr extends MethodLookupExpr, InitializerLookupExprImpl {

swift/ql/lib/codeql/swift/elements/expr/internal/ApplyExprImpl.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module Impl {
4848

4949
override Expr getQualifier() { result = expr.getQualifier() }
5050

51-
override string toStringImpl() { result = "call to " + expr }
51+
override string toStringImpl() { result = "call to " + expr.toStringImpl() }
5252
}
5353

5454
private class FullDotSyntaxBaseIgnoredApplyExpr extends ApplyExpr {

swift/ql/lib/codeql/swift/elements/expr/internal/ExplicitCastExprImpl.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module Impl {
44
class ExplicitCastExpr extends Generated::ExplicitCastExpr {
55
override predicate convertsFrom(Expr e) { e = this.getImmediateSubExpr() }
66

7-
override string toStringImpl() { result = "(" + this.getType() + ") ..." }
7+
override string toStringImpl() { result = "(" + this.getType().toStringImpl() + ") ..." }
88
}
99
}

swift/ql/lib/codeql/swift/generated/Element.qll

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)