22
22
otlp: 1.5.0
23
23
semconv: 1.29.0
24
24
) ;
25
+ my %versFromRepo = %versions ; # Use declared versions a defaults
25
26
my $otelSpecVers = $versions {' spec:' };
26
27
my $otlpSpecVers = $versions {' otlp:' };
27
28
my $semconvVers = $versions {' semconv:' };
47
48
# Sample front-matter patch:
48
49
#
49
50
# } elsif ($ARGV =~ /otel\/specification\/logs\/api.md$/) {
50
- # $frontMatterFromFile .= "linkTitle: API\naliases: [bridge-api]\n";
51
- # printPatchInfoIf(" 2024-12-01-bridge-api", $otelSpecVers ne " 1.39.0" );
51
+ # $frontMatterFromFile .= "linkTitle: API\naliases: [bridge-api]\n" if
52
+ # applyPatchOrPrintMsgIf(' 2024-12-01-bridge-api', 'spec', ' 1.39.0' );
52
53
# }
53
54
54
55
my $titleMaybeQuoted = ($title =~ ' :' ) ? " \" $title \" " : $title ;
65
66
print " ---\n " ;
66
67
}
67
68
68
- sub printPatchInfoIf ($$) {
69
- my ($patchID , $specVersTest ) = @_ ;
70
- print STDOUT " INFO [$patchID ]: $0 : remove obsolete patch code now that spec(s) have been updated.\n "
71
- if $specVersTest && !$patchMsgCount {$patchID }++;
69
+ sub applyPatchOrPrintMsgIf ($$$) {
70
+ # Returns truthy if patch should be applied, otherwise prints message (once) as to why not.
71
+
72
+ my ($patchID , $versKey_ , $targetVers ) = @_ ;
73
+ my $versKey = $versKey_ . ' :' ;
74
+ my $vers ;
75
+
76
+ return 0 if $patchMsgCount {$patchID };
77
+
78
+ if (($vers = $versions {$versKey }) ne $targetVers ) {
79
+ print STDOUT " INFO: remove obsolete patch '$patchID ' now that spec '$versKey_ ' is at v$vers , not v$targetVers - $0 \n " ;
80
+ } elsif (($vers = $versFromRepo {$versKey }) ne $targetVers ) {
81
+ print STDOUT " INFO [$patchID ]: skipping patch '$patchID ' since spec '$versKey_ ' submodule is at v$vers not v$targetVers - $0 \n " ;
82
+ } else {
83
+ return ' Apply the patch' ;
84
+ }
85
+ $patchMsgCount {$patchID }++;
86
+ return 0;
72
87
}
73
88
74
- sub patchAttrNaming ($$) {
75
- my ($ARGV , $__) = @_ ;
76
- $_ = $__;
89
+ sub patchAttrNaming () {
90
+ return unless $ARGV =~ / ^tmp\/ otel\/ specification/
91
+ && applyPatchOrPrintMsgIf(' 2025-01-22-attribute-naming' , ' semconv' , ' 1.29.0' );
92
+
77
93
my $semconv_attr_naming = ' (/docs/specs/semconv/general)/naming/' ;
78
- if ($ARGV =~ / ^tmp\/ otel\/ specification/ && / $semconv_attr_naming / ) {
79
- s | $semconv_attr_naming| $1 /attribute-naming/| g ;
80
- printPatchInfoIf(" 2025-01-22-attribute-naming" , $semconvVers ne " 1.29.0" );
94
+ s | $semconv_attr_naming| $1 /attribute-naming/| g if / $semconv_attr_naming / ;
95
+ }
96
+
97
+ sub getVersFromRepo () {
98
+ my $vers = qx(
99
+ cd content-modules/semantic-conventions;
100
+ git describe --tags 2>&1;
101
+ ) ;
102
+ chomp ($vers );
103
+
104
+ if ($? ) {
105
+ warn " WARNING: semconv repo: call to 'git describe' failed: '$vers '" ;
106
+ } else {
107
+ $vers =~ s / v// ;
108
+ $versFromRepo {' semconv:' } = $vers ;
81
109
}
82
- return $_ ;
83
110
}
84
111
85
112
# main
86
113
114
+ getVersFromRepo();
115
+
87
116
while (<>) {
88
117
# printf STDOUT "$ARGV Got: $_" if $gD;
89
118
94
123
if (/ ^<!---? Hugo/ ) {
95
124
while (<>) {
96
125
last if / ^-?-->/ ;
97
- $_ = patchAttrNaming($ARGV , $_ ); # TEMPORARY patch
126
+ patchAttrNaming(); # TEMPORARY patch
98
127
$frontMatterFromFile .= $_ ;
99
128
}
100
129
next ;
@@ -119,11 +148,10 @@ ($$)
119
148
# # Semconv
120
149
121
150
if ($ARGV =~ / ^tmp\/ semconv/ ) {
122
- my $otel_spec_event_deprecation = ' (opentelemetry-specification/blob/main/specification/logs)/event-(api|sdk).md' ;
123
- if (/ $otel_spec_event_deprecation / ) {
151
+ if (applyPatchOrPrintMsgIf(' 2025-01-22-event-(api|sdk)' , ' semconv' , ' 1.29.0' )) {
124
152
# Cf. https://github.com/open-telemetry/opentelemetry-specification/pull/4359
125
- s | $otel_spec_event_deprecation\b | $1 / | g ;
126
- printPatchInfoIf( " 2025-01-22-event-(api|sdk) " , $semconvVers ne " 1.29.0 " ) ;
153
+ my $otel_spec_event_deprecation = ' (opentelemetry-specification/blob/main/specification/logs)/event-(api|sdk).md ' ;
154
+ s | $otel_spec_event_deprecation \b | $1 / | g if / $otel_spec_event_deprecation / ;
127
155
}
128
156
129
157
s | (\]\( )/docs/| $1 $specBasePath /semconv/| g ;
@@ -135,13 +163,12 @@ ($$)
135
163
136
164
# SPECIFICATION custom processing
137
165
138
- my $semconv_attr_naming_md = ' (semantic-conventions/blob/main/docs/general)/naming.md(#\w+)?' ;
139
- if ($ARGV =~ / ^tmp\/ otel\/ specification/ && / $semconv_attr_naming_md / ) {
140
- s | $semconv_attr_naming_md\b | $1 /attribute-naming.md| g ;
141
- printPatchInfoIf(" 2025-01-22-attribute-naming.md" , $semconvVers ne " 1.29.0" );
166
+ if ($ARGV =~ / ^tmp\/ otel\/ specification/ && applyPatchOrPrintMsgIf(' 2025-01-22-attribute-naming.md' , ' semconv' , ' 1.29.0' )) {
167
+ my $semconv_attr_naming_md = ' (semantic-conventions/blob/main/docs/general)/naming.md(#\w+)?' ;
168
+ s | $semconv_attr_naming_md\b | $1 /attribute-naming.md| g if / $semconv_attr_naming_md / ;
142
169
}
143
170
144
- $_ = patchAttrNaming($ARGV , $_ ); # TEMPORARY patch
171
+ patchAttrNaming(); # TEMPORARY patch
145
172
146
173
s |\( https://github.com/open-telemetry/opentelemetry-specification\) | ($specBasePath /otel/)| ;
147
174
s | (\]\( )/specification/| $1 $specBasePath /otel/)| ;
0 commit comments