annotate dyncall/dyncall_vector.c @ 356:2f64957d6a46

- fix to dynload to build with musl libc (latter has dlinfo but not RTLD_SELF, so fallback to dl_iterate_phdr if on ELF targets)
author Tassilo Philipp
date Tue, 25 Feb 2020 16:07:45 +0100
parents 6ffb6a00cf55
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
1 /*
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
2
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3 Package: dyncall
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
4 Library: dyncall
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
5 File: dyncall/dyncall_vector.c
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6 Description: Simple dynamic vector container type implementation
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
7 License:
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
8
281
f5577f6bf97a - file header cleanups for release
Tassilo Philipp
parents: 0
diff changeset
9 Copyright (c) 2007-2018 Daniel Adler <dadler@uni-goettingen.de>,
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
10 Tassilo Philipp <tphilipp@potion-studios.com>
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
11
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
12 Permission to use, copy, modify, and distribute this software for any
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
13 purpose with or without fee is hereby granted, provided that the above
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
14 copyright notice and this permission notice appear in all copies.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
15
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
16 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
17 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
18 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
19 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
20 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
21 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
22 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
23
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
24 */
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
25
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
26
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
27
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
28 #include "dyncall_vector.h"
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
29 #include <string.h>
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
30
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
31
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
32 void dcVecAppend(DCVecHead* pHead, const void* pData, size_t size)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
33 {
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
34 size_t newSize = pHead->mSize + size;
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
35 if(newSize <= pHead->mTotal)
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
36 {
323
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
37 void* dst = (DCchar*)dcVecData(pHead) + pHead->mSize;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
38 switch (size) {
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
39 case 1: *(DCchar *)dst = *(const DCchar *)pData; break;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
40 case 2: *(DCshort *)dst = *(const DCshort *)pData; break;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
41 case 4: *(DCint *)dst = *(const DCint *)pData; break;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
42 case 8: *(DCint *)( ( (char*)dst )+4) = *(const DCint *)( ( (char*)pData )+4);
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
43 *(DCint *)dst = *(const DCint *)pData; break;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
44 /* On sparc 32-bit, this one crashes if ptrs are not aligned, so use above.
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
45 case 8: *(DClonglong*)dst = *(const DClonglong*)pData; break;
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
46 */
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
47
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
48 default: memcpy(dst, pData, size); /* for all the rest. */
6ffb6a00cf55 - cosmetics and comments cleanup for readability
Tassilo Philipp
parents: 281
diff changeset
49 }
0
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
50 pHead->mSize = newSize;
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
51 }
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
52 /*else @@@ warning? error?*/
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
53 }
3e629dc19168 initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
54