Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
SVF::ReaderPtrPool< T > Class Template Reference

Reverse of WriterPtrPool where T is object type without ID field. More...

#include <SVFFileSystem.h>

Public Member Functions

void reserve (size_t size)
 
template<typename Creator >
void createObjs (const cJSON *objArrayJson, Creator creator)
 
TgetPtr (size_t id) const
 
template<typename FillFunc >
void fillObjs (FillFunc fillFunc)
 
size_t size () const
 
template<typename Set >
void saveToSet (Set &set) const
 

Private Attributes

std::vector< const cJSON * > jsonArray
 
std::vector< T * > ptrPool
 

Detailed Description

template<typename T>
class SVF::ReaderPtrPool< T >

Reverse of WriterPtrPool where T is object type without ID field.

Template Parameters
T

Definition at line 745 of file SVFFileSystem.h.

Member Function Documentation

◆ createObjs()

template<typename T >
template<typename Creator >
void SVF::ReaderPtrPool< T >::createObjs ( const cJSON objArrayJson,
Creator  creator 
)
inline
Template Parameters
Creator
Parameters
objArrayJson
creator

Definition at line 763 of file SVFFileSystem.h.

764 {
765 assert(jsonArray.empty() &&
766 "jsonArray should be empty when creating objects");
767 ABORT_IFNOT(jsonIsArray(objArrayJson), "expects an array");
768
770 {
771 ABORT_IFNOT(jsonIsObject(objJson), "expects objects in array");
774 jsonArray.push_back(objFieldJson);
775 ptrPool.push_back(obj);
776 }
777 }
#define ABORT_IFNOT(condition, msg)
#define jsonForEach(field, array)
std::vector< T * > ptrPool
std::vector< const cJSON * > jsonArray
bool jsonIsArray(const cJSON *item)
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
bool jsonIsObject(const cJSON *item)
Definition cJSON.h:104
struct cJSON * child
Definition cJSON.h:109

◆ fillObjs()

template<typename T >
template<typename FillFunc >
void SVF::ReaderPtrPool< T >::fillObjs ( FillFunc  fillFunc)
inline

Definition at line 786 of file SVFFileSystem.h.

787 {
788 assert(jsonArray.size() == ptrPool.size() &&
789 "jsonArray and ptrPool should have same size");
790 for (size_t i = 0; i < jsonArray.size(); ++i)
791 {
792 const cJSON*& objFieldJson = jsonArray[i];
794 ABORT_IFNOT(!objFieldJson, "json should be consumed by filler, but "
795 << objFieldJson->string << " left");
796 }
797 jsonArray.clear();
798 jsonArray.shrink_to_fit();
799 }

◆ getPtr()

template<typename T >
T * SVF::ReaderPtrPool< T >::getPtr ( size_t  id) const
inline

Definition at line 779 of file SVFFileSystem.h.

780 {
781 ABORT_IFNOT(id <= ptrPool.size(),
782 "Invalid ID " << id << ". Max ID = " << ptrPool.size());
783 return id ? ptrPool[id - 1] : nullptr;
784 }

◆ reserve()

template<typename T >
void SVF::ReaderPtrPool< T >::reserve ( size_t  size)
inline

Definition at line 752 of file SVFFileSystem.h.

753 {
754 jsonArray.reserve(size);
755 ptrPool.reserve(size);
756 }
size_t size() const

◆ saveToSet()

template<typename T >
template<typename Set >
void SVF::ReaderPtrPool< T >::saveToSet ( Set set) const
inline

Definition at line 806 of file SVFFileSystem.h.

807 {
808 for (T* obj : ptrPool)
809 {
810 set.insert(obj);
811 }
812 }
set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) add_llvm_executable(wpa wpa.cpp) target_link_libraries(wpa PUBLIC $
Definition CMakeLists.txt:1

◆ size()

template<typename T >
size_t SVF::ReaderPtrPool< T >::size ( ) const
inline

Definition at line 801 of file SVFFileSystem.h.

802 {
803 return ptrPool.size();
804 }

Member Data Documentation

◆ jsonArray

template<typename T >
std::vector<const cJSON*> SVF::ReaderPtrPool< T >::jsonArray
private

Definition at line 748 of file SVFFileSystem.h.

◆ ptrPool

template<typename T >
std::vector<T*> SVF::ReaderPtrPool< T >::ptrPool
private

Definition at line 749 of file SVFFileSystem.h.


The documentation for this class was generated from the following file: