annotate scripts/gethelp.cc @ 12254:23385f2c90b7 release-3-4-x

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents a9be431c1595
children 3709aaf73715
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
1 /*
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
2
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 11233
diff changeset
3 Copyright (C) 1999-2011 John W. Eaton
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
4
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
5 This file is part of Octave.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
6
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
8 under the terms of the GNU General Public License as published by the
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
10 option) any later version.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
11
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
15 for more details.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
16
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
17 You should have received a copy of the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
19 <http://www.gnu.org/licenses/>.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
20
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
21 */
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6528
diff changeset
22
8521
93cf10950334 tmpdir=tmpnam;
Rafael Laboissiere <rafael@debian.org>
parents: 8019
diff changeset
23 #include <cstdio>
93cf10950334 tmpdir=tmpnam;
Rafael Laboissiere <rafael@debian.org>
parents: 8019
diff changeset
24
93cf10950334 tmpdir=tmpnam;
Rafael Laboissiere <rafael@debian.org>
parents: 8019
diff changeset
25 #include <iostream>
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
26 #include <string>
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
27
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
28 static bool
3575
7576a76f6d7b [project @ 2000-02-04 11:02:49 by jwe]
jwe
parents: 3427
diff changeset
29 looks_like_octave_copyright (const std::string& s)
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
30 {
6528
b3e973d63c1c [project @ 2007-04-16 17:13:08 by jwe]
jwe
parents: 4279
diff changeset
31 // Perhaps someday we will want to do more here, so leave this as a
b3e973d63c1c [project @ 2007-04-16 17:13:08 by jwe]
jwe
parents: 4279
diff changeset
32 // separate function.
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
33
6528
b3e973d63c1c [project @ 2007-04-16 17:13:08 by jwe]
jwe
parents: 4279
diff changeset
34 return (s.substr (0, 9) == "Copyright");
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
35 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
36
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
37 // Eat whitespace and comments from FFILE, returning the text of the
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
38 // first block of comments that doesn't look like a copyright notice,
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
39
3575
7576a76f6d7b [project @ 2000-02-04 11:02:49 by jwe]
jwe
parents: 3427
diff changeset
40 static std::string
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
41 extract_help_text (void)
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
42 {
3575
7576a76f6d7b [project @ 2000-02-04 11:02:49 by jwe]
jwe
parents: 3427
diff changeset
43 std::string help_txt;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
44
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
45 bool first_comments_seen = false;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
46 bool begin_comment = false;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
47 bool have_help_text = false;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
48 bool in_comment = false;
3427
e098ebb77023 [project @ 2000-01-13 09:25:53 by jwe]
jwe
parents: 3295
diff changeset
49 bool discard_space = true;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
50 int c;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
51
3575
7576a76f6d7b [project @ 2000-02-04 11:02:49 by jwe]
jwe
parents: 3427
diff changeset
52 while ((c = std::cin.get ()) != EOF)
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
53 {
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
54 if (begin_comment)
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
55 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
56 if (c == '%' || c == '#')
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
57 continue;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
58 else if (discard_space && c == ' ')
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
59 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
60 discard_space = false;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
61 continue;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
62 }
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
63 else
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
64 begin_comment = false;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
65 }
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
66
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
67 if (in_comment)
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
68 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
69 if (! have_help_text)
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
70 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
71 first_comments_seen = true;
10553
f88e3d5d88e2 avoid GCC warnings
John W. Eaton <jwe@octave.org>
parents: 10165
diff changeset
72 help_txt += static_cast<char> (c);
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
73 }
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
74
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
75 if (c == '\n')
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
76 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
77 in_comment = false;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
78 discard_space = true;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
79
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
80 if ((c = std::cin.get ()) != EOF)
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
81 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
82 if (c == '\n')
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
83 break;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
84 }
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
85 else
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
86 break;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
87 }
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
88 }
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
89 else
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
90 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
91 switch (c)
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
92 {
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
93 case ' ':
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
94 case '\t':
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
95 if (first_comments_seen)
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
96 have_help_text = true;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
97 break;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
98
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
99 case '\n':
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
100 if (first_comments_seen)
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
101 have_help_text = true;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
102 continue;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
103
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
104 case '%':
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
105 case '#':
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
106 begin_comment = true;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
107 in_comment = true;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
108 break;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
109
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
110 default:
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
111 goto done;
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
112 }
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
113 }
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
114 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
115
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
116 done:
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
117
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
118 if (! help_txt.empty ())
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
119 {
12254
23385f2c90b7 whitespace fixes
John W. Eaton <jwe@octave.org>
parents: 11550
diff changeset
120 if (looks_like_octave_copyright (help_txt))
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
121 help_txt.resize (0);
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
122
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
123 if (help_txt.empty ())
10163
a822560a3ce3 scripts/gethelp.cc: untabify
John W. Eaton <jwe@octave.org>
parents: 9014
diff changeset
124 help_txt = extract_help_text ();
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
125 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
126
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
127 return help_txt;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
128 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
129
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
130 int
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
131 main (int argc, char **argv)
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
132 {
3575
7576a76f6d7b [project @ 2000-02-04 11:02:49 by jwe]
jwe
parents: 3427
diff changeset
133 std::string name;
9014
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
134 std::string file_name;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
135
9014
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
136 if (argc != 3)
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
137 {
9014
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
138 std::cerr << "usage: gethelp name file-name\n";
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
139 return 1;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
140 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
141 else
9014
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
142 {
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
143 name = argv[1];
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
144 file_name = argv[2];
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
145 }
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
146
12254
23385f2c90b7 whitespace fixes
John W. Eaton <jwe@octave.org>
parents: 11550
diff changeset
147 std::string help_text = extract_help_text ();
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
148
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
149 if (! help_text.empty ())
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
150 {
9014
71fca0fc2436 save source file names for functions as comments in .texi files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
151 std::cout << "" << name << "\n"
11550
a9be431c1595 write function name along with filename in docstring comments
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
152 << "@c " << name << " " << file_name << "\n"
10165
bc59bc6282a0 scripts/gethelp.cc: finish previous untabification
John W. Eaton <jwe@octave.org>
parents: 10163
diff changeset
153 << help_text;
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
154
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
155 if (help_text[help_text.length () - 1] != '\n')
10165
bc59bc6282a0 scripts/gethelp.cc: finish previous untabification
John W. Eaton <jwe@octave.org>
parents: 10163
diff changeset
156 std::cout << "\n";
3295
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
157 }
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
158
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
159 return 0;
35a6d027772c [project @ 1999-10-19 10:13:02 by jwe]
jwe
parents:
diff changeset
160 }