// ********************************************************************** // // Copyright (c) 2003 // ZeroC, Inc. // Billerica, MA, USA // // All Rights Reserved. // // Ice is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License version 2 as published by // the Free Software Foundation. // // ********************************************************************** #ifndef ICE_PATCH_UTIL_H #define ICE_PATCH_UTIL_H #include #include namespace IcePatch { ICE_PATCH_API std::string identityToPath(const Ice::Identity&); ICE_PATCH_API Ice::Identity pathToIdentity(const std::string&); ICE_PATCH_API std::string getSuffix(const std::string&); ICE_PATCH_API bool ignoreSuffix(const std::string&); ICE_PATCH_API std::string removeSuffix(const std::string&); enum FileType { FileTypeNotExist, FileTypeDirectory, FileTypeRegular }; struct FileInfo { FileType type; off_t size; time_t time; }; ICE_PATCH_API FileInfo getFileInfo(const std::string&, bool, const Ice::LoggerPtr& = 0); ICE_PATCH_API void removeRecursive(const std::string&, const Ice::LoggerPtr& = 0); ICE_PATCH_API Ice::StringSeq readDirectory(const std::string&); ICE_PATCH_API void createDirectory(const std::string&); ICE_PATCH_API Ice::ByteSeq getMD5(const std::string&); ICE_PATCH_API void putMD5(const std::string&, const Ice::ByteSeq&); ICE_PATCH_API void createMD5(const std::string&, const Ice::LoggerPtr& = 0); ICE_PATCH_API Ice::ByteSeq calcPartialMD5(const std::string&, Ice::Int, const Ice::LoggerPtr& = 0); ICE_PATCH_API Ice::ByteSeq getBZ2(const std::string&, Ice::Int, Ice::Int); ICE_PATCH_API void createBZ2(const std::string&, const Ice::LoggerPtr&); } #endif