#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* .
*
*/
#include "Addon.h"
#include "utils/Job.h"
namespace ADDON
{
class CRepository;
typedef std::shared_ptr RepositoryPtr;
class CRepository : public CAddon
{
public:
virtual AddonPtr Clone() const;
CRepository(const AddonProps& props);
CRepository(const cp_extension_t *props);
virtual ~CRepository();
/*! \brief Get the md5 hash for an addon.
\param the addon in question.
\return the md5 hash for the given addon, empty if non exists.
*/
std::string GetAddonHash(const AddonPtr& addon) const;
struct DirInfo
{
DirInfo() : version("0.0.0"), compressed(false), zipped(false), hashes(false) {}
AddonVersion version;
std::string info;
std::string checksum;
std::string datadir;
bool compressed;
bool zipped;
bool hashes;
};
typedef std::vector DirList;
DirList m_dirs;
static bool Parse(const DirInfo& dir, VECADDONS& addons);
static std::string FetchChecksum(const std::string& url);
virtual void OnPostInstall(bool restart, bool update, bool modal);
virtual void OnPostUnInstall();
private:
CRepository(const CRepository &rhs);
};
class CRepositoryUpdateJob : public CJob
{
public:
CRepositoryUpdateJob(const VECADDONS& repos);
virtual ~CRepositoryUpdateJob() {}
virtual const char *GetType() const { return "repoupdate"; };
virtual bool DoWork();
private:
bool GrabAddons(const RepositoryPtr& repo, VECADDONS& addons);
VECADDONS m_repos;
};
}