/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ // vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: #ident "$Id$" /*====== This file is part of PerconaFT. Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. PerconaFT is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. PerconaFT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PerconaFT. If not, see . ---------------------------------------- PerconaFT is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. PerconaFT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with PerconaFT. If not, see . ======= */ #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." #include "test.h" /* Insert a bunch of stuff */ #include static const char *fname ="sinsert.ft"; enum { SERIAL_SPACING = 1<<6 }; int64_t ITEMS_TO_INSERT_PER_ITERATION = 1<<20; int64_t BOUND_INCREASE_PER_ITERATION = SERIAL_SPACING*ITEMS_TO_INSERT_PER_ITERATION; enum { NODE_SIZE = 1<<20 }; enum { BASEMENT_NODE_SIZE = 128 * 1024 }; static int nodesize = NODE_SIZE; static int basementnodesize = BASEMENT_NODE_SIZE; static enum toku_compression_method compression_method = TOKU_DEFAULT_COMPRESSION_METHOD; static int keysize = sizeof (long long); static int valsize = sizeof (long long); static int do_verify =0; /* Do a slow verify after every k inserts. */ static int verify_period = 256; /* how many inserts between verifies. */ static int do_serial = 1; static int do_random = 1; static CACHETABLE ct; static FT_HANDLE t; static void setup (void) { int r; unlink(fname); toku_cachetable_create(&ct, 0, ZERO_LSN, nullptr); r = toku_open_ft_handle(fname, 1, &t, nodesize, basementnodesize, compression_method, ct, nullptr, toku_builtin_compare_fun); assert(r==0); } static void toku_shutdown (void) { int r; r = toku_close_ft_handle_nolsn(t, 0); assert(r==0); toku_cachetable_close(&ct); } static void long_long_to_array (unsigned char *a, unsigned long long l) { int i; for (i=0; i<8; i++) a[i] = (l>>(56-8*i))&0xff; } static void insert (long long v) { unsigned char kc[keysize], vc[valsize]; DBT kt, vt; memset(kc, 0, sizeof kc); long_long_to_array(kc, v); memset(vc, 0, sizeof vc); long_long_to_array(vc, v); toku_ft_insert(t, toku_fill_dbt(&kt, kc, keysize), toku_fill_dbt(&vt, vc, valsize), 0); if (do_verify) { static int inserts_since_last_verify = 0; inserts_since_last_verify++; if (inserts_since_last_verify % verify_period == 0) { toku_cachetable_verify(ct); } } } static void serial_insert_from (long long from) { long long i; for (i=0; i