mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
136 lines
3.8 KiB
C++
136 lines
3.8 KiB
C++
#pragma once
|
|
|
|
#include <windef.h>
|
|
#include <atlstr.h>
|
|
#include <atlsimpcoll.h>
|
|
#include <atlcoll.h>
|
|
|
|
#include "misc.h"
|
|
#include "configparser.h"
|
|
|
|
|
|
#define MAX_SCRNSHOT_NUM 16
|
|
|
|
enum LicenseType
|
|
{
|
|
LICENSE_NONE,
|
|
LICENSE_OPENSOURCE,
|
|
LICENSE_FREEWARE,
|
|
LICENSE_TRIAL,
|
|
LICENSE_MIN = LICENSE_NONE,
|
|
LICENSE_MAX = LICENSE_TRIAL
|
|
};
|
|
|
|
inline BOOL IsLicenseType(INT x)
|
|
{
|
|
return (x >= LICENSE_MIN && x <= LICENSE_MAX);
|
|
}
|
|
|
|
struct AvailableStrings
|
|
{
|
|
ATL::CStringW szPath;
|
|
ATL::CStringW szCabPath;
|
|
ATL::CStringW szAppsPath;
|
|
ATL::CStringW szSearchPath;
|
|
ATL::CStringW szCabName;
|
|
ATL::CStringW szCabDir;
|
|
|
|
AvailableStrings();
|
|
};
|
|
|
|
class CAvailableApplicationInfo
|
|
{
|
|
public:
|
|
INT m_Category;
|
|
//BOOL m_IsSelected;
|
|
LicenseType m_LicenseType;
|
|
ATL::CStringW m_szName; // software's display name.
|
|
ATL::CStringW m_szRegName;
|
|
ATL::CStringW m_szVersion;
|
|
ATL::CStringW m_szLicense;
|
|
ATL::CStringW m_szDesc;
|
|
ATL::CStringW m_szSize;
|
|
ATL::CStringW m_szUrlSite;
|
|
ATL::CStringW m_szUrlDownload;
|
|
ATL::CSimpleArray<LCID> m_LanguageLCIDs;
|
|
ATL::CSimpleArray<ATL::CStringW> m_szScrnshotLocation;
|
|
ATL::CStringW m_szIconLocation;
|
|
ATL::CStringW m_szPkgName; // software's package name.
|
|
|
|
ULONG m_SizeBytes;
|
|
|
|
// Caching mechanism related entries
|
|
ATL::CStringW m_sFileName;
|
|
FILETIME m_ftCacheStamp;
|
|
|
|
// Optional integrity checks (SHA-1 digests are 160 bit = 40 characters in hex string form)
|
|
ATL::CStringW m_szSHA1;
|
|
ATL::CStringW m_szInstalledVersion;
|
|
|
|
// Create an object from file
|
|
CAvailableApplicationInfo(const ATL::CStringW& sFileNameParam, AvailableStrings& m_Strings);
|
|
|
|
// Load all info from the file
|
|
VOID RefreshAppInfo(AvailableStrings& m_Strings);
|
|
BOOL HasLanguageInfo() const;
|
|
BOOL HasNativeLanguage() const;
|
|
BOOL HasEnglishLanguage() const;
|
|
BOOL IsInstalled() const;
|
|
BOOL HasInstalledVersion() const;
|
|
BOOL HasUpdate() const;
|
|
BOOL RetrieveScrnshot(UINT Index, ATL::CStringW& ScrnshotLocation) const;
|
|
BOOL RetrieveIcon(ATL::CStringW& IconLocation) const;
|
|
// Set a timestamp
|
|
VOID SetLastWriteTime(FILETIME* ftTime);
|
|
|
|
private:
|
|
BOOL m_IsInstalled;
|
|
BOOL m_HasLanguageInfo;
|
|
BOOL m_HasInstalledVersion;
|
|
CConfigParser* m_Parser;
|
|
|
|
inline BOOL GetString(LPCWSTR lpKeyName, ATL::CStringW& ReturnedString);
|
|
|
|
// Lazily load general info from the file
|
|
VOID RetrieveGeneralInfo(AvailableStrings& m_Strings);
|
|
VOID RetrieveInstalledStatus();
|
|
VOID RetrieveInstalledVersion();
|
|
VOID RetrieveLanguages();
|
|
VOID RetrieveLicenseType();
|
|
VOID RetrieveSize();
|
|
inline BOOL FindInLanguages(LCID what) const;
|
|
};
|
|
|
|
typedef BOOL(CALLBACK *AVAILENUMPROC)(CAvailableApplicationInfo *Info, BOOL bInitialCheckState, PVOID param);
|
|
|
|
class CAvailableApps
|
|
{
|
|
ATL::CAtlList<CAvailableApplicationInfo*> m_InfoList;
|
|
ATL::CAtlList< CAvailableApplicationInfo*> m_SelectedList;
|
|
|
|
public:
|
|
static AvailableStrings m_Strings;
|
|
|
|
CAvailableApps();
|
|
|
|
static BOOL UpdateAppsDB();
|
|
static BOOL ForceUpdateAppsDB();
|
|
static VOID DeleteCurrentAppsDB();
|
|
|
|
VOID FreeCachedEntries();
|
|
BOOL Enum(INT EnumType, AVAILENUMPROC lpEnumProc, PVOID param);
|
|
|
|
BOOL AddSelected(CAvailableApplicationInfo *AvlbInfo);
|
|
BOOL RemoveSelected(CAvailableApplicationInfo *AvlbInfo);
|
|
|
|
VOID RemoveAllSelected();
|
|
int GetSelectedCount();
|
|
|
|
CAvailableApplicationInfo* FindAppByPkgName(const ATL::CStringW& szPkgName) const;
|
|
ATL::CSimpleArray<CAvailableApplicationInfo> FindAppsByPkgNameList(const ATL::CSimpleArray<ATL::CStringW> &arrAppsNames) const;
|
|
//ATL::CSimpleArray<CAvailableApplicationInfo> GetSelected() const;
|
|
|
|
const ATL::CStringW& GetFolderPath() const;
|
|
const ATL::CStringW& GetAppPath() const;
|
|
const ATL::CStringW& GetCabPath() const;
|
|
};
|