52 lines
2.1 KiB
C++
52 lines
2.1 KiB
C++
/***************************************************************************
|
|||
|
|
* Copyright (C) 2007 by Lothar May *
|
||
|
|
* *
|
||
|
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
|
* it under the terms of the GNU General Public License as published by *
|
||
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
|
* (at your option) any later version. *
|
||
|
|
* *
|
||
|
|
* This program is distributed in the hope that it will be useful, *
|
||
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||
|
|
* GNU General Public License for more details. *
|
||
|
|
* *
|
||
|
|
* You should have received a copy of the GNU General Public License *
|
||
|
|
* along with this program; if not, write to the *
|
||
|
|
* Free Software Foundation, Inc., *
|
||
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||
|
|
***************************************************************************/
|
||
|
|
/* A manager for avatar files, MD5sums and a cache. */
|
||
|
|
|
||
|
|
#ifndef _AVATARMANAGER_H_
|
||
|
|
#define _AVATARMANAGER_H_
|
||
|
|
|
||
|
|
#include <core/crypthelper.h>
|
||
|
|
#include <map>
|
||
|
|
|
||
|
|
class AvatarManager
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
AvatarManager();
|
||
|
|
~AvatarManager();
|
||
|
|
|
||
|
|
bool Init(const std::string &dataDir, const std::string &cacheDir);
|
||
|
|
|
||
|
|
bool GetHashForAvatar(const std::string &fileName, MD5Buf &md5buf);
|
||
|
|
bool GetAvatarFileName(const MD5Buf &md5buf, std::string &fileName) const;
|
||
|
|
bool StoreAvatarInCache(const MD5Buf &md5buf, const std::string &fileExtension, const unsigned char *data, unsigned size);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
typedef std::map<MD5Buf, std::string> AvatarMap;
|
||
|
|
|
||
|
|
void InternalReadDirectory(const std::string &dir);
|
||
|
|
|
||
|
|
private:
|
||
|
|
AvatarMap m_avatars;
|
||
|
|
|
||
|
|
std::string m_cacheDir;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|