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
|
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef __ARENA_H__
#define __ARENA_H__
#include <sys/types.h>
#include <memory.h>
#include "ink_assert.h"
struct ArenaBlock
{
ArenaBlock *next;
char *m_heap_end;
char *m_water_level;
char data[8];
};
class Arena
{
public:
Arena():m_blocks(NULL)
{
}
~Arena()
{
reset();
}
inkcoreapi void *alloc(size_t size, size_t alignment = sizeof(double));
void free(void *mem, size_t size);
size_t str_length(const char *str);
char *str_alloc(size_t len);
void str_free(char *str);
char *str_store(const char *str, size_t len);
inkcoreapi void reset();
private:
ArenaBlock * m_blocks;
};
/*-------------------------------------------------------------------------
-------------------------------------------------------------------------*/
inline size_t
Arena::str_length(const char *str)
{
unsigned char *s, *e;
size_t len;
e = (unsigned char *) str;
s = e - 1;
while (*s >= 128) {
s -= 1;
}
len = *s++;
while (s != e) {
len = (len * 128) + (255 - *s++);
}
return len;
}
/*-------------------------------------------------------------------------
layout = [length][data]
length 1 = [1]
length 127 = [127]
length 128 = [1][255]
length 128 + 1 = [1][254]
length 128 + 2 = [1][253]
length 128 + 127 = [1][128]
length 128 + 128 = [2][255]
length 128 * 128 = [1][255][255]
length 128 * 128 + 1 = [1][255][254]
length 128 * 128 + 2 = [1][255][253]
length 128 * 128 + 127 = [1][255][128]
length 128 * 128 + 128 = [1][254][255]
-------------------------------------------------------------------------*/
inline char *
Arena::str_alloc(size_t len)
{
unsigned char *mem, *p;
size_t size;
size_t tmp;
size = len + 1 + 1;
tmp = len;
while (tmp >= 128) {
size += 1;
tmp /= 128;
}
mem = (unsigned char *) alloc(size, 1);
mem += (size - len - 1);
p = mem - 1;
tmp = len;
while (tmp >= 128) {
*p-- = (unsigned char) (255 - (tmp % 128));
tmp /= 128;
}
*p = (unsigned char) tmp;
return (char *) mem;
}
/*-------------------------------------------------------------------------
-------------------------------------------------------------------------*/
inline void
Arena::str_free(char *str)
{
unsigned char *p, *s, *e;
size_t len;
e = (unsigned char *) str;
s = e - 1;
while (*s >= 128) {
s -= 1;
}
p = s;
len = *s++;
while (s != e) {
len = (len * 128) + (255 - *s++);
}
len += (e - p) + 1;
free(p, len);
}
/*-------------------------------------------------------------------------
-------------------------------------------------------------------------*/
inline char *
Arena::str_store(const char *str, size_t len)
{
char *mem;
mem = str_alloc(len);
memcpy(mem, str, len);
mem[len] = '\0';
return mem;
}
#endif /* __ARENA_H__ */
|