1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
#! /usr/bin/perl
use utf8;
########################################################################
##
## Copyright (C) 2012-2025 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################
use strict;
use warnings;
use File::Spec;
use Cwd;
## Expecting arguments in this order:
##
## SRCDIR SRCDIR-FILES ...
unless (@ARGV >= 2) { die "Usage: $0 srcdir m_filename1 ..." ; }
my $srcdir = shift (@ARGV);
print <<__END_OF_MSG__;
### DO NOT EDIT!
###
### This file is generated automatically from Octave source files.
### Edit source files directly and run make to update this file.
__END_OF_MSG__
MFILE: foreach my $m_fname (@ARGV)
{
my $full_fname = File::Spec->catfile ($srcdir, $m_fname);
my @paths = File::Spec->splitdir ($full_fname);
if (@paths < 3
|| $paths[-2] eq "private" # skip private directories
|| $paths[-1] !~ s/(\.in|)\.m$//i) # skip non m-files, and remove extension
{ next MFILE; }
my $fcn;
if ($paths[-2] =~ m/^@/)
{
## @classes will have @class/method as their function name
$fcn = File::Spec->catfile (@paths[-2, -1]);
}
elsif ($paths[-2] =~ m/^\+/)
{
$fcn = $paths[-1];
for (my $i = 2; $i < @paths; $i++)
{
if ($paths[-$i] =~ m/^\+/)
{
## +package functions have package.name their function name
$fcn = substr ($paths[-$i], 1) . "." . $fcn;
}
}
}
else
{
$fcn = $paths[-1];
}
my @help_txt = gethelp ($fcn, $full_fname);
next MFILE unless @help_txt;
print "\x{1d}$fcn\n";
print "\@c $fcn $m_fname\n";
foreach $_ (@help_txt)
{
my $in_example = (m/\s*\@example\b/ .. m/\s*\@end\s+example\b/);
s/^\s+\@/\@/ unless $in_example;
s/^\s+(\@(?:end)\s+(group|example))/$1/;
print $_;
}
}
################################################################################
# Subroutines
################################################################################
sub gethelp
{
my $fcn = shift;
my $fname = shift;
my $have_cdef_file = 0;
my $found_code = 0;
open (my $fh, "<", $fname) or return;
my @help_txt;
while (my $line = <$fh>)
{
next if $line =~ m/^[\s#%]*$/; # skip empty lines
if ($line !~ m/^\s*(#|%)/)
{
if (! $found_code)
{
$found_code = 1;
$have_cdef_file = ! $have_cdef_file && $line =~ m/^\s*classdef/;
}
next if $have_cdef_file;
last;
}
my $reading_block = sub {defined ($line = <$fh>) && $line !~ m/^\s*$/};
## Skip this block
if ($line =~ /(Copyright|Author)/)
{ while (&$reading_block ()) {} }
else
{
do
{
$line =~ s/^\s*(%|#)+ ?//;
push (@help_txt, $line);
} while (&$reading_block ());
last;
## Instead of jumping out here unconditionally, should we
## attempt to extract multiple help comment blocks in a
## classdef file by searching forward for the next line that
## begins with "function" and then saving the first comment
## block after that? We will need a way to recognize the
## method name to print the docstring separator line. Maybe
## we should just be using Octave's parser and help system for
## this job?
## if ($have_cdef_file)
## {
## while (my $line = <$fh>)
## {
## last if $line =~ /^\s*function/;
## }
## }
## else
## {
## last;
## }
}
}
close ($fh);
return @help_txt;
}
|