source: trunk/gsdl/perllib/plugins/SRCPlug.pm@ 10218

Last change on this file since 10218 was 10218, checked in by kjdon, 19 years ago

Jeffrey's new parsing modifications, committed approx 6 July, 15.16

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 7.0 KB
Line 
1###########################################################################
2#
3# SRCPlug.pm -- source code plugin
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 1999 New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26# John McPherson Nov 2000
27# originally based on TEXTPlug
28
29# filename is currently used for Title ( optionally minus some prefix )
30
31# Current languages:
32# text: READMEs/Makefiles
33# C/C++ (currently extracts #include statements and C++ class decls)
34# Perl (currently only done as text)
35# Shell (currently only done as text)
36
37# 12/05/02 Added usage datastructure - John Thompson
38
39package SRCPlug;
40
41use BasPlug;
42use parsargv;
43
44sub BEGIN {
45 @ISA = ('BasPlug');
46}
47
48my $arguments =
49 [ { 'name' => "process_exp",
50 'desc' => "{BasPlug.process_exp}",
51 'type' => "regexp",
52 'deft' => &get_default_process_exp(),
53 'reqd' => "no" } ,
54 { 'name' => "block_exp",
55 'desc' => "{BasPlug.block_exp}",
56 'type' => "regexp",
57 'deft' => &get_default_block_exp(),
58 'reqd' => "no" },
59 { 'name' => "remove_prefix",
60 'desc' => "{SRCPlug.remove_prefix}",
61 'type' => "regexp",
62 'deft' => "^.*[/\\]",
63 'reqd' => "no" } ];
64
65my $options = { 'name' => "SRCPlug",
66 'desc' => "{SRCPlug.desc}",
67 'abstract' => "no",
68 'inherits' => "yes",
69 'args' => $arguments };
70
71
72sub new {
73 my ($class) = shift (@_);
74 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
75 push(@$pluginlist, $class);
76
77 if(defined $arguments){ push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});}
78 if(defined $options) { push(@{$hashArgOptLists->{"OptList"}},$options)};
79
80 my $self = (defined $hashArgOptLists)? new BasPlug($pluginlist,$inputargs,$hashArgOptLists): new BasPlug($pluginlist,$inputargs);
81
82 return bless $self, $class;
83}
84
85sub get_default_block_exp {
86 my $self = shift (@_);
87
88 return q^(?i)\.(o|obj|a|so|dll)$^;
89}
90
91sub get_default_process_exp {
92 my $self = shift (@_);
93
94# return q^(?i)\.te?xt$^;
95 return q^(Makefile.*|README.*|(?i)\.(c|cc|cpp|C|h|hpp|pl|pm|sh))$^;
96}
97
98
99
100# do plugin specific processing of doc_obj
101sub process {
102 my $self = shift (@_);
103 my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_;
104 my $outhandle = $self->{'outhandle'};
105
106 print STDERR "<Processing n='$file' p='SRCPlug'>\n" if ($gli);
107 print $outhandle "SRCPlug: processing $file\n"
108 if $self->{'verbosity'} > 1;
109
110 my $cursection = $doc_obj->get_top_section();
111
112 my $filetype="text"; # Makefiles, READMEs, ...
113 if ($file =~ /\.(cc|h|cpp|C)$/) {$filetype="C++";} # assume all .h files...
114 elsif ($file =~ /\.c$/) {$filetype="C";}
115 elsif ($file =~ /\.p(l|m)$/) {$filetype="perl";}
116 elsif ($file =~ /\.sh$/) {$filetype="sh";}
117
118 # modify '<' and '>' for GML... (even though inside <pre> tags!!)
119 $$textref =~ s/</&lt;/g;
120 $$textref =~ s/>/&gt;/g;
121 $$textref =~ s/_/&#95;/g;
122 # try _escape_text($text) from doc.pm....
123
124 # don't want mg to turn escape chars into actual values
125 $$textref =~ s/\\/\\\\/g;
126
127 # use filename (minus any prefix) as the title.
128 my $title;
129 if ($self->{'remove_prefix' ne ""}) {
130 ($title = $file) =~ s/^$self->{'remove_prefix'}//;
131 } else {
132 ($title = $file) =~ s@^.*[/\\]@@; # remove pathname by default
133 }
134 $doc_obj->add_utf8_metadata ($cursection, "Title", $title);
135 $doc_obj->add_metadata ($cursection, "FileFormat", "SRC");
136
137 # remove the gsdl prefix from the filename
138 my $relative_filename=$file;
139 $relative_filename =~ s@^.*?gsdl[/\\]@@;
140 $doc_obj->add_utf8_metadata ($cursection, "filename", $relative_filename);
141
142 # class information from .h and .cc and .C and .cpp files
143 if ($filetype eq "C++")
144 {
145 process_c_plus_plus($textref,$pluginfo, $base_dir,
146 $file, $metadata, $doc_obj);
147 } elsif ($filetype eq "C")
148 {
149 get_includes_metadata($textref, $doc_obj);
150 }
151
152
153 # default operation...
154 # insert preformat tags and add text to document object
155 $doc_obj->add_utf8_text($cursection, "<pre>\n$$textref\n</pre>");
156
157 return 1;
158}
159
160
161
162
163sub get_includes_metadata {
164 my ($textref, $doc_obj) = @_;
165
166 my $topsection = $doc_obj->get_top_section();
167
168 # Get '#include' directives for metadata
169 if ($$textref !~ /\#\s*include\b/) {
170 return;
171 }
172
173 my @includes =
174 ($$textref =~ m/^\s*\#\s*include\s*(?:\"|&lt;)(.*?)(?:\"|&gt;)/mg);
175
176 my $incs_done_ref=$doc_obj->get_metadata($section, "includes");
177 my @incs_done;
178 if (defined($incs_done_ref)) {
179 @incs_done=@$incs_done_ref;
180 } else {
181 @incs_done=();
182 }
183
184 foreach my $inc (@includes) {
185 # add entries, but only if they don't already exist
186 if (!join('', map {$_ eq "$inc"?1:""} @incs_done)) {
187 push @incs_done, $inc;
188 $doc_obj->add_utf8_metadata($topsection, "includes", $inc);
189 }
190 }
191}
192
193
194
195sub process_c_plus_plus {
196 my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj) = @_;
197
198 my $topsection = $doc_obj->get_top_section();
199
200
201 # Check for include metadata
202 get_includes_metadata($textref, $doc_obj);
203
204
205
206 # Get class declarations (but not forward declarations...) as metadata
207 if ($$textref =~ /\bclass\b/ ) {
208 my $classnames=$$textref;
209
210 # remove commented lines
211 $classnames =~ s@/\*.*?\*/@@sg;
212 $classnames =~ s@//.*$@@mg;
213 while ($classnames =~ /\bclass\b/) {
214
215 # delete all lines up to the next "class"
216 while ($classnames !~ /^[^\n]*\bclass\b[^\n]*\n/)
217 {$classnames =~ s/.*\n//;}
218
219# $classnames =~ s/^([^c][^l])*(.)?$//mg; # delete unneccessary lines
220
221 # get the line including the next "class" and remove it from
222 # our tmp text.
223 $classnames =~ s/^(.*\bclass\b.*)$//m;
224
225 # don't index if merely a reference/fwd decl. of another class
226 if ($1 !~ /(friend\Wclass)|(class\W\w+\W?\;)|(\/\/.*class)/) {
227 # $1 is still the whole line - eg:
228 # "class StaffSystem: public BaseStaffSystem"
229 my $wholeline=$1;
230 my $classname=$1;
231 $classname =~ s/.*class\W(\w+).*/$1/;
232 my $classes=$doc_obj->get_metadata($section, "class");
233 foreach my $elem (@$classes) {
234 if ("$elem" eq "$classname") {goto class_done;}
235 }
236 $doc_obj->add_utf8_metadata($topsection, "class", $classname);
237 class_done:
238 $doc_obj->add_utf8_metadata($topsection, "classdecl", $wholeline);
239 }
240 }
241 } # end of "class"
242
243 return 1;
244}
245
2461;
247
Note: See TracBrowser for help on using the repository browser.