-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to generate sip code from headers
Add more annotations Add some references to upstream documentation Add more annotations
- ltr-3_40
- ltr-3_34
- ltr-3_28
- ltr-3_22
- ltr-3_16
- ltr-3_10
- ltr-3_4
- final-3_40_2
- final-3_40_1
- final-3_40_0
- final-3_38_3
- final-3_38_2
- final-3_38_1
- final-3_38_0
- final-3_36_3
- final-3_36_2
- final-3_36_1
- final-3_36_0
- final-3_34_14
- final-3_34_13
- final-3_34_12
- final-3_34_11
- final-3_34_10
- final-3_34_9
- final-3_34_8
- final-3_34_7
- final-3_34_6
- final-3_34_5
- final-3_34_4
- final-3_34_3
- final-3_34_2
- final-3_34_1
- final-3_34_0
- final-3_32_3
- final-3_32_2
- final-3_32_1
- final-3_32_0
- final-3_30_3
- final-3_30_2
- final-3_30_1
- final-3_30_0
- final-3_28_15
- final-3_28_14
- final-3_28_13
- final-3_28_12
- final-3_28_11
- final-3_28_10
- final-3_28_9
- final-3_28_8
- final-3_28_7
- final-3_28_6
- final-3_28_5
- final-3_28_4
- final-3_28_3
- final-3_28_2
- final-3_28_1
- final-3_28_0
- final-3_26_3
- final-3_26_2
- final-3_26_1
- final-3_26_0
- final-3_24_3
- final-3_24_2
- final-3_24_1
- final-3_24_0
- final-3_22_16
- final-3_22_15
- final-3_22_14
- final-3_22_13
- final-3_22_12
- final-3_22_11
- final-3_22_10
- final-3_22_9
- final-3_22_8
- final-3_22_7
- final-3_22_6
- final-3_22_5
- final-3_22_4
- final-3_22_3
- final-3_22_2
- final-3_22_1
- final-3_22_0
- final-3_20_3
- final-3_20_2
- final-3_20_1
- final-3_20_0
- final-3_18_3
- final-3_18_2
- final-3_18_1
- final-3_18_0
- final-3_16_16
- final-3_16_15
- final-3_16_14
- final-3_16_13
- final-3_16_12
- final-3_16_11
- final-3_16_10
- final-3_16_9
- final-3_16_8
- final-3_16_7
- final-3_16_6
- final-3_16_5
- final-3_16_4
- final-3_16_3
- final-3_16_2
- final-3_16_1
- final-3_16_0
- final-3_14_16
- final-3_14_15
- final-3_14_1
- final-3_14_0
- final-3_12_3
- final-3_12_2
- final-3_12_1
- final-3_12_0
- final-3_10_14
- final-3_10_13
- final-3_10_12
- final-3_10_11
- final-3_10_10
- final-3_10_9
- final-3_10_8
- final-3_10_7
- final-3_10_6
- final-3_10_5
- final-3_10_4
- final-3_10_3
- final-3_10_2
- final-3_10_1
- final-3_10_0
- final-3_8_3
- final-3_8_2
- final-3_8_1
- final-3_8_0
- final-3_6_3
- final-3_6_2
- final-3_6_1
- final-3_6_0
- final-3_4_15
- final-3_4_14
- final-3_4_13
- final-3_4_12
- final-3_4_11
- final-3_4_10
- final-3_4_9
- final-3_4_8
- final-3_4_7
- final-3_4_6
- final-3_4_5
- final-3_4_4
- final-3_4_3
- final-3_4_2
- final-3_4_1
- final-3_4_0
- final-3_2_3
- final-3_2_2
- final-3_2_1
- final-3_2_0
- final-3_0_3
- final-3_0_2
- final-3_0_1
- final-3_0_0
Showing
4 changed files
with
144 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
#!/usr/bin/perl | ||
use strict; | ||
use warnings; | ||
use File::Basename; | ||
|
||
my $headerfile = $ARGV[0]; | ||
|
||
open(my $header, "<", $headerfile) || die "Couldn't open '".$headerfile."' for reading because: ".$!; | ||
|
||
my $GLOBAL = 1; | ||
my $DOXYGEN_BLOCK = 2; | ||
|
||
# TODO add contexts for | ||
# "private: " -> skip | ||
# "function bodies" -> skip | ||
# "multiline function signatures" | ||
# "enums" -> remove assigned values | ||
|
||
my $context = $GLOBAL; | ||
my $comment; | ||
|
||
while(!eof $header) { | ||
my $line = readline $header; | ||
|
||
# Skip preprocessor stuff | ||
if ($line =~ /^\s*#/) { | ||
if ($line !~ /NO_SIPIFY/) { | ||
next; | ||
} | ||
} | ||
# Skip forward declarations | ||
if ($line =~ m/^\s*class \w+;$/) { | ||
next; | ||
} | ||
# Skip Q_OBJECT, Q_PROPERTY, Q_ENUM, Q_GADGET | ||
if ($line =~ m/^\s*Q_(OBJECT|ENUMS|PROPERTY|GADGET).*?$/) { | ||
next; | ||
} | ||
|
||
# Doxygen comment started | ||
if ($DOXYGEN_BLOCK != $context) { | ||
if ($line =~ m/\s*\/\*\*/) { | ||
$context = $DOXYGEN_BLOCK; | ||
$comment = ""; | ||
} | ||
# class declaration started | ||
if ($line =~ m/^(\s*class)\s*([A-Z]+_EXPORT)(\s+\w+)(\s*\:.*)?$/) { | ||
$line = "$1$3"; | ||
# Inheritance | ||
if ($4) { | ||
my $m; | ||
$m = $4; | ||
$m =~ s/public //g; | ||
$m =~ s/\s?private \w+,?//; | ||
$line .= $m; | ||
} | ||
$line .= "\n{\n%TypeHeaderCode\n#include \"" . basename($headerfile) . "\"\n%End"; | ||
$line .= "\n%Docstring\n$comment\n%End\n"; | ||
|
||
my $skip; | ||
# Skip opening curly bracket, we already added that above | ||
$skip = readline $header; | ||
$skip =~ m/^\s*{\s$/ || die "Unexpected content on line $line"; | ||
} | ||
|
||
$line =~ s/SIP_FACTORY/\/Factory\//; | ||
$line =~ s/SIP_SKIP/\/\//; | ||
$line =~ s/SIP_OUT/\/Out\//g; | ||
$line =~ s/SIP_INOUT/\/In,Out\//g; | ||
$line =~ s/SIP_TRANSFER/\/Transfer\//g; | ||
$line =~ s/SIP_PYNAME\((\w+)\)/\/PyName=$1\//; | ||
$line =~ s/SIP_KEEPREFERENCE\((\w+)\)/\/KeepReference\//; | ||
$line =~ s/SIP_TRANSFERTHIS\((\w+)\)/\/TransferThis\//; | ||
$line =~ s/SIP_TRANSFERBACK\((\w+)\)/\/TransferBack\//; | ||
|
||
$line =~ s/override;/;/g; | ||
} | ||
|
||
# In block comment | ||
if ($DOXYGEN_BLOCK == $context) { | ||
if ($line =~ m/\*\//) { | ||
$context = $GLOBAL; | ||
} | ||
$line =~ m/\s*\*?(.*)/; | ||
$comment .= "$1\n"; | ||
next; | ||
} | ||
|
||
print $line; | ||
} |
This file contains 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
This file contains 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