Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save krzysztofzablocki/338eddf527a351de825bd62cf2a1de28 to your computer and use it in GitHub Desktop.
Save krzysztofzablocki/338eddf527a351de825bd62cf2a1de28 to your computer and use it in GitHub Desktop.
Use Sourcery to Generate bash script that will rewrite your source code to add final to all classes that have no inheritance
#!/usr/bin/env bash
<% for type in types.classes { -%>
<%_ if type.modifiers.map{ $0.name }.contains("final") || type.modifiers.map{ $0.name }.contains("open") || types.based[type.name].isEmpty == false { continue } -%>
<%_ _%>git grep -lz 'class <%= type.name %>' | xargs -0 perl -i'' -pE "s/class <%= type.name %>(?=\s|:)/final class <%= type.name %>/g"
<% } %>
// Run with Sourcery on your codebase and then execute generated code via bash :)
@krzysztofzablocki
Copy link
Author

so you need to name it .swifttemplate run sourcery on it, if it sees your source files it should output a lot of lines for the command line grep / xargs pair, when you do so does it generate anything at all?

@skerjie
Copy link

skerjie commented Jun 13, 2024

OMG. Finally, it did work. The problem was indeed in the file type .swifttemplate. @krzysztofzablocki thanks once again for the explanation, patience and help 🤝

@krzysztofzablocki
Copy link
Author

glad it works now :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment