Buffer com tudo incluído para C
Buffet é uma união marcada com 4 modos.
// Hard values show 64-bit
union Buffet {
struct ptr {
char * data
size_t len
size_t off : 62 , tag : 2 // tag = OWN|SSV|VUE
}
struct sso {
char data [ 22 ]
uint8_t refcnt
uint8_t len : 6 , tag : 2 // tag = SSO
}
}
sizeof ( Buffet ) == 24
A tag define o modo do Buffet:
OWN
copropriedade de uma lojaSSO
SSV
(visualização de string pequena) em um SSOVUE
em quaisquer dadosSe OWN, Buffet.data aponta para um armazenamento heap alocado:
struct Store {
size_t cap // store capacity
size_t len // store length
uint32_t refcnt // number of views on store
uint32_t canary // invalidates store if modified
char data [] // buffer data, shared by owning views
}
#include "../buffet.h"
int main () {
// SHARED OWN =================
char large [] = "DATA STORE IS HEAP ALLOCATION." ;
Buffet own1 = bft_memcopy ( large , sizeof ( large ) - 1 );
// Now own1 owns a store housing a copy of `large`
bft_dbg ( & own1 );
//-> OWN 30 "DATA STORE ..."
// View "STORE" in own1 :
Buffet own2 = bft_view ( & own1 , 5 , 5 );
// Now own1 and own2 share the store, whose refcount is 2
bft_dbg ( & own2 );
//-> OWN 5 "STORE"
// SSO & SSV =================
char small [] = "SMALL STRING" ;
Buffet sso1 = bft_memcopy ( small , sizeof ( small ) - 1 );
bft_dbg ( & sso1 );
//-> SSO 12 "SMALL STRING"
// View "STRING" in sso1 :
Buffet ssv1 = bft_view ( & sso1 , 6 , 6 );
bft_dbg ( & ssv1 );
//-> SSV 6 "STRING"
// VUE =======================
char any [] = "SOME BYTES" ;
// View "BYTES" in `any` :
Buffet vue1 = bft_memview ( any + 5 , 5 );
bft_dbg ( & vue1 );
//-> VUE 5 "BYTES"
return 0 ;
}
make && make check
Embora extensos, os testes unitários podem ainda não cobrir todos os casos.
O Buffet visa prevenir falhas de memória, inclusive do usuário.
(Exceto, é claro, perder escopo e tal.)
// (pseudo code)
// overflow
buf = new ( 8 )
append ( buf , large_str ) // Done
// invalid ref
buf = memcopy ( short_str ) // SSO
view = view ( buf )
append ( buf , large_str ) // would mutate SSO to OWN
// => abort & warn "Append would invalidate views on SSO"
// double-free
bft_free ( buf )
bft_free ( buf ) // OK
// use-after-free
bft_free ( buf )
append ( buf , "foo" ) // Done. Now buf is "foo".
// aliasing
alias = buf // should be `alias = bft_dup(buf)`
bft_free ( buf )
bft_free ( alias ) // OK. Possible warning "Bad canary. Double free ?"
// Etc...
Para tanto, operações como view() ou free() podem verificar o cabeçalho da loja.
Se estiver errado, a operação é abortada e retorna um buffet vazio.
As verificações são habilitadas por #define MEMCHECK
ou construindo com
MEMCHECK=1 make
Os avisos são ativados por #define DEBUG
ou compilando com
DEBUG=1 make
NB: Mesmo com verificações, alguns alias podem ser fatais.
own = memcopy ( large_str )
view = view ( own )
alias = view
bft_free ( view )
bft_free ( own ) // refcnt == 0, free(store) !
// alias now points into freed memory...
Consulte a saída de testes de unidade e avisos src/check.c .
make && make bench
(requer libbenchmark-dev )
NB: A biblioteca não está muito otimizada e o banco talvez seja amador.
Em um Core i3 fraco:
MEMVIEW_cpp/8 0,609ns MEMVIEW_buffet/8 6,36 ns MEMCOPY_c/8 16,7 ns MEMCOPY_buffet/8 11,9 ns MEMCOPY_c/32 15,3 ns MEMCOPY_buffet/32 26,3 ns MEMCOPY_c/128 16,8 ns MEMCOPY_buffet/128 29,8 ns MEMCOPY_c/512 24,9 ns MEMCOPY_buffet/512 39,3 ns MEMCOPY_c/2048 94,1 ns MEMCOPY_buffet/2048 109ns MEMCOPY_c/8192 196 ns MEMCOPY_buffet/8192 282ns APPEND_cpp/8/4 10,9 ns APPEND_buffet/8/4 16,3 ns APPEND_cpp/8/16 36,5 ns APPEND_buffet/8/16 30,2 ns APPEND_cpp/24/4 49,0 ns APPEND_buffet/24/4 30,1 ns APPEND_cpp/24/32 48,1 ns APPEND_buffet/24/32 28,8 ns SPLITJOIN_c 2782ns SPLITJOIN_cpp 3317ns SPLITJOIN_buffet 1397 ns
bft_new
bft_memcopy
bft_memview
bft_copy
bft_copyall
bft_view
bft_dup ( não alias buffets , use isto)
bft_append
bft_split
bft_splitstr
bft_join
bft_free
bft_cmp
bft_cap
bft_len
dados_bft
bft_cstr
bft_exportação
bft_print
bft_dbg
Buffet bft_new (size_t cap)
Crie um novo Buffet vazio com capacidade mínima .
Buffet buf = bft_new ( 40 );
bft_dbg ( & buf );
// OWN 0 ""
Buffet bft_memcopy (const char *src, size_t len)
Crie um novo Buffet copiando len bytes de src .
Buffet copy = bft_memcopy ( "Bonjour" , 3 );
// SSO 3 "Bon"
Buffet bft_memview (const char *src, size_t len)
Crie um novo Buffet visualizando len bytes de src .
Você obtém uma janela no src sem cópia ou alocação.
NB: Você não deve visualizar diretamente os dados de um Buffet. Usar visualização()
char src [] = "Eat Buffet!" ;
Buffet view = bft_memview ( src + 4 , 6 );
// VUE 6 "Buffet"
Buffet bft_copy (const Buffet *src, ptrdiff_t off, size_t len)
Copie len bytes no deslocamento do Buffet src para um novo Buffet.
Buffet src = bft_memcopy ( "Bonjour" , 7 );
Buffet cpy = bft_copy ( & src , 3 , 4 );
// SSO 4 "jour"
Buffet bft_copyall (const Buffet *src)
Copie todos os bytes do Buffet src para um novo Buffet.
Buffet bft_view (Buffet *src, ptrdiff_t off, size_t len)
Veja len bytes de Buffet src , começando em off .
Você obtém uma janela no src sem cópia ou alocação.
O tipo interno de retorno depende do tipo src :
view(SSO) -> SSV
(recontado)view(SSV) -> SSV
no destino de srcview(OWN) -> OWN
(como coproprietário da loja recontada)view(VUE) -> VUE
no destino de srcSe o retorno for OWN, a loja alvo não será liberada antes de
#include "../buffet.h"
int main () {
char text [] = "Bonjour monsieur Buddy. Already speaks french!" ;
// view sso
Buffet sso = bft_memcopy ( text , 16 ); // "Bonjour monsieur"
Buffet ssv = bft_view ( & sso , 0 , 7 );
bft_dbg ( & ssv );
// view ssv
Buffet Bon = bft_view ( & ssv , 0 , 3 );
bft_dbg ( & Bon );
// view own
Buffet own = bft_memcopy ( text , sizeof ( text ));
Buffet ownview = bft_view ( & own , 0 , 7 );
bft_dbg ( & ownview );
// detach view
bft_append ( & ownview , "!" , 1 );
// bft_free(&ownview);
bft_free ( & own ); // Done
// view vue
Buffet vue = bft_memview ( text + 8 , 8 ); // "Good"
Buffet mon = bft_view ( & vue , 0 , 3 );
bft_dbg ( & mon );
return 0 ;
}
$ cc view.c libbuffet.a -o view && ./view
SSV 7 data:"Bonjour"
SSV 3 data:"Bon"
OWN 7 data:"Bonjour"
VUE 3 data:"mon"
Buffet bft_dup (const Buffet *src)
Crie uma cópia superficial de src .
Use isso em vez de criar um alias para Buffet.
Buffet src = bft_memcopy ( "Hello" , 5 );
Buffet cpy = src ; // BAD
Buffet cpy = bft_dup ( & src ); // GOOD
bft_dbg ( & cpy );
// SSO 5 "Hello"
Rem: o alias funcionaria principalmente, mas atrapalharia a recontagem (sem travar se as proteções da loja estivessem habilitadas):
Buffet alias = sso ; //ok if sso was not viewed
Buffet alias = own ; //not refcounted
Buffet alias = vue ; //ok
void bft_free (Buffet *buf)
Descarta buf .
Segurança:
#include "../buffet.h"
int main () {
char text [] = "Le grand orchestre de Patato Valdez" ;
Buffet own = bft_memcopy ( text , sizeof ( text ));
Buffet ref = bft_view ( & own , 9 , 9 ); // "orchestre"
bft_free ( & own ); // A bit soon but ok, --refcnt
bft_dbg ( & own ); // SSO 0 ""
bft_free ( & ref ); // Was last co-owner, store is released
Buffet sso = bft_memcopy ( text , 8 ); // "Le grand"
Buffet ref2 = bft_view ( & sso , 3 , 5 ); // "grand"
bft_free ( & sso ); // WARN line:328 bft_free: SSO has views on it
bft_free ( & ref2 );
bft_free ( & sso ); // OK now
bft_dbg ( & sso ); // SSO 0 ""
return 0 ;
}
$ valgrind --leak-check=full ./bin/ex/free
All heap blocks were freed -- no leaks are possible
size_t bft_cat (Buffet *dst, const Buffet *buf, const char *src, size_t len)
Concatena buf e len bytes de src no dst resultante.
Retorna o comprimento total ou 0 em caso de erro.
Buffet buf = bft_memcopy ( "abc" , 3 );
Buffet dst ;
size_t totlen = bft_cat ( & dst , & buf , "def" , 3 );
bft_dbg ( & dst );
// SSO 6 "abcdef"
size_t bft_append (Buffet *dst, const char *src, size_t len)
Acrescenta len bytes de src a dst .
Retorna novo comprimento ou 0 em caso de erro.
Buffet buf = bft_memcopy ( "abc" , 3 );
size_t newlen = bft_append ( & buf , "def" , 3 );
bft_dbg ( & buf );
// SSO 6 "abcdef"
NB: retorna falha se buf tiver visualizações e mudar de SSO para OWN para aumentar a capacidade, invalidando as visualizações:
Buffet foo = bft_memcopy ( "short foo " , 10 );
Buffet view = bft_view ( & foo , 0 , 5 );
// would mutate to OWN :
size_t rc = bft_append ( & foo , "now too long for SSO" );
assert ( rc == 0 ); // meaning aborted
Para evitar isso, libere as visualizações antes de anexá-las a um pequeno buffet.
Buffet* bft_split (const char* src, size_t srclen, const char* sep, size_t seplen,
int *outcnt)
Divide src ao longo do separador sep em uma lista Buffet Vue de comprimento *outcnt
.
Sendo feito de visualizações, você pode free(list)
sem vazamento, desde que nenhum elemento tenha sido tornado proprietário, por exemplo, anexando-o a ele.
Buffet* bft_splitstr (const char *src, const char *sep, int *outcnt);
Divisão conveniente usando strlen internamente.
int cnt ;
Buffet * parts = bft_splitstr ( "Split me" , " " , & cnt );
for ( int i = 0 ; i < cnt ; ++ i )
bft_print ( & parts [ i ]);
// VUE 5 "Split"
// VUE 2 "me"
free ( parts );
Buffet bft_join (Buffet *list, int cnt, const char* sep, size_t seplen);
Ingressa na lista no separador setembro em um novo Buffet.
int cnt ;
Buffet * parts = bft_splitstr ( "Split me" , " " , & cnt );
Buffet back = bft_join ( parts , cnt , " " , 1 );
bft_dbg ( & back );
// SSO 8 'Split me'
int bft_cmp (const Buffet *a, const Buffet *b)
Compare os dados de dois buffets usando memcmp
.
size_t bft_cap (Buffet *buf)
Obtenha a capacidade atual.
size_t bft_len (Buffet *buf)`
Obtenha o comprimento atual.
const char* bft_data (const Buffet *buf)`
Obtenha o ponteiro de dados atual.
Para garantir a terminação nula em buf.len
, use bft_cstr .
const char* bft_cstr (const Buffet *buf, bool *mustfree)
Obtenha os dados atuais como uma string C terminada em nulo de comprimento máximo buf.len
.
Se necessário (quando buf é uma visualização), os dados são copiados para uma nova string C que deve ser liberada se mustfree estiver definido.
char* bft_export (const Buffet *buf)
Copia dados até buf.len
em uma nova string C que deve ser liberada.
void bft_print (const Buffet *buf)`
Imprime dados até buf.len
.
void bft_dbg (Buffet *buf)
Imprime o estado buff .
Buffet buf ;
bft_memcopy ( & buf , "foo" , 3 );
bft_dbg ( & buf );
// SSO 3 "foo"