sqlmap/extra/beep/beep.py

105 lines
2.8 KiB
Python
Raw Normal View History

2019-03-28 18:04:38 +03:00
#!/usr/bin/env python
2012-12-11 15:02:06 +04:00
"""
beep.py - Make a beep sound
2024-01-04 01:11:52 +03:00
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2012-12-11 15:02:06 +04:00
"""
import os
import sys
import wave
BEEP_WAV_FILENAME = os.path.join(os.path.dirname(__file__), "beep.wav")
def beep():
try:
2019-09-09 12:45:23 +03:00
if sys.platform.startswith("win"):
2012-12-11 15:02:06 +04:00
_win_wav_play(BEEP_WAV_FILENAME)
2019-09-09 12:45:23 +03:00
elif sys.platform.startswith("darwin"):
2012-12-11 15:02:06 +04:00
_mac_beep()
2019-09-09 12:45:23 +03:00
elif sys.platform.startswith("cygwin"):
_cygwin_beep(BEEP_WAV_FILENAME)
elif any(sys.platform.startswith(_) for _ in ("linux", "freebsd")):
2012-12-11 15:02:06 +04:00
_linux_wav_play(BEEP_WAV_FILENAME)
else:
_speaker_beep()
except:
2012-12-11 15:02:06 +04:00
_speaker_beep()
def _speaker_beep():
sys.stdout.write('\a') # doesn't work on modern Linux systems
try:
sys.stdout.flush()
except IOError:
pass
2019-09-09 12:45:23 +03:00
# Reference: https://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00815.html
def _cygwin_beep(filename):
os.system("play-sound-file '%s' 2>/dev/null" % filename)
2012-12-11 15:02:06 +04:00
def _mac_beep():
import Carbon.Snd
Carbon.Snd.SysBeep(1)
def _win_wav_play(filename):
import winsound
winsound.PlaySound(filename, winsound.SND_FILENAME)
def _linux_wav_play(filename):
2015-07-24 13:11:12 +03:00
for _ in ("aplay", "paplay", "play"):
if not os.system("%s '%s' 2>/dev/null" % (_, filename)):
return
2012-12-11 15:02:06 +04:00
import ctypes
PA_STREAM_PLAYBACK = 1
PA_SAMPLE_S16LE = 3
BUFFSIZE = 1024
class struct_pa_sample_spec(ctypes.Structure):
_fields_ = [("format", ctypes.c_int), ("rate", ctypes.c_uint32), ("channels", ctypes.c_uint8)]
2019-09-09 12:45:23 +03:00
try:
pa = ctypes.cdll.LoadLibrary("libpulse-simple.so.0")
except OSError:
return
2012-12-11 15:02:06 +04:00
wave_file = wave.open(filename, "rb")
pa_sample_spec = struct_pa_sample_spec()
pa_sample_spec.rate = wave_file.getframerate()
pa_sample_spec.channels = wave_file.getnchannels()
pa_sample_spec.format = PA_SAMPLE_S16LE
error = ctypes.c_int(0)
pa_stream = pa.pa_simple_new(None, filename, PA_STREAM_PLAYBACK, None, "playback", ctypes.byref(pa_sample_spec), None, None, ctypes.byref(error))
if not pa_stream:
raise Exception("Could not create pulse audio stream: %s" % pa.strerror(ctypes.byref(error)))
while True:
2013-02-22 20:34:53 +04:00
latency = pa.pa_simple_get_latency(pa_stream, ctypes.byref(error))
2012-12-11 15:02:06 +04:00
if latency == -1:
raise Exception("Getting latency failed")
buf = wave_file.readframes(BUFFSIZE)
if not buf:
break
2013-02-22 20:34:53 +04:00
if pa.pa_simple_write(pa_stream, buf, len(buf), ctypes.byref(error)):
2012-12-11 15:02:06 +04:00
raise Exception("Could not play file")
wave_file.close()
2013-02-22 20:34:53 +04:00
if pa.pa_simple_drain(pa_stream, ctypes.byref(error)):
2012-12-11 15:02:06 +04:00
raise Exception("Could not simple drain")
pa.pa_simple_free(pa_stream)
if __name__ == "__main__":
beep()