Last active
November 30, 2021 18:22
-
-
Save jnorthrup/3b135716af18651279f5fd1f38bf4c4f to your computer and use it in GitHub Desktop.
C Lang to Kotlin sed script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
#built and tested against clion default formatted c ymmv | |
sed --in-place --regexp-extended\ | |
-e 's,for\s*\((\w+\s+)(\w+)\s*=\s*(\w+)\;\s*\2.*<([^;]+)\;.*(\2?(\+\+)\2?).*\),for (\2/*as \1*/ in \3 until \4),'\ | |
-e 's,for\s*\((\w+)\s*=\s*(\w+)\;\s*\1.*<([^;]+)\;.*(\1?(\+\+)\1?).*\),for (\1 in \2 until \3),'\ | |
-e 's,^\s*void\s*(\w+)\s*(\(.*\))\s*\{\s*$,fun \1\2:Unit{,'\ | |
-e 's,^\s*(\w+_t)\s*(\w+)\s*(\(.*\))\s*\{\s*$,fun \2\3:\1{,'\ | |
-e 's,^\s*void\s*[*](\w+)\s*(\(.*\))\s*\{\s*$,fun \1\2: CPointer<ByteVar> {,'\ | |
-e 's,^\s*bool\s*(\w+)\s*(\(.*\))\s*\{\s*$,fun \1\2:Boolean{,'\ | |
-e 's,^\s*(long\s+(int)?)+\s*(\w+)\s*(\(.*\))\s*\{\s*$,fun \2\3:Long{,'\ | |
-e 's,^\s*const\s+char\s*[*]\s*(\w+)\s*(\(.*\))\s*\{\s*$,fun \1\2:String{,' \ | |
-e 's,(\s+|\W)void\s*\*\s*(\w+)(\W),\1\2:CPointer<ByteVar> \3,'\ | |
-e 's,struct\s+(\w+)\s*\*(\w+)(\s|\W),\2:CPointer<\1>\3,'\ | |
-e 's,(\s+|\W)const char\s*\*\s*(\w+)(\W),\1\2:String\3,'\ | |
-e 's,(\s+|\W)unsigned\s+int\s+(\w+)(\W),\1\2:UInt\3,'\ | |
-e 's,(\s+|\W)unsigned\s+(long\s+(int)?)+(\w+)(\W),\2\3:ULong\4,'\ | |
-e 's,(\s+|\W)unsigned\s+char\s+(\w+)(\W),\1\2:UByte\3,'\ | |
-e 's,(\s+|\W)int\s+(\w+)(\W),\1\2:Int\3,'\ | |
-e 's,(\s+|\W)bool\s+(\w+)(\W),\1\2:Boolean\3,'\ | |
-e 's,(\s+|\W)(long\s+(int)?)+(\w+)(\W),\1\3:Long\4,'\ | |
-e 's,(\s+|\W)(\w+)_t\s+(\w+)(\W),\1\3:\2_t\4,'\ | |
-e 's,(\s+|\W)char\s*\*\s*(\w+)(\W),\1\2:CPointer<ByteVar>\3,'\ | |
-e 's,struct\s+(\w+)\s*(\w+)(\s|\W),\2:\1\3,'\ | |
-e 's,([^&])\&\s*(\w+),\1\2.ptr,g'\ | |
-e 's,\s*(\w+)\s*[-][>]\s*(\w+), \1.pointed.\2 ,g'\ | |
-e 's,(\s+|\W)(\w+_t)\s+(\w+)(\W),\1\3:\2\4,g'\ | |
-e 's,switch(.*)[{]$,when \1 {,'\ | |
-e 's,case (.*):,\1 -> ,'\ | |
-e 's,(\w+)\s*[|]\s*(\w+), \1 or \2 ,g'\ | |
$@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment