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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/* Internal routines used by SQUAT.
* Robert O'Callahan
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include "assert.h"
#include "squat_internal.h"
static int last_err = SQUAT_ERR_OK;
EXPORTED char const squat_index_file_header[8] = "SQUAT 1\n";
EXPORTED void squat_set_last_error(int err)
{
last_err = err;
}
EXPORTED int squat_get_last_error(void)
{
return last_err;
}
EXPORTED SquatInt32 squat_decode_32(char const* s)
{
unsigned char* v = (unsigned char*)s;
return ((SquatInt32)v[0] << 24) | ((SquatInt32)v[1] << 16) |
((SquatInt32)v[2] << 8) | (SquatInt32)v[3];
}
EXPORTED char *squat_encode_32(char* s, SquatInt32 v)
{
s[0] = (unsigned char)(v >> 24);
s[1] = (unsigned char)(v >> 16);
s[2] = (unsigned char)(v >> 8);
s[3] = (unsigned char)v;
return s + 4;
}
EXPORTED SquatInt64 squat_decode_64(char const *s)
{
unsigned char* v = (unsigned char*)s;
return ((SquatInt64)v[0] << 56) | ((SquatInt64)v[1] << 48) |
((SquatInt64)v[2] << 40) | ((SquatInt64)v[3] << 32) |
((SquatInt64)v[4] << 24) | ((SquatInt64)v[5] << 16) |
((SquatInt64)v[6] << 8) | (SquatInt64)v[7];
}
EXPORTED char *squat_encode_64(char* s, SquatInt64 v)
{
s[0] = (unsigned char)(v >> 56);
s[1] = (unsigned char)(v >> 48);
s[2] = (unsigned char)(v >> 40);
s[3] = (unsigned char)(v >> 32);
s[4] = (unsigned char)(v >> 24);
s[5] = (unsigned char)(v >> 16);
s[6] = (unsigned char)(v >> 8);
s[7] = (unsigned char)v;
return s + 8;
}
EXPORTED SquatInt64 squat_decode_I(char const** s)
{
int ch;
SquatInt64 r;
ch = (unsigned char)*(*s)++;
r = ch;
while ((ch & 0x80) != 0) {
ch = (unsigned char)**s;
++(*s);
r = ((r - 0x80) << 7) + ch;
}
return r;
}
HIDDEN char const *squat_decode_skip_I(char const* s, int num_to_skip)
{
while (num_to_skip > 0) {
while ((*s & 0x80) != 0) {
s++;
}
s++;
num_to_skip--;
}
return s;
}
EXPORTED int squat_count_encode_I(SquatInt64 v64)
{
int v = (int)v64;
int shift = 56;
int result;
assert(v64 >= 0);
if (v == v64) {
if (v < (1 << 7)) {
return 1;
} else if (v < (1 << 14)) {
return 2;
} else if (v < (1 << 21)) {
return 3;
} else if (v < (1 << 28)) {
return 4;
}
}
while ((int)(v64 >> shift) == 0) {
shift -= 7;
}
result = 0;
while (shift >= 0) {
shift -= 7;
result++;
}
return result;
}
EXPORTED char *squat_encode_I(char* s, SquatInt64 v64)
{
int v = (int)v64;
int shift = 56;
int v64_shifted;
assert(v64 >= 0);
if (v == v64) {
if (v < (1 << 7)) {
s[0] = (unsigned char)v;
return s + 1;
} else if (v < (1 << 14)) {
s[0] = (unsigned char)((v >> 7) | 0x80);
s[1] = (unsigned char)(v & 0x7F);
return s + 2;
} else if (v < (1 << 21)) {
s[0] = (unsigned char)((v >> 14) | 0x80);
s[1] = (unsigned char)(((v >> 7) & 0x7F) | 0x80);
s[2] = (unsigned char)(v & 0x7F);
return s + 3;
} else if (v < (1 << 28)) {
s[0] = (unsigned char)((v >> 21) | 0x80);
s[1] = (unsigned char)(((v >> 14) & 0x7F) | 0x80);
s[2] = (unsigned char)(((v >> 7) & 0x7F) | 0x80);
s[3] = (unsigned char)(v & 0x7F);
return s + 4;
}
}
while ((v64_shifted = (int)(v64 >> shift)) == 0) {
shift -= 7;
}
while (shift > 7) {
*s++ = (unsigned char)((v64_shifted & 0x7F) | 0x80);
shift -= 7;
v64_shifted = (int)(v64 >> shift);
}
s[0] = (unsigned char)((v64_shifted & 0x7F) + 0x80);
s[1] = (unsigned char)(v & 0x7F);
return s + 2;
}
|