2020-02-10 21:59:51 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <common/settings_helpers.h>
|
|
|
|
#include <common/json.h>
|
2020-02-17 23:28:49 +08:00
|
|
|
#include <mutex>
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <strsafe.h>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <variant>
|
|
|
|
#include <optional>
|
|
|
|
#include <vector>
|
|
|
|
#include <winnt.h>
|
|
|
|
|
|
|
|
namespace JSONHelpers
|
|
|
|
{
|
|
|
|
constexpr int MAX_ZONE_COUNT = 50;
|
|
|
|
|
2020-03-17 05:29:13 +08:00
|
|
|
#if defined(UNIT_TESTS)
|
|
|
|
bool isValidGuid(const std::wstring& str);
|
|
|
|
bool isValidDeviceId(const std::wstring& str);
|
|
|
|
#endif
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
enum class ZoneSetLayoutType : int
|
|
|
|
{
|
|
|
|
Blank = -1,
|
|
|
|
Focus,
|
|
|
|
Columns,
|
|
|
|
Rows,
|
|
|
|
Grid,
|
|
|
|
PriorityGrid,
|
|
|
|
Custom
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class CustomLayoutType : int
|
|
|
|
{
|
|
|
|
Grid = 0,
|
|
|
|
Canvas
|
|
|
|
};
|
|
|
|
|
|
|
|
std::wstring TypeToString(ZoneSetLayoutType type);
|
|
|
|
ZoneSetLayoutType TypeFromString(const std::wstring& typeStr);
|
|
|
|
|
|
|
|
ZoneSetLayoutType TypeFromLayoutId(int layoutID);
|
|
|
|
|
|
|
|
struct CanvasLayoutInfo
|
|
|
|
{
|
|
|
|
int referenceWidth;
|
|
|
|
int referenceHeight;
|
|
|
|
struct Rect
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
};
|
|
|
|
std::vector<CanvasLayoutInfo::Rect> zones;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const CanvasLayoutInfo& canvasInfo);
|
|
|
|
static std::optional<CanvasLayoutInfo> FromJson(const json::JsonObject& infoJson);
|
|
|
|
};
|
|
|
|
|
|
|
|
class GridLayoutInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct Minimal
|
|
|
|
{
|
|
|
|
int rows;
|
|
|
|
int columns;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Full
|
|
|
|
{
|
|
|
|
int rows;
|
|
|
|
int columns;
|
|
|
|
const std::vector<int>& rowsPercents;
|
|
|
|
const std::vector<int>& columnsPercents;
|
|
|
|
const std::vector<std::vector<int>>& cellChildMap;
|
|
|
|
};
|
|
|
|
|
|
|
|
GridLayoutInfo(const Minimal& info);
|
|
|
|
GridLayoutInfo(const Full& info);
|
|
|
|
~GridLayoutInfo() = default;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const GridLayoutInfo& gridInfo);
|
|
|
|
static std::optional<GridLayoutInfo> FromJson(const json::JsonObject& infoJson);
|
|
|
|
|
|
|
|
inline std::vector<int>& rowsPercents() { return m_rowsPercents; };
|
|
|
|
inline std::vector<int>& columnsPercents() { return m_columnsPercents; };
|
|
|
|
inline std::vector<std::vector<int>>& cellChildMap() { return m_cellChildMap; };
|
|
|
|
|
|
|
|
inline int rows() const { return m_rows; }
|
|
|
|
inline int columns() const { return m_columns; }
|
|
|
|
|
|
|
|
inline const std::vector<int>& rowsPercents() const { return m_rowsPercents; };
|
|
|
|
inline const std::vector<int>& columnsPercents() const { return m_columnsPercents; };
|
|
|
|
inline const std::vector<std::vector<int>>& cellChildMap() const { return m_cellChildMap; };
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_rows;
|
|
|
|
int m_columns;
|
|
|
|
std::vector<int> m_rowsPercents;
|
|
|
|
std::vector<int> m_columnsPercents;
|
|
|
|
std::vector<std::vector<int>> m_cellChildMap;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CustomZoneSetData
|
|
|
|
{
|
|
|
|
std::wstring name;
|
|
|
|
CustomLayoutType type;
|
|
|
|
std::variant<CanvasLayoutInfo, GridLayoutInfo> info;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CustomZoneSetJSON
|
|
|
|
{
|
|
|
|
std::wstring uuid;
|
|
|
|
CustomZoneSetData data;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const CustomZoneSetJSON& device);
|
|
|
|
static std::optional<CustomZoneSetJSON> FromJson(const json::JsonObject& customZoneSet);
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO(stefan): This needs to be moved to ZoneSet.h (probably)
|
|
|
|
struct ZoneSetData
|
|
|
|
{
|
|
|
|
std::wstring uuid;
|
|
|
|
ZoneSetLayoutType type;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const ZoneSetData& zoneSet);
|
|
|
|
static std::optional<ZoneSetData> FromJson(const json::JsonObject& zoneSet);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AppZoneHistoryData
|
|
|
|
{
|
|
|
|
std::wstring zoneSetUuid;
|
|
|
|
std::wstring deviceId;
|
|
|
|
int zoneIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AppZoneHistoryJSON
|
|
|
|
{
|
|
|
|
std::wstring appPath;
|
|
|
|
AppZoneHistoryData data;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const AppZoneHistoryJSON& appZoneHistory);
|
|
|
|
static std::optional<AppZoneHistoryJSON> FromJson(const json::JsonObject& zoneSet);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DeviceInfoData
|
|
|
|
{
|
|
|
|
ZoneSetData activeZoneSet;
|
|
|
|
bool showSpacing;
|
|
|
|
int spacing;
|
|
|
|
int zoneCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DeviceInfoJSON
|
|
|
|
{
|
|
|
|
std::wstring deviceId;
|
|
|
|
DeviceInfoData data;
|
|
|
|
|
|
|
|
static json::JsonObject ToJson(const DeviceInfoJSON& device);
|
|
|
|
static std::optional<DeviceInfoJSON> FromJson(const json::JsonObject& device);
|
|
|
|
};
|
|
|
|
|
|
|
|
class FancyZonesData
|
|
|
|
{
|
2020-02-17 23:28:49 +08:00
|
|
|
mutable std::recursive_mutex dataLock;
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
public:
|
|
|
|
FancyZonesData();
|
|
|
|
|
2020-02-17 23:28:49 +08:00
|
|
|
inline const std::wstring& GetPersistFancyZonesJSONPath() const
|
|
|
|
{
|
|
|
|
return jsonFilePath;
|
|
|
|
}
|
2020-02-10 21:59:51 +08:00
|
|
|
json::JsonObject GetPersistFancyZonesJSON();
|
|
|
|
|
2020-02-17 23:28:49 +08:00
|
|
|
std::optional<DeviceInfoData> FindDeviceInfo(const std::wstring& zoneWindowId) const;
|
|
|
|
|
|
|
|
std::optional<CustomZoneSetData> FindCustomZoneSet(const std::wstring& guuid) const;
|
|
|
|
|
|
|
|
inline const std::wstring GetActiveDeviceId() const
|
|
|
|
{
|
|
|
|
std::scoped_lock lock{ dataLock };
|
|
|
|
return activeDeviceId;
|
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
inline const std::unordered_map<std::wstring, DeviceInfoData>& GetDeviceInfoMap() const
|
|
|
|
{
|
2020-02-18 00:40:02 +08:00
|
|
|
std::scoped_lock lock{ dataLock };
|
2020-02-10 21:59:51 +08:00
|
|
|
return deviceInfoMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const std::unordered_map<std::wstring, CustomZoneSetData>& GetCustomZoneSetsMap() const
|
|
|
|
{
|
2020-02-18 00:40:02 +08:00
|
|
|
std::scoped_lock lock{ dataLock };
|
2020-02-10 21:59:51 +08:00
|
|
|
return customZoneSetsMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const std::unordered_map<std::wstring, AppZoneHistoryData>& GetAppZoneHistoryMap() const
|
|
|
|
{
|
2020-02-18 00:40:02 +08:00
|
|
|
std::scoped_lock lock{ dataLock };
|
2020-02-10 21:59:51 +08:00
|
|
|
return appZoneHistoryMap;
|
|
|
|
}
|
|
|
|
|
2020-02-18 00:40:02 +08:00
|
|
|
#if defined(UNIT_TESTS)
|
2020-02-17 23:28:49 +08:00
|
|
|
inline void clear_data()
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-02-17 23:28:49 +08:00
|
|
|
appZoneHistoryMap.clear();
|
|
|
|
deviceInfoMap.clear();
|
|
|
|
customZoneSetsMap.clear();
|
|
|
|
activeDeviceId.clear();
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
2020-04-10 22:29:18 +08:00
|
|
|
|
|
|
|
inline void SetDeviceInfo(const std::wstring& deviceId, DeviceInfoData data)
|
|
|
|
{
|
|
|
|
deviceInfoMap[deviceId] = data;
|
|
|
|
}
|
2020-02-17 23:28:49 +08:00
|
|
|
#endif
|
2020-02-10 21:59:51 +08:00
|
|
|
|
2020-02-17 23:28:49 +08:00
|
|
|
inline void SetActiveDeviceId(const std::wstring& deviceId)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-02-17 23:28:49 +08:00
|
|
|
std::scoped_lock lock{ dataLock };
|
2020-02-10 21:59:51 +08:00
|
|
|
activeDeviceId = deviceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool DeleteTmpFile(std::wstring_view tmpFilePath) const
|
|
|
|
{
|
|
|
|
return DeleteFileW(tmpFilePath.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddDevice(const std::wstring& deviceId);
|
2020-02-18 18:55:08 +08:00
|
|
|
bool RemoveDevicesByVirtualDesktopId(const std::wstring& virtualDesktopId);
|
2020-02-10 21:59:51 +08:00
|
|
|
void CloneDeviceInfo(const std::wstring& source, const std::wstring& destination);
|
2020-04-30 17:16:25 +08:00
|
|
|
void UpdatePrimaryDesktopData(const std::wstring& desktopId);
|
2020-05-05 16:13:50 +08:00
|
|
|
void RemoveDeletedDesktops(const std::vector<std::wstring>& activeDesktops);
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
int GetAppLastZoneIndex(HWND window, const std::wstring_view& deviceId, const std::wstring_view& zoneSetId) const;
|
|
|
|
bool RemoveAppLastZone(HWND window, const std::wstring_view& deviceId, const std::wstring_view& zoneSetId);
|
|
|
|
bool SetAppLastZone(HWND window, const std::wstring& deviceId, const std::wstring& zoneSetId, int zoneIndex);
|
|
|
|
|
|
|
|
void SetActiveZoneSet(const std::wstring& deviceId, const ZoneSetData& zoneSet);
|
|
|
|
|
|
|
|
void SerializeDeviceInfoToTmpFile(const DeviceInfoJSON& deviceInfo, std::wstring_view tmpFilePath) const;
|
|
|
|
|
|
|
|
void ParseDeviceInfoFromTmpFile(std::wstring_view tmpFilePath);
|
|
|
|
bool ParseCustomZoneSetFromTmpFile(std::wstring_view tmpFilePath);
|
|
|
|
bool ParseDeletedCustomZoneSetsFromTmpFile(std::wstring_view tmpFilePath);
|
|
|
|
|
|
|
|
bool ParseAppZoneHistory(const json::JsonObject& fancyZonesDataJSON);
|
|
|
|
json::JsonArray SerializeAppZoneHistory() const;
|
|
|
|
bool ParseDeviceInfos(const json::JsonObject& fancyZonesDataJSON);
|
|
|
|
json::JsonArray SerializeDeviceInfos() const;
|
|
|
|
bool ParseCustomZoneSets(const json::JsonObject& fancyZonesDataJSON);
|
|
|
|
json::JsonArray SerializeCustomZoneSets() const;
|
|
|
|
void CustomZoneSetsToJsonFile(std::wstring_view filePath) const;
|
|
|
|
|
|
|
|
void LoadFancyZonesData();
|
|
|
|
void SaveFancyZonesData() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void MigrateCustomZoneSetsFromRegistry();
|
|
|
|
|
|
|
|
std::unordered_map<std::wstring, AppZoneHistoryData> appZoneHistoryMap{};
|
|
|
|
std::unordered_map<std::wstring, DeviceInfoData> deviceInfoMap{};
|
|
|
|
std::unordered_map<std::wstring, CustomZoneSetData> customZoneSetsMap{};
|
|
|
|
|
|
|
|
std::wstring activeDeviceId;
|
|
|
|
std::wstring jsonFilePath;
|
|
|
|
};
|
|
|
|
|
|
|
|
FancyZonesData& FancyZonesDataInstance();
|
|
|
|
}
|