mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 06:00:08 +01:00
"libnm-core/" is rather complicated. It provides a static library that
is linked into libnm.so and NetworkManager. It also contains public
headers (like "nm-setting.h") which are part of public libnm API.
Then we have helper libraries ("libnm-core/nm-libnm-core-*/") which
only rely on public API of libnm-core, but are themself static
libraries that can be used by anybody who uses libnm-core. And
"libnm-core/nm-libnm-core-intern" is used by libnm-core itself.
Move "libnm-core/" to "src/". But also split it in different
directories so that they have a clearer purpose.
The goal is to have a flat directory hierarchy. The "src/libnm-core*/"
directories correspond to the different modules (static libraries and set
of headers that we have). We have different kinds of such modules because
of how we combine various code together. The directory layout now reflects
this.
160 lines
4.4 KiB
Perl
Executable file
160 lines
4.4 KiB
Perl
Executable file
#!/usr/bin/env perl
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2014 Red Hat, Inc.
|
|
#
|
|
|
|
#
|
|
# The script parses nm-setting-*.c files and extracts documentation related
|
|
# to setting plugins. The documentation is in a simple format of lines
|
|
# "keyword: value". The documentation is enclosed between tags
|
|
# ---<plugin-name>--- and ---end---
|
|
# Recognized keywords are:
|
|
# "property: " - property name
|
|
# "variable: " - name of the variable used by the plugin
|
|
# "format: " - format of the value in 'keyfile' plugin
|
|
# "default: " - default value when variable is not used
|
|
# "values: " - allowed values (e.g. for enumerations)
|
|
# "example: " - example(s)
|
|
# "description: " - description text
|
|
# Value is an arbitrary string that can span over multiple lines.
|
|
#
|
|
# ifcfg-rh specifics:
|
|
# - mark NM extension variables with (+), e.g. variable: UUID(+)
|
|
#
|
|
|
|
use strict;
|
|
use warnings;
|
|
use v5.10;
|
|
|
|
# global variables
|
|
my @keywords = ("property", "variable", "format", "values", "default", "example", "description");
|
|
my @data;
|
|
my $fo;
|
|
|
|
(scalar @ARGV >= 3) or die "Usage: $0 <plugin> <output-xml-file> <srcfiles>\n";
|
|
my ($plugin, $output, (@source_files)) = @ARGV;
|
|
my $start_tag = "---$plugin---\\s*\$";
|
|
my $end_tag = '---end---';
|
|
|
|
# open output file
|
|
open $fo, '>', $output or die "Can't open $output: $!";
|
|
|
|
# write XML header
|
|
write_header();
|
|
|
|
# write generated documentation for each setting
|
|
foreach my $c_file (@source_files) {
|
|
my $setting_name = get_setting_name($c_file);
|
|
if ($setting_name) {
|
|
write_item("<setting name=\"$setting_name\">");
|
|
scan_doc_comments($c_file, $start_tag, $end_tag);
|
|
write_item("</setting>");
|
|
}
|
|
}
|
|
|
|
# write XML footer
|
|
write_footer();
|
|
|
|
# close output file
|
|
close $fo;
|
|
|
|
|
|
### --- subroutines --- ###
|
|
|
|
# get setting name from NM_SETTING_*_SETTING_NAME constant in C header file
|
|
sub get_setting_name {
|
|
my $path = $_[0];
|
|
$path =~ s/\/libnm-core-impl\/nm-setting-(.*)\.c$/\/libnm-core-public\/nm-setting-$1.h/; # use header file to find out setting name
|
|
$path =~ s/\.c$/.h/; # use header file to find out setting name
|
|
open my $fh, '<', $path or die "Can't open $path: $!";
|
|
while (my $line = <$fh>) {
|
|
if ($line =~ /NM_SETTING_.+SETTING_NAME\s+\"(\S+)\"/) {
|
|
return $1;
|
|
}
|
|
}
|
|
}
|
|
|
|
# scan source setting file for documentation tags and write them to XML
|
|
sub scan_doc_comments {
|
|
my($setting_file, $start, $end) = @_;
|
|
open my $fi, '<', $setting_file or die "Can't open $setting_file: $!";
|
|
while (<$fi>) {
|
|
if (/$start/ .. /$end/) {
|
|
next if /$start/;
|
|
if (/$end/) {
|
|
process_data();
|
|
} else {
|
|
push @data, $_;
|
|
}
|
|
next;
|
|
}
|
|
# ignore text not inside marks
|
|
}
|
|
close $fi;
|
|
}
|
|
|
|
# process plugin property documentation comments
|
|
sub process_data {
|
|
return if not @data;
|
|
my $kwd_pat = join("|", @keywords);
|
|
my %parsed_data;
|
|
my $this_key;
|
|
|
|
foreach (@data) {
|
|
if (/^\s*\**\s+($kwd_pat):\s+(.*?)\s*$/) {
|
|
$this_key = $1;
|
|
$parsed_data{$this_key} = "$2\n";
|
|
} elsif (/^\s*\**\s+(.*?)\s*$/) {
|
|
die "Extra mess in a comment: $_" unless $this_key;
|
|
$parsed_data{$this_key} .= "$1\n";
|
|
}
|
|
}
|
|
|
|
# now write a line into the XML
|
|
my $name = $parsed_data{property} // "";
|
|
my $var = $parsed_data{variable} // $name; # fallback to "property: "
|
|
my $format = $parsed_data{format} // "";
|
|
my $values = $parsed_data{values} // "";
|
|
my $def = $parsed_data{default} // "";
|
|
my $exam = $parsed_data{example} // "";
|
|
my $desc = $parsed_data{description} // "";
|
|
|
|
chomp($name, $var, $format, $values, $def, $exam, $desc);
|
|
escape_xml_chars($name, $var, $format, $values, $def, $exam, $desc);
|
|
my $foo = sprintf("<property name=\"%s\" variable=\"%s\" format=\"%s\" values=\"%s\" ".
|
|
"default=\"%s\" example=\"%s\" description=\"%s\"/>",
|
|
$name, $var, $format, $values, $def, $exam, $desc);
|
|
write_item($foo);
|
|
@data = ();
|
|
}
|
|
|
|
# - XML handling -
|
|
sub write_header {
|
|
(my $header =
|
|
qq{<nm-setting-docs>
|
|
}) =~ s/^ {7}//mg;
|
|
print {$fo} $header;
|
|
}
|
|
|
|
sub write_footer {
|
|
my $footer = "</nm-setting-docs>";
|
|
print {$fo} $footer;
|
|
}
|
|
|
|
sub write_item {
|
|
my $str = join("", @_);
|
|
print {$fo} $str, "\n";
|
|
}
|
|
|
|
sub escape_xml_chars {
|
|
# http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined%5Fentities%5Fin%5FXML
|
|
foreach my $val (@_) {
|
|
$val =~ s/&/&/sg;
|
|
$val =~ s/</</sg;
|
|
$val =~ s/>/>/sg;
|
|
$val =~ s/"/"/sg;
|
|
$val =~ s/'/'/sg;
|
|
}
|
|
}
|
|
|