Skip to content

Commit 9d9bdac

Browse files
committed
Code for release 6.16 (pre-release)
1 parent 551fe23 commit 9d9bdac

19 files changed

+1518
-246
lines changed

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SCC Version 5.05 (2012-01-23)
1+
SCC Version 6.16 (2016-01-19)
22

33
This is the source code to a program which is licenced under the terms of the
44
GNU General Public License Version 3
@@ -12,4 +12,4 @@ Ideally, the build process should simply be a question of running:
1212
If you have questions or comments, please contact the author:
1313
Jonathan Leffler via email at [email protected]
1414

15-
Package created: 2012-01-23
15+
Package created: 2016-01-19

errhelp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Print usage and help message in standard format.
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 2007-09
8-
@(#)Product: SCC Version 5.05 (2012-01-23)
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
99
*/
1010

1111
/*TABSTOP=4*/

filter.c

+23-21
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
@(#)File: $RCSfile: filter.c,v $
3-
@(#)Version: $Revision: 3.15 $
4-
@(#)Last changed: $Date: 2008/02/11 08:44:50 $
5-
@(#)Purpose: Standard File Filter
3+
@(#)Version: $Revision: 2015.2 $
4+
@(#)Last changed: $Date: 2015/02/17 04:53:03 $
5+
@(#)Purpose: Classic File Filter
66
@(#)Author: J Leffler
7-
@(#)Copyright: (C) JLSS 1987-89,1991,1993,1996-99,2002-05,2008
8-
@(#)Product: SCC Version 5.05 (2012-01-23)
7+
@(#)Copyright: (C) JLSS 1987-89,1991,1993,1996-99,2002-05,2008,2012,2014-15
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
99
*/
1010

1111
/*TABSTOP=4*/
@@ -15,16 +15,18 @@
1515
#include <string.h>
1616
#include <errno.h>
1717

18-
static char *no_args[] = { "-", 0 };
18+
static char dash[] = "-";
19+
static char *no_args[] = { dash, 0 };
1920
static const char em_invoptnum[] = "invalid (negative) option number";
2021

2122
#ifndef lint
2223
/* Prevent over-aggressive optimizers from eliminating ID string */
23-
const char jlss_id_filter_c[] = "@(#)$Id: filter.c,v 3.15 2008/02/11 08:44:50 jleffler Exp $";
24+
extern const char jlss_id_filter_c[];
25+
const char jlss_id_filter_c[] = "@(#)$Id: filter.c,v 2015.2 2015/02/17 04:53:03 jleffler Exp $";
2426
#endif /* lint */
2527

2628
/*
27-
Purpose: Standard File Filter
29+
Purpose: Classic File Filter
2830
2931
Maintenance Log
3032
---------------
@@ -36,6 +38,7 @@ const char jlss_id_filter_c[] = "@(#)$Id: filter.c,v 3.15 2008/02/11 08:44:50 jl
3638
31/03/1998 JL Add support for continuing on error opening a file
3739
22/08/2003 JL Remove filter_setcontinue - always continue on error.
3840
18/12/2004 JL Rename Filter to ClassicFilter; do not modify argv.
41+
27/12/2014 JL Support filter_numfiles()
3942
4043
Arguments
4144
---------
@@ -57,9 +60,8 @@ const char jlss_id_filter_c[] = "@(#)$Id: filter.c,v 3.15 2008/02/11 08:44:50 jl
5760

5861
void filter(int argc, char **argv, int optnum, ClassicFilter function)
5962
{
60-
int i;
61-
FILE *fp;
62-
char *file;
63+
int i;
64+
FILE *fp;
6365

6466
if (optnum < 0)
6567
err_abort(em_invoptnum);
@@ -69,18 +71,18 @@ void filter(int argc, char **argv, int optnum, ClassicFilter function)
6971
argv = no_args;
7072
optnum = 0;
7173
}
74+
filter_setnumfiles(argc - optnum);
7275

7376
for (i = optnum; i < argc; i++)
7477
{
7578
if (strcmp(argv[i], "-") == 0)
7679
{
77-
file = "(standard input)";
78-
(*function)(stdin, file);
80+
char name[] = "(standard input)";
81+
(*function)(stdin, name);
7982
}
8083
else if ((fp = fopen(argv[i], "r")) != NULL)
8184
{
82-
file = argv[i];
83-
(*function)(fp, file);
85+
(*function)(fp, argv[i]);
8486
fclose(fp);
8587
}
8688
else
@@ -98,12 +100,12 @@ void filter(int argc, char **argv, int optnum, ClassicFilter function)
98100
*/
99101

100102
#include <ctype.h>
101-
#include "getopt.h"
103+
#include <unistd.h>
102104

103105
static void fcopy(FILE *f1, FILE *f2)
104106
{
105-
char buffer[BUFSIZ];
106-
int n;
107+
char buffer[BUFSIZ];
108+
size_t n;
107109

108110
while ((n = fread(buffer, sizeof(char), sizeof(buffer), f1)) > 0)
109111
{
@@ -114,7 +116,7 @@ static void fcopy(FILE *f1, FILE *f2)
114116

115117
static void vis(FILE *fp, char *fn)
116118
{
117-
int c;
119+
int c;
118120

119121
fprintf(stdout, "%s:\n", fn);
120122
while ((c = getc(fp)) != EOF)
@@ -134,7 +136,7 @@ static void cat(FILE *fp, char *fn)
134136
fcopy(fp, stdout);
135137
}
136138

137-
int main(int argc, char **argv)
139+
int main(int argc, char **argv)
138140
{
139141
int opt;
140142
ClassicFilter f = cat;
@@ -146,7 +148,7 @@ int main(int argc, char **argv)
146148
if (opt == 'v')
147149
f = vis;
148150
else if (opt == 'V')
149-
err_version("FILTER", "$Revision: 3.15 $ ($Date: 2008/02/11 08:44:50 $)");
151+
err_version("FILTER", "$Revision: 2015.2 $ ($Date: 2015/02/17 04:53:03 $)");
150152
else
151153
err_usage("[-vV] [file ...]");
152154
}

filter.h

+43-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
@(#)File: $RCSfile: filter.h,v $
3-
@(#)Version: $Revision: 2008.1 $
4-
@(#)Last changed: $Date: 2008/02/11 07:39:08 $
3+
@(#)Version: $Revision: 2015.2 $
4+
@(#)Last changed: $Date: 2015/02/17 04:51:48 $
55
@(#)Purpose: Header for filter functions
66
@(#)Author: J Leffler
7-
@(#)Copyright: (C) JLSS 1993,1995-98,2003-04,2006,2008
8-
@(#)Product: SCC Version 5.05 (2012-01-23)
7+
@(#)Copyright: (C) JLSS 1993,1995-98,2003-04,2006,2008,2014-15
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
99
*/
1010

1111
/*TABSTOP=4*/
@@ -16,7 +16,8 @@
1616
#ifdef MAIN_PROGRAM
1717
#ifndef lint
1818
/* Prevent over-aggressive optimizers from eliminating ID string */
19-
const char jlss_id_filter_h[] = "@(#)$Id: filter.h,v 2008.1 2008/02/11 07:39:08 jleffler Exp $";
19+
extern const char jlss_id_filter_h[];
20+
const char jlss_id_filter_h[] = "@(#)$Id: filter.h,v 2015.2 2015/02/17 04:51:48 jleffler Exp $";
2021
#endif /* lint */
2122
#endif /* MAIN_PROGRAM */
2223

@@ -32,21 +33,57 @@ const char jlss_id_filter_h[] = "@(#)$Id: filter.h,v 2008.1 2008/02/11 07:39:08
3233
typedef void (*ClassicFilter)(FILE *ifp, char *fn);
3334
extern void filter(int argc, char **argv, int optnum, ClassicFilter function);
3435

36+
/* No file name at all; no error status feedback */
37+
/* Source: filtera.c */
38+
typedef void (*ClassicFilterAnon)(FILE *ifp);
39+
extern void filter_anon(int argc, char **argv, int optnum, ClassicFilterAnon function);
40+
3541
/* Modern mode 1 - without output file specified */
3642
/* Source: stdfilter.c */
3743
typedef int (*StdoutFilter)(FILE *ifp, const char *fn);
3844
extern int filter_stdout(int argc, char **argv, int optnum, StdoutFilter function);
3945

46+
/* Modern mode 1 - without output file specified */
47+
/* Source: stdfiltera.c */
48+
typedef int (*StdoutFilterAnon)(FILE *ifp);
49+
extern int filter_stdout_anon(int argc, char **argv, int optnum, StdoutFilterAnon function);
50+
4051
/* Modern mode 2 - with output file specified */
4152
/* NB: OutputFilter is compatible with AFF code */
4253
/* Source: outfilter.c */
4354
typedef int (*OutputFilter)(FILE *ifp, const char *fn, FILE *ofp);
4455
extern int filter_output(int argc, char **argv, int optnum, OutputFilter function);
4556

57+
/* Modern mode 2 - with output file specified */
58+
/* Source: outfiltera.c */
59+
typedef int (*OutputFilterAnon)(FILE *ifp, FILE *ofp);
60+
extern int filter_output_anon(int argc, char **argv, int optnum, OutputFilterAnon function);
61+
62+
/* Set output file for filter_output() and filter_output_anon() */
63+
/* Returns previous value of the file (does not set new value if passed null pointer). */
64+
/* Source: outfilterso.c */
65+
extern FILE *filter_setoutput(FILE *out);
66+
4667
/* Standard I/O error check code */
47-
/* Used internally by filter_stdout() and filter_output(). */
68+
/* Used internally by filter_stdout(), filter_stdout_anon(), filter_output() and filter_output_anon(). */
4869
/* Not normally used by client programs. */
4970
/* Source: filterio.c */
5071
extern int filter_io_check(FILE *ifp, const char *ifn, FILE *ofp);
5172

73+
/*
74+
** Number of files to process: enables support for grep-like prefixing
75+
** of output with file name - or not.
76+
** To print file names before output lines, use:
77+
** if (filter_numfiles() > 1)
78+
** printf("%s:%s\n", filename, line);
79+
** else
80+
** puts(line);
81+
** Call filter_setnumfiles(0) to reset to default state (seldom needed).
82+
** Call filter_setnumfiles(1) to suppress headings (grep -h).
83+
** Call filter_setnumfiles(2) to force headings (grep -H).
84+
** Source: filterio.c
85+
*/
86+
extern int filter_numfiles(void);
87+
extern void filter_setnumfiles(int num);
88+
5289
#endif /* FILTER_H */

filterio.c

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
@(#)File: $RCSfile: filterio.c,v $
3+
@(#)Version: $Revision: 2014.2 $
4+
@(#)Last changed: $Date: 2014/12/27 23:14:36 $
5+
@(#)Purpose: Perform standardized I/O error check for filter programs
6+
@(#)Author: J Leffler
7+
@(#)Copyright: (C) JLSS 2003,2005,2008,2014
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
9+
*/
10+
11+
/*TABSTOP=4*/
12+
13+
#include "filter.h"
14+
#include "stderr.h"
15+
16+
static int numfiles = 0;
17+
18+
#ifndef lint
19+
/* Prevent over-aggressive optimizers from eliminating ID string */
20+
const char jlss_id_filterio_c[] = "@(#)$Id: filterio.c,v 2014.2 2014/12/27 23:14:36 jleffler Exp $";
21+
#endif /* lint */
22+
23+
/* filter_numfiles() - return number of files to be processed */
24+
int filter_numfiles(void)
25+
{
26+
return numfiles;
27+
}
28+
29+
/* filter_setnumfiles() - set number of files to be processed */
30+
/*
31+
** Only set number of files if not overridden by prior
32+
** filter_setnumfiles(1) or filter_setnumfiles(2)
33+
*/
34+
void filter_setnumfiles(int num)
35+
{
36+
if (numfiles == 0)
37+
numfiles = num;
38+
}
39+
40+
/* filter_io_check() - did an input or output error occur? */
41+
int filter_io_check(FILE *ifp, const char *ifn, FILE *ofp)
42+
{
43+
int rc = 0;
44+
if (ferror(ifp))
45+
{
46+
err_sysrem("read error on file %s\n", ifn);
47+
rc = -1;
48+
}
49+
if (ferror(ofp))
50+
{
51+
err_sysrem("write error on output file\n");
52+
rc = -1;
53+
}
54+
return(rc);
55+
}
56+
57+
#ifdef TEST
58+
59+
#include <stdlib.h>
60+
61+
static int cat(FILE *ifp, const char *ifn, FILE *ofp)
62+
{
63+
char buffer[4096];
64+
size_t nbytes;
65+
66+
while ((nbytes = fread(buffer, sizeof(char), sizeof(buffer), ifp)) != 0)
67+
{
68+
if (fwrite(buffer, sizeof(char), nbytes, ofp) != nbytes)
69+
{
70+
err_syserr1("write failed");
71+
break;
72+
}
73+
}
74+
return(filter_io_check(ifp, ifn, ofp));
75+
}
76+
77+
int main(int argc, char **argv)
78+
{
79+
int rc = EXIT_SUCCESS;
80+
err_setarg0(argv[0]);
81+
if (filter_output(argc, argv, 1, cat) != 0)
82+
rc = EXIT_FAILURE;
83+
return(rc);
84+
}
85+
86+
#endif /* TEST */

posixver.h

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
@(#)File: $RCSfile: posixver.h,v $
3-
@(#)Version: $Revision: 1.1 $
4-
@(#)Last changed: $Date: 2010/08/29 00:27:48 $
3+
@(#)Version: $Revision: 1.3 $
4+
@(#)Last changed: $Date: 2015/07/05 21:28:18 $
55
@(#)Purpose: Request appropriate POSIX and X/Open Support
66
@(#)Author: J Leffler
7-
@(#)Copyright: (C) JLSS 2010
8-
@(#)Product: SCC Version 5.05 (2012-01-23)
7+
@(#)Copyright: (C) JLSS 2010,2015
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
99
*/
1010

1111
/*TABSTOP=4*/
@@ -25,8 +25,10 @@
2525
/* _XOPEN_SOURCE 500 is loosely equivalent to _POSIX_C_SOURCE 199506L */
2626

2727
#if !defined(_XOPEN_SOURCE) && !defined(_POSIX_C_SOURCE)
28-
#if __STDC_VERSION__ >= 199901L
29-
#define _XOPEN_SOURCE 600 /* SUS v3, POSIX 1003.1 2004 (POSIX 2001 + Corrigenda) */
28+
#if defined(__cplusplus)
29+
#define _XOPEN_SOURCE 700 /* SUS v4, POSIX 1003.1 2008/13 (POSIX 2008/13) */
30+
#elif __STDC_VERSION__ >= 199901L
31+
#define _XOPEN_SOURCE 700 /* SUS v4, POSIX 1003.1 2008/13 (POSIX 2008/13) */
3032
#else
3133
#define _XOPEN_SOURCE 500 /* SUS v2, POSIX 1003.1 1997 */
3234
#endif /* __STDC_VERSION__ */

scc-test.binary.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
@(#)File: $RCSfile: scc-test.binary.cpp,v $
3+
@(#)Version: $Revision: 1.3 $
4+
@(#)Last changed: $Date: 2014/07/16 07:07:50 $
5+
@(#)Purpose: Test SCC on C++14 binary numbers
6+
@(#)Author: J Leffler
7+
@(#)Copyright: (C) JLSS 2014
8+
@(#)Product: SCC Version 6.16 (2016-01-19)
9+
*/
10+
11+
int i = 0b0100;
12+
int j = 0b1000'1000;
13+
int k = 0b1010'0101'1111'0000;
14+
int l = 0B1011;
15+
int m = 0B1'0'1'1; // Not sensible, but valid

0 commit comments

Comments
 (0)