2021-07-19 21:55:20 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
2023-12-08 03:11:56 +00:00
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
2021-07-19 21:55:20 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 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 "libc/assert.h"
|
|
|
|
#include "libc/dce.h"
|
|
|
|
#include "libc/mem/mem.h"
|
2022-09-13 06:10:38 +00:00
|
|
|
#include "libc/stdio/append.h"
|
2021-07-19 21:55:20 +00:00
|
|
|
|
|
|
|
#define W sizeof(size_t)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns size of append buffer.
|
2021-08-06 21:12:11 +00:00
|
|
|
*
|
2021-08-07 14:05:19 +00:00
|
|
|
* @param p must be 0 or have been allocated by an append*() function
|
2021-08-06 21:12:11 +00:00
|
|
|
* @return i is number of bytes stored in buffer
|
|
|
|
* @return n is number of bytes in allocation
|
2021-07-19 21:55:20 +00:00
|
|
|
*/
|
|
|
|
struct appendz appendz(char *p) {
|
|
|
|
struct appendz z;
|
|
|
|
if (p) {
|
|
|
|
z.n = malloc_usable_size(p);
|
2023-07-26 20:54:49 +00:00
|
|
|
unassert(z.n >= W * 2 && !(z.n & (W - 1)));
|
2021-07-19 21:55:20 +00:00
|
|
|
z.i = *(size_t *)(p + z.n - W);
|
|
|
|
if (!IsTiny() && W == 8) {
|
2023-08-17 07:25:01 +00:00
|
|
|
// This check should fail if an append*() function was passed a
|
|
|
|
// pointer that was allocated manually by malloc(). Append ptrs
|
|
|
|
// can be free()'d safely, but they need to be allocated by the
|
|
|
|
// append library, because we write a special value to the end.
|
2023-07-26 20:54:49 +00:00
|
|
|
unassert((z.i >> 48) == APPEND_COOKIE);
|
2021-07-19 21:55:20 +00:00
|
|
|
z.i &= 0x0000ffffffffffff;
|
|
|
|
}
|
2023-07-26 20:54:49 +00:00
|
|
|
unassert(z.n >= z.i);
|
2021-07-19 21:55:20 +00:00
|
|
|
} else {
|
|
|
|
z.i = 0;
|
|
|
|
z.n = 0;
|
|
|
|
}
|
|
|
|
return z;
|
|
|
|
}
|