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
|
/*
* fhist - file history and comparison tools
* Copyright (C) 2000 Peter Miller;
* All rights reserved.
*
* 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.
*
* MANIFEST: functions for reading input and converting to hexadecimal bytes
*/
#include <ac/ctype.h>
#include <ac/stdio.h> /* for sprintf */
#include <error.h>
#include <input/hexify.h>
#include <input/private.h>
#include <trace.h>
typedef struct input_hexify_ty input_hexify_ty;
struct input_hexify_ty
{
input_ty inherited;
input_ty *deeper;
int delete_on_close;
int buf_pos;
char buffer[16];
};
static void destruct _((input_ty *));
static void
destruct(p)
input_ty *p;
{
input_hexify_ty *this;
trace(("input_hexify::destruct()\n{\n"));
this = (input_hexify_ty *)p;
input_pushback_transfer(this->deeper, p);
if (this->delete_on_close)
input_delete(this->deeper);
this->deeper = 0; /* paranoia */
trace(("}\n"));
}
static int get _((input_ty *));
static int
get(p)
input_ty *p;
{
input_hexify_ty *this;
int c;
trace(("input_hexify::get()\n{\n"));
this = (input_hexify_ty *)p;
if (this->buffer[this->buf_pos] == 0)
{
char *ctrl = "";
char *meta = "";
int c2;
c = input_getc(this->deeper);
if (c < 0)
{
trace(("return EOF;\n"));
return -1;
}
c2 = c;
if (c2 & 0x80)
{
meta = "M-";
c2 &= 0x7F;
}
if (!isprint(c2))
{
ctrl = "^";
c2 ^= 0x40;
}
sprintf(this->buffer, "0x%02X %s%s%c\n", c, meta, ctrl, c2);
this->buf_pos = 0;
}
c = this->buffer[this->buf_pos++];
trace(("return %d;\n", c));
trace(("}\n"));
return c;
}
static long itell _((input_ty *));
static long
itell(fp)
input_ty *fp;
{
input_hexify_ty *this;
this = (input_hexify_ty *)fp;
trace(("input_hexify::tell => %ld\n", this->pos));
return input_ftell(this->deeper);
}
static const char *name _((input_ty *));
static const char *
name(p)
input_ty *p;
{
input_hexify_ty *this;
trace(("input_hexify::name\n"));
this = (input_hexify_ty *)p;
return input_name(this->deeper);
}
static long length _((input_ty *));
static long
length(p)
input_ty *p;
{
trace(("input_hexify::length => -1\n"));
return -1;
}
static input_vtbl_ty vtbl =
{
sizeof(input_hexify_ty),
destruct,
input_generic_read,
get,
itell,
name,
length,
};
input_ty *
input_hexify(deeper, delete_on_close)
input_ty *deeper;
int delete_on_close;
{
input_ty *result;
input_hexify_ty *this;
trace(("input_hexify(fp = %08lX)\n{\n", (long)fp));
result = input_new(&vtbl);
this = (input_hexify_ty *)result;
this->deeper = deeper;
this->delete_on_close = delete_on_close;
this->buf_pos = 0;
this->buffer[0] = 0;
trace(("return %08lX\n", (long)result));
trace(("}\n"));
return result;
}
|