/** @file * @author Edouard DUPIN * @copyright 2014, Edouard DUPIN, all right reserved * @license APACHE v2.0 (see license file) */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static std::mutex g_mutex; static std::string g_basePath; static std::string g_baseDBName = std::string(SERVICE_NAME) + "-database.json"; class FileProperty { public: uint64_t m_id; //!< use local reference ID to have faster access on the file ... std::string m_fileName; // Sha 512 std::string m_name; std::string m_mineType; echrono::Time m_creationData; }; static std::vector m_listFile; class Album { public: uint32_t m_id; //!< use local reference ID to have faster access on the file ... uint32_t m_parentId; //!< parent Album ID std::string m_name; //!< name of the Album std::string m_description; //!< description of the album std::vector m_listMedia; //!< List of media in this album }; static std::vector m_listAlbum; static uint64_t m_lastMaxId = 0; static bool g_needToStore = false; static uint64_t createUniqueID() { m_lastMaxId++; return m_lastMaxId; } namespace appl { class PictureService : public zeus::service::Picture { private: //ememory::SharedPtr& m_client; zeus::ProxyClientProperty m_client; std::string m_userName; public: /* PictureService(ememory::SharedPtr& _client, const std::string& _userName) : m_client(_client), m_userName(_userName) { APPL_WARNING("New PictureService ... for user: "); } */ PictureService(uint16_t _clientId) { APPL_VERBOSE("New PictureService ... for user: " << _clientId); } ~PictureService() { APPL_VERBOSE("delete PictureService ..."); } public: #if 0 std::vector getAlbums() { std::unique_lock lock(g_mutex); std::vector out; ejson::Array globalGroups = g_database["group-global"].toArray(); if (globalGroups.exist() == false) { APPL_DEBUG("'group-global' ==> does not exist ==> No album"); return out; } ejson::Object groups = g_database["groups"].toObject(); if (groups.exist() == false) { APPL_DEBUG("'group' ==> does not exist ==> No album"); return out; } APPL_DEBUG("for element in 'group-global'"); for (auto it: globalGroups) { std::string tmpString = it.toString().get(); if (tmpString == "") { continue; } APPL_DEBUG(" find emlement:" << tmpString); out.push_back(tmpString); } return out; /* ejson::Object groups = g_database["groups"].toObject(); if (groups.exist() == false) { return std::vector(); } groups return getSubAlbums(""); */ } // Get the list of sub album std::vector getSubAlbums(std::string _parrentAlbum) { std::unique_lock lock(g_mutex); std::vector out; ejson::Object groups = g_database["groups"].toObject(); if (groups.exist() == false) { return out; } // find parrentAlbum ==> to get sub group /* for (size_t iii=0; iii lock(g_mutex); ejson::Object groups = g_database["groups"].toObject(); if (groups.exist() == false) { // TODO : Throw an error ... return 0; } ejson::Object group = groups[_album].toObject(); if (group.exist() == false) { // TODO : Throw an error ... return 0; } ejson::Array groupSubs = group["files"].toArray(); // TODO: Check right return groupSubs.size(); } // Return the list of the album files std::vector getAlbumListPicture(std::string _album) { std::unique_lock lock(g_mutex); std::vector out; ejson::Object groups = g_database["groups"].toObject(); if (groups.exist() == false) { // TODO : Throw an error ... return out; } ejson::Object group = groups[_album].toObject(); if (group.exist() == false) { // TODO : Throw an error ... return out; } ejson::Array groupSubs = group["files"].toArray(); for (auto it: groupSubs) { uint64_t id = it.toNumber().getU64(); /* auto itImage = m_listFile.find(id); if (itImage == m_listFile.end()) { }*/ if (id == 0) { continue; } out.push_back(etk::to_string(id)); } return out; } #endif uint32_t mediaIdCount() { std::unique_lock lock(g_mutex); // TODO : Check right ... } std::vector mediaIdGetName(uint32_t _start, uint32_t _stop) { std::unique_lock lock(g_mutex); // TODO : Check right ... } // Return a File Data (might be a picture .tiff/.png/.jpg) ememory::SharedPtr mediaGet(std::string _mediaName) { std::unique_lock lock(g_mutex); // TODO : Check right ... //Check if the file exist: bool find = false; FileProperty property; for (auto &it : m_listFile) { if (it.m_fileName == _mediaName) { find = true; property = it; break; } } if (find == false) { throw std::invalid_argument("Wrong file name ..."); } return zeus::File::create(g_basePath + property.m_fileName + "." + zeus::getExtention(property.m_mineType), "", property.m_mineType); } std::string mediaAdd(zeus::ProxyFile _dataFile) { std::unique_lock lock(g_mutex); // TODO : Check right ... uint64_t id = createFileID(); auto futType = _dataFile.getMineType(); auto futName = _dataFile.getName(); std::string tmpFileName = g_basePath + "tmpImport_" + etk::to_string(id); std::string sha512String = zeus::storeInFile(_dataFile, tmpFileName); futType.wait(); futName.wait(); // TODO : Get internal data of the file and remove all the meta-data ==> proper files ... for (auto &it : m_listFile) { if (it.m_fileName == sha512String) { APPL_INFO("File already registered at " << it.m_creationData); // TODO : Check if data is identical ... // remove temporary file etk::FSNodeRemove(tmpFileName); return sha512String; } } // move the file at the good position: APPL_DEBUG("move temporay file in : " << g_basePath << sha512String); if (etk::FSNodeGetSize(tmpFileName) == 0) { APPL_ERROR("try to store an empty file"); throw std::runtime_error("file size == 0"); } etk::FSNodeMove(tmpFileName, g_basePath + sha512String + "." + zeus::getExtention(futType.get())); FileProperty property; property.m_id = createUniqueID(); property.m_fileName = sha512String; property.m_name = futName.get(); property.m_mineType = futType.get(); property.m_creationData = echrono::Time::now(); m_listFile.push_back(property); g_needToStore = true; APPL_DEBUG(" filename : " << sha512String); return sha512String; } void mediaRemove(std::string _mediaName) { std::unique_lock lock(g_mutex); // TODO : Check right ... //Check if the file exist: bool find = false; FileProperty property; for (auto &it : m_listFile) { if (it.m_fileName == _mediaName) { find = true; property = it; break; } } if (find == false) { throw std::invalid_argument("Wrong file name ..."); } if (etk::FSNodeRemove(g_basePath + _mediaName + "." + zeus::getExtention(property.m_mineType)) == false) { throw std::runtime_error("Can not remove file ..."); } } std::vector mediaMetadataGetKeys(std::string _mediaName) { std::vector out; return out; } std::string mediaMetadataGetKey(std::string _mediaName, std::string _key) { return ""; } void mediaMetadataSetKey(std::string _name, std::string _key, std::string _value) { } uint32_t albumCreate(std::string _albumName) { std::unique_lock lock(g_mutex); // TODO : Check right ... for (auto &it : m_listAlbum) { if (it.m_name == _albumName) { return it.m_id; } } Album album; album.m_id = createUniqueID(); album.m_name = _albumName; m_listAlbum.push_back(album); return album.m_id; } class Album { public: uint64_t m_id; //!< use local reference ID to have faster access on the file ... uint64_t m_parentId; //!< parent Album ID std::string m_name; //!< name of the Album std::string m_description; //!< description of the album std::vector m_listMedia; //!< List of media in this album }; static std::vector m_listAlbum; void albumRemove(uint32_t _albumId) { std::unique_lock lock(g_mutex); // TODO : Check right ... for (auto it = m_listAlbum.begin(); it != m_listAlbum.end(); /* No increment */) { if (it->m_id == _albumId) { it = m_listAlbum.erase(it); return; } ++it; } throw std::invalid_argument("Wrong Album ID ..."); } std::vector albumGetList() { std::unique_lock lock(g_mutex); std::vector out; for (auto &it : m_listAlbum) { out.push_back(it.m_id); } return out; } std::string albumNameGet(uint32_t _albumId) { std::unique_lock lock(g_mutex); for (auto &it : m_listAlbum) { if (it.m_id == _albumId) { return it.m_name; } } throw std::invalid_argument("Wrong Album ID ..."); return ""; } void albumNameSet(uint32_t _albumId, std::string _albumName) { std::unique_lock lock(g_mutex); for (auto &it : m_listAlbum) { if (it.m_id == _albumId) { it.m_name = _albumName; return; } } throw std::invalid_argument("Wrong Album ID ..."); } std::string albumDescriptionGet(uint32_t _albumId) { std::unique_lock lock(g_mutex); for (auto &it : m_listAlbum) { if (it.m_id == _albumId) { return it.m_description; } } throw std::invalid_argument("Wrong Album ID ..."); return ""; } void albumDescriptionSet(uint32_t _albumId, std::string _desc) { std::unique_lock lock(g_mutex); for (auto &it : m_listAlbum) { if (it.m_id == _albumId) { it.m_description = _desc; return; } } throw std::invalid_argument("Wrong Album ID ..."); } void albumMediaAdd(uint32_t _albumId, std::string _mediaName) { } void albumMediaRemove(uint32_t _albumId, std::string _mediaName) { } uint32_t albumMediaCount(uint32_t _albumId) { std::unique_lock lock(g_mutex); for (auto &it : m_listAlbum) { if (it.m_id == _albumId) { it.m_description = _desc; return it.m_listMedia.count(); } } throw std::invalid_argument("Wrong Album ID ..."); return 0; } std::vector albumMediaGetName(uint32_t _albumId, uint32_t _start, uint32_t _stop) { std::vector out; return out; } void albumParentSet(uint32_t _albumId, uint32_t _albumParentId) { } void albumParentRemove(uint32_t _albumId) { } uint32_t albumParentGet(uint32_t _albumId) { return 0; } }; } static void store_db() { APPL_ERROR("Store database [START]"); ejson::Document database; ejson::Array listFilesArray; database.add("list-files", listFilesArray); for (auto &it : m_listFile) { ejson::Object fileElement; listFilesArray.add(fileElement); fileElement.add("id", ejson::Number(it.m_id)); fileElement.add("file-name", ejson::String(it.m_fileName)); fileElement.add("name", ejson::String(it.m_name)); fileElement.add("mine-type", ejson::String(it.m_mineType)); fileElement.add("add-date", ejson::Number(it.m_creationData.count())); } ejson::Array listAlbumArray; database.add("list-album", listAlbumArray); for (auto &it : m_listAlbum) { ejson::Object albumElement; listAlbumArray.add(AlbumElement); albumElement.add("id", ejson::Number(it.m_id)); albumElement.add("parent", ejson::Number(it.m_parentId)); albumElement.add("name", ejson::String(it.m_name)); albumElement.add("desc", ejson::String(it.m_description)); ejson::Array listMediaArray; albumElement.add("media", listMediaArray); for (auto &it2 : it.m_listMedia) { listMediaArray.add(ejson::Number(it2)); } } bool retGenerate = database.storeSafe(g_basePath + g_baseDBName); APPL_ERROR("Store database [STOP] : " << (g_basePath + g_baseDBName) << " ret = " << retGenerate); g_needToStore = false; } static void load_db() { ejson::Document database; bool ret = database.load(g_basePath + g_baseDBName); if (ret == false) { APPL_WARNING(" ==> LOAD error"); } ejson::Array listFilesArray = database["list-files"].toArray(); for (const auto itArray: listFilesArray) { ejson::Object fileElement = itArray.toObject(); FileProperty property; property.m_id = fileElement["id"].toNumber().getU64(); property.m_fileName = fileElement["file-name"].toString().get(); property.m_name = fileElement["name"].toString().get(); property.m_mineType = fileElement["mine-type"].toString().get(); property.m_creationData = echrono::Time(fileElement["add-date"].toNumber().getU64()*1000); if (m_lastMaxId < property.m_id) { m_lastMaxId = property.m_id+1; } if (property.m_fileName == "") { APPL_ERROR("Can not access on the file : ... No name "); } else { m_listFile.push_back(property); } } ejson::Array listAlbumArray = database["list-album"].toArray(); for (const auto itArray: listAlbumArray) { ejson::Object albumElement = itArray.toObject(); Album album; album.m_id = albumElement["id"].toNumber().getU64(); album.m_parentId = albumElement["parent"].toNumber().getU64() album.m_name = albumElement["name"].toString().get(); album.m_description = albumElement["desc"].toString().get(); ejson::Array listMadiaArray = database["list-album"].toArray(); for (const auto itArrayMedia: listAlbumArray) { uint64_t tmp = itArrayMedia.toNumber().getU64(); album.m_listMedia.push_back(tmp); } m_listAlbum.push_back(album); } g_needToStore = false; } ETK_EXPORT_API bool SERVICE_IO_init(int _argc, const char *_argv[], std::string _basePath) { g_basePath = _basePath; std::unique_lock lock(g_mutex); APPL_WARNING("Load USER: " << g_basePath); load_db(); /* // Load all files (image and video ...) etk::FSNode node(g_basePath); std::vector tmpList = node.folderGetSubList(false, false, true, false); APPL_WARNING("Find " << tmpList.size() << " files"); for (auto &it : tmpList) { if (it == nullptr) { continue; } if ( etk::end_with(it->getNameFile(), ".svg", false) == true || etk::end_with(it->getNameFile(), ".bmp", false) == true || etk::end_with(it->getNameFile(), ".png", false) == true || etk::end_with(it->getNameFile(), ".jpg", false) == true || etk::end_with(it->getNameFile(), ".tga", false) == true || etk::end_with(it->getNameFile(), ".mp4", false) == true || etk::end_with(it->getNameFile(), ".avi", false) == true || etk::end_with(it->getNameFile(), ".mov", false) == true || etk::end_with(it->getNameFile(), ".mkv", false) == true) { // TODO : Do it better (proto ..) std::string idString = it->getNameFile(); idString.resize(idString.size()-4); uint64_t id = 0; std::stringstream ss; ss << std::hex << idString; ss >> id; if (id <= 1024) { APPL_WARNING(" ==> REJECTED file " << it->getNameFile() << " with ID = " << id); } else { //m_listFile.insert(std::make_pair(id, it->getNameFile())); m_lastMaxId = std::max(m_lastMaxId,id); APPL_WARNING(" ==> load file " << it->getNameFile() << " with ID = " << id); } } else { APPL_WARNING(" ==> REJECT file " << it->getNameFile()); } } */ APPL_WARNING("new USER: [STOP]"); return true; } ETK_EXPORT_API bool SERVICE_IO_uninit() { std::unique_lock lock(g_mutex); store_db(); APPL_WARNING("delete USER [STOP]"); return true; } ETK_EXPORT_API void SERVICE_IO_peridic_call() { if (g_needToStore == false) { return; } // try lock mutex: if (g_mutex.try_lock() == false) { return; } store_db(); g_mutex.unlock(); } ZEUS_SERVICE_PICTURE_DECLARE(appl::PictureService);