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 166 167 168 169 170
|
/*
* fileiter.cc: Part of GNU CSSC.
*
* Copyright (C) 1997, Free Software Foundation, Inc.
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*
* CSSC was originally Based on MySC, by Ross Ridge, which was
* placed in the Public Domain.
*
*
* Members of the class fileiter.
*
*/
#ifdef __GNUC__
#pragma implementation "fileiter.h"
#endif
#include "cssc.h"
#include "sccsname.h"
#include "fileiter.h"
#include "linebuf.h"
#include "my-getopt.h"
#ifdef CONFIG_SCCS_IDS
static const char rcs_id[] = "CSSC $Id: fileiter.cc,v 1.22 2001/09/29 19:39:41 james_youngman Exp $";
#endif
sccs_file_iterator::sccs_file_iterator(const CSSC_Options &opts)
: argv(opts.get_argv() + opts.get_index()),
argc(opts.get_argc() - opts.get_index()),
is_unique(0)
{
if (argc < 1) {
source = NONE;
return;
}
char *first = argv[0];
if (strcmp(first, "-") == 0) {
source = STDIN;
return;
}
#ifndef CONFIG_NO_DIRECTORY
if (first[0] != '\0') {
DIR *dir = opendir(first);
if (dir != NULL) {
const char *slash = NULL;
int len = strlen(first);
#ifdef CONFIG_MSDOS_FILES
if (first[len - 1] != '/' && first[len - 1] != '\\') {
if (strchr(first, '/') == NULL) {
slash = "\\";
} else {
slash = "/";
}
}
#else
if (first[len - 1] != '/') {
slash = "/";
} else {
/* SourceForge bug 121605: Unix coredump in
* mystring::mystring() if the directory
* name contains a trailing slash. Solution
* is to make sure that "slash" is not NULL.
*/
slash = "";
}
#endif
mystring dirname(mystring(first) + mystring(slash));
struct dirent *dent = readdir(dir);
while (dent != NULL) {
mystring name = mystring(dirname) + mystring(dent->d_name, NAMLEN(dent));
if (sccs_name::valid_filename(name.c_str())
&& is_readable(name.c_str())) {
files.add(name);
}
dent = readdir(dir);
}
closedir(dir);
source = DIRECTORY;
pos = 0;
return;
}
}
#endif /* CONFIG_NO_DIRECTORY */
source = ARGS;
is_unique = (1 == argc);
}
int
sccs_file_iterator::unique() const
{
return is_unique;
}
int
sccs_file_iterator::next() {
switch (source) {
case STDIN:
{
cssc_linebuf linebuf;
if (linebuf.read_line(stdin)) {
return 0;
}
mystring s (linebuf.c_str());
name = s.substr(0, s.length()-1u); // chop off the newline.
return 1;
}
#ifndef CONFIG_NO_DIRECTORY
case DIRECTORY:
if (pos < files.length()) {
name = files[pos++];
return 1;
}
return 0;
#endif
case ARGS:
if (argc-- <= 0) {
return 0;
}
name = *argv++;
#ifdef CONFIG_FILE_NAME_GUESSING
if (!name.valid())
{
name.make_valid();
}
#endif
return 1;
default:
abort();
}
return 0;
}
/* Local variables: */
/* mode: c++ */
/* End: */
|