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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
#!/usr/bin/env python
# Copyright 2014, 2015 Tobias Mueller <muelli@cryptobitch.de>
# Copyright 2014 Andrei Macavei <andrei.macavei89@gmail.com>
#
# This file is part of GNOME Keysign.
#
# GNOME Keysign 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 3 of the License, or
# (at your option) any later version.
#
# GNOME Keysign 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 GNOME Keysign. If not, see <http://www.gnu.org/licenses/>.
import logging
import signal
import sys
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstVideo', '1.0')
gi.require_version('Gtk', '3.0')
from gi.repository import GObject
from gi.repository import Gst
from gi.repository import Gtk, GLib
# Because of https://bugzilla.gnome.org/show_bug.cgi?id=698005
from gi.repository import Gtk, GdkPixbuf
from gi.repository import GstVideo
from gi.repository import Gdk
log = logging.getLogger(__name__)
class BarcodeReaderGTK(Gtk.Box):
__gsignals__ = {
str('barcode'): (GObject.SignalFlags.RUN_LAST, None,
(str, # The barcode string
Gst.Message.__gtype__, # The GStreamer message itself
GdkPixbuf.Pixbuf.__gtype__, # The pixbuf which caused
# the above string to be decoded
),
)
}
def __init__(self, *args, **kwargs):
super(BarcodeReaderGTK, self).__init__(*args, **kwargs)
self.connect('unmap', self.on_unmap)
self.connect('map', self.on_map)
def on_message(self, bus, message):
#log.debug("Message: %s", message)
if message:
struct = message.get_structure()
if struct:
struct_name = struct.get_name()
#log.debug('Message name: %s', struct_name)
if struct_name == 'GstMessageError':
err, debug = message.parse_error()
log.error('GstError: %s, %s', err, debug)
elif struct_name == 'GstMessageWarning':
err, debug = message.parse_warning()
log.warning('GstWarning: %s, %s', err, debug)
elif struct_name == 'barcode':
self.timestamp = struct.get_clock_time("timestamp")[1]
log.debug ("at %s", self.timestamp)
assert struct.has_field('symbol')
barcode = struct.get_string('symbol')
log.info("Read Barcode: {}".format(barcode))
pixbuf = None
if struct.has_field ("frame"):
# This is the new zbar, which posts the frame along
# with the barcode.
sample = struct.get_value ("frame")
pixbuf = gst_sample_to_pixbuf(sample)
self.emit("barcode", barcode, message, pixbuf)
else:
# If we do not see the zbar < 1.6, we raise
raise Exception("Zbar version is not what we expected")
def run(self):
p = "autovideosrc \n"
#p = "uridecodebin uri=file:///tmp/qr.png "
#p = "uridecodebin uri=file:///tmp/v.webm "
p += " ! tee name=t \n"
p += " t. ! queue ! videoconvert \n"
p += " ! zbar cache=true attach_frame=true \n"
p += " ! fakesink \n"
p += " t. ! queue ! videoconvert \n"
p += (" ! gtksink "
"sync=false "
"name=imagesink "
#"max-lateness=2000000000000 "
"enable-last-sample=false "
"\n"
)
pipeline = p
log.info("Launching pipeline %s", pipeline)
pipeline = Gst.parse_launch(pipeline)
self.imagesink = pipeline.get_by_name('imagesink')
self.gtksink_widget = self.imagesink.get_property("widget")
log.info("About to remove children from %r", self)
for child in self.get_children():
log.info("About to remove child: %r", child)
self.remove(child)
# self.gtksink_widget.set_property("expand", False)
log.info("Adding sink widget: %r", self.gtksink_widget)
#self.add(self.gtksink_widget)
self.pack_start(self.gtksink_widget, True, True, 0)
self.gtksink_widget.show()
self.pipeline = pipeline
bus = pipeline.get_bus()
bus.connect('message', self.on_message)
bus.add_signal_watch()
pipeline.set_state(Gst.State.PLAYING)
def pause(self):
self.pipeline.set_state(Gst.State.PAUSED)
def on_map(self, *args, **kwargs):
'''It seems this is called when the widget is becoming visible'''
self.run()
def on_unmap(self, *args, **kwargs):
'''Hopefully called when this widget is hidden,
e.g. when the tab of a notebook has changed'''
self.pipeline.set_state(Gst.State.PAUSED)
# Actually, we stop the thing for real
self.pipeline.set_state(Gst.State.NULL)
def do_barcode(self, barcode, message, image):
"This is called by GObject, I think"
log.debug("Emitting a barcode signal %s, %s, %r",
barcode, message, image)
class ReaderApp(Gtk.Application):
'''A simple application for scanning a bar code
It makes use of the BarcodeReaderGTK class and connects to
its on_barcode signal.
You need to have called Gst.init() before creating a
BarcodeReaderGTK.
'''
def __init__(self, *args, **kwargs):
super(ReaderApp, self).__init__(*args, **kwargs)
self.connect('activate', self.on_activate)
def on_activate(self, data=None):
window = Gtk.ApplicationWindow()
window.set_title("Gtk Gst Barcode Reader")
reader = BarcodeReaderGTK()
reader.connect('barcode', self.on_barcode)
window.add(reader)
window.show_all()
self.add_window(window)
def on_barcode(self, reader, barcode, message, image):
'''All we do is logging the decoded barcode'''
logging.info('Barcode decoded: %s', barcode)
class SimpleInterface(ReaderApp):
'''We tweak the UI of the demo ReaderApp a little'''
def on_activate(self, *args, **kwargs):
window = Gtk.ApplicationWindow()
window.set_title("Simple Barcode Reader")
window.set_default_size(400, 300)
vbox = Gtk.Box(Gtk.Orientation.HORIZONTAL, 0)
vbox.set_margin_top(3)
vbox.set_margin_bottom(3)
window.add(vbox)
reader = BarcodeReaderGTK()
reader.connect('barcode', self.on_barcode)
vbox.pack_start(reader, True, True, 0)
self.reader = reader
#self.image = Gtk.Image()
# FIXME: We could show a default image like "no barcode scanned just yet"
self.image = ScalingImage()
self.imagebox = Gtk.Box() #expand=True)
self.imagebox.add(self.image)
self.imagebox.show()
vbox.pack_end(self.imagebox, True, True, 0)
self.playButtonImage = Gtk.Image()
self.playButtonImage.set_from_stock("gtk-media-play", Gtk.IconSize.BUTTON)
self.playButton = Gtk.Button.new()
self.playButton.add(self.playButtonImage)
self.playButton.connect("clicked", self.playToggled)
vbox.pack_end(self.playButton, False, False, 0)
window.show_all()
self.add_window(window)
def playToggled(self, w):
self.reader.pause()
def on_barcode(self, reader, barcode, message, pixbuf):
log.info("Barcode!!1 %r", barcode)
# Hrm. Somehow, the Gst Widget is allocating
# space relatively aggressively. Our imagebox on
# the right side does not get any space.
#self.imagebox.remove(self.image)
#self.image = ScalingImage(pixbuf)
#self.imagebox.pack_start(self.image, True, True, 0)
#self.image.set_property('expand', True)
#self.image.show()
self.image.set_from_pixbuf(pixbuf)
# So we just show a window instead...
w = Gtk.Window()
w.add(ScalingImage(pixbuf))
w.show_all()
return False
def gst_sample_to_pixbuf(sample):
'''Converts the image from a given GstSample to a GdkPixbuf'''
caps = Gst.Caps.from_string("video/x-raw,format=RGBA")
converted_sample = GstVideo.video_convert_sample(sample, caps, Gst.CLOCK_TIME_NONE)
buffer = converted_sample.get_buffer()
pixbuf = buffer.extract_dup(0, buffer.get_size())
caps = converted_sample.get_caps()
struct = caps.get_structure(0)
colorspace = GdkPixbuf.Colorspace.RGB
alpha = True
bps = 8
width_struct = struct.get_int("width")
assert width_struct[0]
height_struct = struct.get_int("height")
assert height_struct[0]
original_width = width_struct[1]
original_height = height_struct[1]
rowstride_struct = struct.get_int("stride")
if rowstride_struct[0] == True:
# The stride information might be hidden in the struct.
# For now it doesn't work. I think it's the name of the field.
rowstride = rowstride_struct[1]
else:
rowstride = bps / 8 * 4 * original_width
gdkpixbuf = GdkPixbuf.Pixbuf.new_from_bytes(
GLib.Bytes.new_take(pixbuf),
colorspace, alpha, bps, original_width,
original_height, rowstride)
return gdkpixbuf
class ScalingImage(Gtk.DrawingArea):
def __init__(self, pixbuf=None, width=None, height=None, rowstride=None):
self.pixbuf = pixbuf
self.rowstride = rowstride or None
super(ScalingImage, self).__init__()
#self.set_property("width_request", 400)
#self.set_property("height_request", 400)
#self.set_property("margin", 10)
self.set_property("expand", True)
def set_from_pixbuf(self, pixbuf):
self.pixbuf = pixbuf
self.queue_draw()
# def do_size_allocate(self, allocation):
# log.debug("Size Allocate %r", allocation)
# log.debug("w: %r h: %r", allocation.width, allocation.height)
# self.queue_draw()
def do_draw(self, cr, pixbuf=None):
log.debug('Drawing ScalingImage! %r', self)
pixbuf = pixbuf or self.pixbuf
if not pixbuf:
log.info('No pixbuf to draw! %r', pixbuf)
else:
original_width = pixbuf.get_width()
original_height = pixbuf.get_height()
assert original_width > 0
assert original_height > 0
# Scale the pixbuf down to whatever space we have
allocation = self.get_allocation()
widget_width = allocation.width
widget_height = allocation.height
# I think we might not need this calculation
#widget_size = min(widget_width, widget_height)
log.info('Allocated size: %s, %s', widget_width, widget_height)
# Fill in background
cr.save()
#Gtk.render_background(self.get_style_context(),
# cr, 0, 0, widget_width, widget_height)
#cr.set_source_rgb(1, 1, 1)
#cr.paint()
# Centering and scaling the image to fit the widget
cr.translate(widget_width / 2.0, widget_height / 2.0)
scale = min(widget_width / float(original_width), widget_height / float(original_height))
cr.scale(scale, scale)
cr.translate(-original_width / 2.0, -original_height / 2.0)
# Note: This function is very inefficient
# (one could cache the resulting pattern or image surface)!
Gdk.cairo_set_source_pixbuf(cr, pixbuf, 0, 0)
# Should anyone want to set filters, this is the way to do it.
#pattern = cr.get_source()
#pattern.set_filter(cairo.FILTER_NEAREST)
cr.paint()
cr.restore()
return
#super(ScalingImage, self).do_draw(cr)
def main():
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG,
format='%(name)s (%(levelname)s): %(message)s')
# We need to have GStreamer initialised before creating a BarcodeReader
Gst.init(sys.argv)
app = SimpleInterface()
try:
# Exit the mainloop if Ctrl+C is pressed in the terminal.
GLib.unix_signal_add_full(GLib.PRIORITY_HIGH, signal.SIGINT, lambda *args : app.quit(), None)
except AttributeError:
# Whatever, it is only to enable Ctrl+C anyways
pass
app.run()
if __name__ == '__main__':
main()
|