123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* Copyright (C) 2014 Carlos Aguilar Melchor, Joris Barrier, Marc-Olivier Killijian
- * This file is part of XPIR.
- *
- * XPIR is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * XPIR 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 XPIR. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef DEF_ABSTRACTGENERATOR
- #define DEF_ABSTRACTGENERATOR
- #include <omp.h>
- #include <string>
- #include <boost/thread.hpp>
- #include <boost/interprocess/sync/interprocess_semaphore.hpp>
- #include <boost/thread/recursive_mutex.hpp>
- #include "pir/PIRParameters.hpp"
- #include "pir/dbhandlers/DBHandler.hpp"
- #include "crypto/CryptographicSystem.hpp"
- #include "pir/shared_queue.hpp"
- #include "pir/GlobalConstant.hpp"
- class imported_database_t {
- public:
- void* imported_database_ptr;
- uint64_t nbElements;
- uint64_t polysPerElement;
- uint64_t beforeImportElementBytesize;
- //uint64_t afterImportElementBytesize;
- };
- class GenericPIRReplyGenerator
- {
- protected:
- PIRParameters emptyPIRParams;
- PIRParameters& pirParam;
- unsigned int maxChunkSize;
- DBHandler* dbhandler;
- public:
- boost::mutex mutex;
- char** repliesArray = NULL;
- unsigned repliesAmount = 0;
- unsigned repliesIndex = 0;
- GenericPIRReplyGenerator();
- GenericPIRReplyGenerator(PIRParameters& param, DBHandler* db);
- virtual void setCryptoMethod(CryptographicSystem* cm)=0;
- void setPirParams(PIRParameters&);
- virtual void initQueriesBuffer()=0;
- virtual imported_database_t generateReplyGeneric(bool keep_imported_data = false)=0;
- virtual void generateReplyGenericFromData(const imported_database_t database)=0;
- virtual double generateReplySimulation(const PIRParameters& pir_params, uint64_t plaintext_nbr)=0;
- virtual unsigned long computeReplySizeInChunks(unsigned long int)=0;
- virtual void pushQuery(char* rawQuery, unsigned int size, int dim, int nbr)=0;
- virtual ~GenericPIRReplyGenerator(){};
-
- virtual double precomputationSimulation(const PIRParameters& pir_params, uint64_t plaintext_nbr) { return 0.0;}
- };
- #endif
|