Mercurial > hg > octave-nkf
view scripts/gethelp.cc @ 11117:3cbc0d77db48 ss-3-3-53
update version info for snapshot
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 19 Oct 2010 02:25:32 -0400 |
parents | f88e3d5d88e2 |
children | 1dfbcc9eee92 |
line wrap: on
line source
/* Copyright (C) 1999, 2000, 2003, 2007, 2008, 2009 John W. Eaton 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 <http://www.gnu.org/licenses/>. */ #if defined (__DECCXX) #define __USE_STD_IOSTREAM #endif #include <cstdio> #include <iostream> #include <string> static bool looks_like_octave_copyright (const std::string& s) { // Perhaps someday we will want to do more here, so leave this as a // separate function. return (s.substr (0, 9) == "Copyright"); } // Eat whitespace and comments from FFILE, returning the text of the // first block of comments that doesn't look like a copyright notice, static std::string extract_help_text (void) { std::string help_txt; bool first_comments_seen = false; bool begin_comment = false; bool have_help_text = false; bool in_comment = false; bool discard_space = true; int c; while ((c = std::cin.get ()) != EOF) { if (begin_comment) { if (c == '%' || c == '#') continue; else if (discard_space && c == ' ') { discard_space = false; continue; } else begin_comment = false; } if (in_comment) { if (! have_help_text) { first_comments_seen = true; help_txt += static_cast<char> (c); } if (c == '\n') { in_comment = false; discard_space = true; if ((c = std::cin.get ()) != EOF) { if (c == '\n') break; } else break; } } else { switch (c) { case ' ': case '\t': if (first_comments_seen) have_help_text = true; break; case '\n': if (first_comments_seen) have_help_text = true; continue; case '%': case '#': begin_comment = true; in_comment = true; break; default: goto done; } } } done: if (! help_txt.empty ()) { if (looks_like_octave_copyright (help_txt)) help_txt.resize (0); if (help_txt.empty ()) help_txt = extract_help_text (); } return help_txt; } int main (int argc, char **argv) { std::string name; std::string file_name; if (argc != 3) { std::cerr << "usage: gethelp name file-name\n"; return 1; } else { name = argv[1]; file_name = argv[2]; } std::string help_text = extract_help_text (); if (! help_text.empty ()) { std::cout << "" << name << "\n" << "@c " << file_name << "\n" << help_text; if (help_text[help_text.length () - 1] != '\n') std::cout << "\n"; } return 0; }