1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "Screenshot.h"
#include "ServiceBroker.h"
#include "URL.h"
#include "Util.h"
#include "filesystem/File.h"
#include "guilib/LocalizeStrings.h"
#include "pictures/Picture.h"
#include "settings/SettingPath.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
#include "settings/windows/GUIControlSettings.h"
#include "utils/JobManager.h"
#include "utils/URIUtils.h"
#include "utils/log.h"
using namespace XFILE;
std::vector<std::function<std::unique_ptr<IScreenshotSurface>()>> CScreenShot::m_screenShotSurfaces;
void CScreenShot::Register(std::function<std::unique_ptr<IScreenshotSurface>()> createFunc)
{
m_screenShotSurfaces.emplace_back(createFunc);
}
void CScreenShot::TakeScreenshot(const std::string& filename, bool sync)
{
auto surface = m_screenShotSurfaces.back()();
if (!surface)
{
CLog::Log(LOGERROR, "failed to create screenshot surface");
return;
}
if (!surface->Capture())
{
CLog::Log(LOGERROR, "Screenshot %s failed", CURL::GetRedacted(filename).c_str());
return;
}
surface->CaptureVideo(true);
CLog::Log(LOGDEBUG, "Saving screenshot %s", CURL::GetRedacted(filename).c_str());
//set alpha byte to 0xFF
for (int y = 0; y < surface->GetHeight(); y++)
{
unsigned char* alphaptr = surface->GetBuffer() - 1 + y * surface->GetStride();
for (int x = 0; x < surface->GetWidth(); x++)
*(alphaptr += 4) = 0xFF;
}
//if sync is true, the png file needs to be completely written when this function returns
if (sync)
{
if (!CPicture::CreateThumbnailFromSurface(surface->GetBuffer(), surface->GetWidth(), surface->GetHeight(), surface->GetStride(), filename))
CLog::Log(LOGERROR, "Unable to write screenshot %s", CURL::GetRedacted(filename).c_str());
surface->ReleaseBuffer();
}
else
{
//make sure the file exists to avoid concurrency issues
XFILE::CFile file;
if (file.OpenForWrite(filename))
file.Close();
else
CLog::Log(LOGERROR, "Unable to create file %s", CURL::GetRedacted(filename).c_str());
//write .png file asynchronous with CThumbnailWriter, prevents stalling of the render thread
//buffer is deleted from CThumbnailWriter
CThumbnailWriter* thumbnailwriter = new CThumbnailWriter(surface->GetBuffer(), surface->GetWidth(), surface->GetHeight(), surface->GetStride(), filename);
CJobManager::GetInstance().AddJob(thumbnailwriter, NULL);
}
}
void CScreenShot::TakeScreenshot()
{
std::shared_ptr<CSettingPath> screenshotSetting = std::static_pointer_cast<CSettingPath>(CServiceBroker::GetSettingsComponent()->GetSettings()->GetSetting(CSettings::SETTING_DEBUG_SCREENSHOTPATH));
if (!screenshotSetting)
return;
std::string strDir = screenshotSetting->GetValue();
if (strDir.empty())
{
if (!CGUIControlButtonSetting::GetPath(screenshotSetting, &g_localizeStrings))
return;
strDir = screenshotSetting->GetValue();
}
URIUtils::RemoveSlashAtEnd(strDir);
if (!strDir.empty())
{
std::string file = CUtil::GetNextFilename(URIUtils::AddFileToFolder(strDir, "screenshot%03d.png"), 999);
if (!file.empty())
{
TakeScreenshot(file, false);
}
else
{
CLog::Log(LOGWARNING, "Too many screen shots or invalid folder");
}
}
}
|