forked from kimchi-project/kimchi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screenshot.py
184 lines (155 loc) · 5.64 KB
/
screenshot.py
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#
# Project Kimchi
#
# Copyright IBM Corp, 2015-2016
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
import glob
import os
import signal
import tempfile
import time
import uuid
try:
from PIL import Image
except ImportError:
import Image
from wok.utils import wok_log
from wok.plugins.kimchi import config
(fd, pipe) = tempfile.mkstemp()
stream_test_result = None
class VMScreenshot(object):
OUTDATED_SECS = 5
THUMBNAIL_SIZE = (256, 256)
LIVE_WINDOW = 60
MAX_STREAM_ATTEMPTS = 10
def __init__(self, args):
self.vm_uuid = args['uuid']
args.setdefault('thumbnail',
os.path.join(config.get_screenshot_path(),
'%s-%s.png' %
(self.vm_uuid, str(uuid.uuid4()))))
self.info = args
@staticmethod
def get_stream_test_result():
return stream_test_result
def lookup(self):
now = time.time()
try:
last_update = os.path.getmtime(self.info['thumbnail'])
except OSError:
last_update = 0
if now - last_update > self.OUTDATED_SECS:
self._clean_extra(self.LIVE_WINDOW)
self._generate_thumbnail()
return 'plugins/kimchi/data/screenshots/%s' %\
os.path.basename(self.info['thumbnail'])
def _clean_extra(self, window=-1):
"""
Clear screenshots before time specified by window,
Clear all screenshots if window is -1.
"""
try:
now = time.time()
clear_list = glob.glob("%s/%s-*.png" %
(config.get_screenshot_path(),
self.vm_uuid))
for f in clear_list:
if now - os.path.getmtime(f) > window:
os.unlink(f)
except OSError:
pass
def delete(self):
return self._clean_extra()
def _generate_scratch(self, thumbnail):
"""
Generate screenshot of given vm.
Override me in child class.
"""
pass
def _create_black_image(self, thumbnail):
image = Image.new("RGB", self.THUMBNAIL_SIZE, 'black')
image.save(thumbnail)
def _watch_stream_creation(self, thumbnail):
"""
This is a verification test for libvirt stream functionality.
It is necessary to avoid the server hangs while creating the screenshot
image using libvirt stream API.
This problem was found in libvirt 0.9.6 for SLES11 SP2.
This test consists in running the screeshot creation with a timeout.
If timeout occurs, the libvirt is taking too much time to create the
screenshot image and the stream must be disabled it if happens
successively (to avoid blocking server requests).
"""
pid = os.fork()
if pid == 0:
try:
self._generate_scratch(thumbnail)
os._exit(0)
except:
os._exit(1)
else:
counter = 0
ret = os.waitpid(pid, os.WNOHANG)
while ret == (0, 0) and counter < 3:
counter += 1
time.sleep(1)
ret = os.waitpid(pid, os.WNOHANG)
fd = open(pipe, "a")
if ret != (pid, 0):
fd.write("-")
if ret[0] != pid:
os.kill(int(pid), signal.SIGKILL)
os.waitpid(pid, 0)
else:
fd.write("+")
fd.close()
def _get_test_result(self):
if not os.path.exists(pipe):
return
fd = open(pipe, "r")
data = fd.read()
fd.close()
if len(data) >= self.MAX_STREAM_ATTEMPTS or bool('+' in data):
global stream_test_result
stream_test_result = bool('+' in data)
os.remove(pipe)
def _generate_thumbnail(self):
thumbnail = os.path.join(config.get_screenshot_path(), '%s-%s.png' %
(self.vm_uuid, str(uuid.uuid4())))
self._get_test_result()
if stream_test_result is None:
self._watch_stream_creation(thumbnail)
elif stream_test_result:
try:
self._generate_scratch(thumbnail)
except:
wok_log.error("screenshot_creation: Unable to create "
"screenshot image %s." % thumbnail)
else:
self._create_black_image(thumbnail)
if os.path.getsize(thumbnail) == 0:
self._create_black_image(thumbnail)
else:
im = Image.open(thumbnail)
try:
# Prevent Image lib from lazy load,
# work around pic truncate validation in thumbnail generation
im.thumbnail(self.THUMBNAIL_SIZE)
except Exception as e:
wok_log.warning("Image load with warning: %s." % e)
im.save(thumbnail, "PNG")
self.info['thumbnail'] = thumbnail