comparison Plugins/Engine/OrthancPluginDatabase.cpp @ 3025:039a9d262d64 db-changes

preparing to speed up find in databases
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Dec 2018 17:05:28 +0100
parents d207f6ac1f86
children fd587cf51a89
comparison
equal deleted inserted replaced
3024:ef17a587e10d 3025:039a9d262d64
1158 { 1158 {
1159 assert(GetTotalCompressedSize() == currentDiskSize_); 1159 assert(GetTotalCompressedSize() == currentDiskSize_);
1160 return currentDiskSize_ > threshold; 1160 return currentDiskSize_ > threshold;
1161 } 1161 }
1162 } 1162 }
1163
1164
1165 void OrthancPluginDatabase::FindOneChildInstance(std::vector<std::string>& instancesId,
1166 const std::vector<std::string>& resourcesId,
1167 ResourceType level)
1168 {
1169 throw OrthancException(ErrorCode_NotImplemented);
1170 }
1171
1172
1173 void OrthancPluginDatabase::ApplyLookupPatients(std::vector<std::string>& patientsId,
1174 const DatabaseLookup& lookup,
1175 size_t limit)
1176 {
1177 throw OrthancException(ErrorCode_NotImplemented);
1178 }
1179
1180
1181 void OrthancPluginDatabase::ApplyLookupResources(std::vector<std::string>& patientsId,
1182 const DatabaseLookup& lookup,
1183 ResourceType queryLevel,
1184 size_t limit)
1185 {
1186 throw OrthancException(ErrorCode_NotImplemented);
1187 }
1163 } 1188 }