File: unireverse.c

package info (click to toggle)
uniutils 2.27-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, sid, stretch
  • size: 1,556 kB
  • ctags: 177
  • sloc: ansic: 28,282; sh: 790; awk: 55; makefile: 16
file content (187 lines) | stat: -rw-r--r-- 5,543 bytes parent folder | download | duplicates (2)
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Time-stamp: <2008-04-03 19:47:59 poser>
 *
 * This program is a filter that reverses its input character by character.
 * It works on both ASCII and UTF-8 Unicode.
 * 
 * Copyright (C) 2007 William J. Poser (billposer@alum.mit.edu)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 3 the GNU General Public License
 * as published by the Free Software Foundation.
 *
 * 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 * or go to the web page:  http://www.gnu.org/licenses/gpl.txt.
 */

#include "config.h"
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#ifdef HAVE_LIBINTL_H
#include <libintl.h>
#else
#define gettext(x) (x)
#endif

char compdate[]="Compiled " __DATE__ " " __TIME__ ;
char pgname[]="unireverse";

void
ShowUsage(void){
  fprintf(stderr,"Read UTF-8 input line-by-line and emit reversed character-by-character.\n");
  fprintf(stderr,"       -h Print help information.\n");
  fprintf(stderr,"       -v Print version information.\n");
  putc('\n',stderr);
}

void
ShowVersion(void){
  fprintf(stderr,"\n%s  %s\n",pgname,PACKAGE_VERSION);
  fprintf(stderr,"%s\n",compdate);
  fprintf(stderr,"Copyright (C) 2007 William J. Poser\n");
  fprintf(stderr,"This program is free software; you can redistribute it and/or modify\n");
  fprintf(stderr,"it under the terms of version 3 of the GNU General Public License\n");
  fprintf(stderr,"as published by the Free Software Foundation.\n");
  fprintf(stderr,"Report bugs to: billposer@alum.mit.edu\n");
}

static const char TrailingBytes[256] = {
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
	1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
	2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5
};

int main(int ac, char **av) {
  int len;
  int i;
  int j;
  int PreviousLeadByte;
  char *obuf;
  char *optr;
  int BytesInChar;
  char *ibuf;
  unsigned long LineCnt = 0L;

  char * GetLine(FILE *, int *);

  if (ac > 1) {
    if (av[1][0] == '-') {
      if(av[1][1] == 'v') {ShowVersion(); exit(1);}
      else if(av[1][1] == 'h') {ShowUsage(); exit(1);}
      else {fprintf(stderr,"Option %c not recognized.\n",av[1][1]); exit(2);}
    }
    ShowUsage();exit(1);
  }

  /* 
   * The stratagey here is to work from the end of the line looking for
   * lead bytes. On finding one, we emit it plus the requisite number of
   * continuation bytes.
   */
  while(1) {
    ibuf = GetLine(stdin,&len);
    if(len < 0) break;
    LineCnt++; 
    if(len == 0) putchar('\n'); 

    obuf = malloc((len + 1) * sizeof(char));
    if(!obuf) {
      fprintf(stderr,"unirev: failed to allocate storage.\n");
      exit(2);
    }
    optr = obuf;
    PreviousLeadByte = len;
    for (i = len-1; i >= 0; i--) {
      if (ibuf[i] >= 0) {
	*optr++ = ibuf[i]; /* ASCII character */
	PreviousLeadByte = i;
      }
      else if (ibuf[i] & 0x40)  {
	BytesInChar = 1 + (int) TrailingBytes[(unsigned char) ibuf[i]];
	if (i + BytesInChar > PreviousLeadByte) {
	  fprintf(stderr,"Truncated UTF-8 sequence at byte %d of line %lu\n",i+1,LineCnt);
	  fprintf(stderr,"%d continuation bytes %s required but only %d %s present.\n",
		  BytesInChar-1,
		  (BytesInChar-1) >1?"are":"is",
		  PreviousLeadByte-i-1,
		  (PreviousLeadByte-i-i)>1?"are":"is");
	  exit(3);
	}
	PreviousLeadByte = i;
	for(j=0; j < BytesInChar; j++) *optr++ = ibuf[i+j];
      }
    }
    *optr = '\0';
    puts(obuf);
    free(obuf);
    free(ibuf);
  }
  exit(0);
}


/* 
 * Read a line of arbitrary length from a file.
 *
 * Return a pointer to the null-terminated string allocated, or null on failure
 * to allocate sufficient storage.
 * It is the responsibility of the caller to free the space allocated.
 *
 * The length of the line is placed in the variable pointed to by
 * the second argument. (-1) is placed in this variable on EOF.
 */

#define INITLENGTH 32

char * GetLine(FILE *fp, int *LineLength)
{
  char c;
  int Available;
  int CharsRead;
  char *Line;
  int BytesRead;

  Available = INITLENGTH;
  CharsRead=0;
  BytesRead=0;  
  Line = (char *) malloc((size_t)Available);
  if(Line == (char *) 0) return (Line);

  while(1){
    c=getc(fp);
    if(c == '\n'){
      Line[CharsRead]='\0';
      *LineLength=CharsRead;
      return(Line);
    }
    if(c == EOF){
      Line[CharsRead]='\0';
      if(BytesRead == 0) *LineLength = (-1); /* Signal EOF */
      else *LineLength=CharsRead;
      return(Line);
    }
    BytesRead++;
    if(CharsRead == (Available-1)){ /* -1 because of null */
      Available += INITLENGTH/2;
      Line = (char *) realloc( (void *) Line, (size_t) (Available * sizeof (char)));
      if(Line == (char *) 0) return(Line);
    }
    Line[CharsRead++]=c;
  }
}