#ifndef SIMDJSON_JSONIOUTIL_H #define SIMDJSON_JSONIOUTIL_H #include "simdjson/common_defs.h" #include #include #include #include #include #include "simdjson/padded_string.h" namespace simdjson { // load a file in memory... // get a corpus; pad out to cache line so we can always use SIMD // throws exceptions in case of failure // first element of the pair is a string (null terminated) // whereas the second element is the length. // caller is responsible to free (aligned_free((void*)result.data()))) // // throws an exception if the file cannot be opened, use try/catch // try { // p = get_corpus(filename); // } catch (const std::exception& e) { // aligned_free((void*)p.data()); // std::cout << "Could not load the file " << filename << std::endl; // } padded_string get_corpus(const std::string &filename); } // namespace simdjson #endif