Extract storage code into libcynara-storage 33/27533/5
authorAleksander Zdyb <a.zdyb@partner.samsung.com>
Wed, 17 Sep 2014 06:22:20 +0000 (08:22 +0200)
committerAleksander Zdyb <a.zdyb@samsung.com>
Fri, 19 Sep 2014 06:39:48 +0000 (08:39 +0200)
commit67b4a9c5b2b3f471e389012e9ce3d35c0b80fa0e
tree75a4f053c22fead9f92b006b6becb485c7ab1fda
parent17427be520b8b149f0a9a584884025081a2cafdd
Extract storage code into libcynara-storage

libcynara-storage is an extrenal library containing
C++ symbols used in cynara itself as well as
in upcomming libcynara-offline-admin.

Change-Id: I56ce83339ec3bc1b17cc54e3ba5f3863316117fe
19 files changed:
CMakeLists.txt
packaging/cynara.spec
packaging/libcynara-storage.manifest [new file with mode: 0644]
src/CMakeLists.txt
src/service/CMakeLists.txt
src/storage/BucketDeserializer.cpp [moved from src/service/storage/BucketDeserializer.cpp with 100% similarity]
src/storage/BucketDeserializer.h [moved from src/service/storage/BucketDeserializer.h with 89% similarity]
src/storage/Buckets.h [moved from src/service/storage/Buckets.h with 89% similarity]
src/storage/CMakeLists.txt [new file with mode: 0644]
src/storage/InMemoryStorageBackend.cpp [moved from src/service/storage/InMemoryStorageBackend.cpp with 100% similarity]
src/storage/InMemoryStorageBackend.h [moved from src/service/storage/InMemoryStorageBackend.h with 94% similarity]
src/storage/Storage.cpp [moved from src/service/storage/Storage.cpp with 100% similarity]
src/storage/Storage.h [moved from src/service/storage/Storage.h with 91% similarity]
src/storage/StorageBackend.h [moved from src/service/storage/StorageBackend.h with 93% similarity]
src/storage/StorageDeserializer.cpp [moved from src/service/storage/StorageDeserializer.cpp with 100% similarity]
src/storage/StorageDeserializer.h [moved from src/service/storage/StorageDeserializer.h with 92% similarity]
src/storage/StorageSerializer.cpp [moved from src/service/storage/StorageSerializer.cpp with 100% similarity]
src/storage/StorageSerializer.h [moved from src/service/storage/StorageSerializer.h with 94% similarity]
test/CMakeLists.txt