changeset 5846:c1b9eb21bd61 find-refactoring

removed unused flavor of StatelessDatabaseOperations::GetAllUuids()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 29 Oct 2024 13:29:43 +0000
parents f924d9a88cd2
children 70a879a7b658
files OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp OrthancServer/Sources/Database/StatelessDatabaseOperations.h
diffstat 2 files changed, 0 insertions(+), 47 deletions(-) [+]
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp	Tue Oct 29 13:18:40 2024 +0000
+++ b/OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp	Tue Oct 29 13:29:43 2024 +0000
@@ -661,34 +661,6 @@
   }
 
 
-  void StatelessDatabaseOperations::GetAllUuids(std::list<std::string>& target,
-                                                ResourceType resourceType,
-                                                size_t since,
-                                                uint32_t limit)
-  {
-    if (limit == 0)
-    {
-      target.clear();
-    }
-    else
-    {
-      class Operations : public ReadOnlyOperationsT4<std::list<std::string>&, ResourceType, size_t, size_t>
-      {
-      public:
-        virtual void ApplyTuple(ReadOnlyTransaction& transaction,
-                                const Tuple& tuple) ORTHANC_OVERRIDE
-        {
-          // TODO - CANDIDATE FOR "TransactionType_Implicit"
-          transaction.GetAllPublicIds(tuple.get<0>(), tuple.get<1>(), tuple.get<2>(), tuple.get<3>());
-        }
-      };
-
-      Operations operations;
-      operations.Apply(*this, target, resourceType, since, limit);
-    }
-  }
-
-
   void StatelessDatabaseOperations::GetGlobalStatistics(/* out */ uint64_t& diskSize,
                                                         /* out */ uint64_t& uncompressedSize,
                                                         /* out */ uint64_t& countPatients, 
--- a/OrthancServer/Sources/Database/StatelessDatabaseOperations.h	Tue Oct 29 13:18:40 2024 +0000
+++ b/OrthancServer/Sources/Database/StatelessDatabaseOperations.h	Tue Oct 29 13:29:43 2024 +0000
@@ -141,20 +141,6 @@
         transaction_.GetAllMetadata(target, id);
       }
 
-      void GetAllPublicIds(std::list<std::string>& target,
-                           ResourceType resourceType)
-      {
-        return transaction_.GetAllPublicIds(target, resourceType);
-      }
-
-      void GetAllPublicIds(std::list<std::string>& target,
-                           ResourceType resourceType,
-                           size_t since,
-                           uint32_t limit)
-      {
-        return transaction_.GetAllPublicIds(target, resourceType, since, limit);
-      }  
-
       void GetChanges(std::list<ServerIndexChange>& target /*out*/,
                       bool& done /*out*/,
                       int64_t since,
@@ -559,11 +545,6 @@
     void GetAllUuids(std::list<std::string>& target,
                      ResourceType resourceType);
 
-    void GetAllUuids(std::list<std::string>& target,
-                     ResourceType resourceType,
-                     size_t since,
-                     uint32_t limit);
-
     void GetGlobalStatistics(/* out */ uint64_t& diskSize,
                              /* out */ uint64_t& uncompressedSize,
                              /* out */ uint64_t& countPatients,