projects
/
vpproxy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Добавлен поток ogg без ограничения скорости (префикс /ogv и /m3uo для списка).
[vpproxy.git]
/
vphttp.py
diff --git
a/vphttp.py
b/vphttp.py
index 5237f21098a660841323c08a88e36fba00a5b883..155db57e8a739b03e35927112d76df419053c83d 100644
(file)
--- a/
vphttp.py
+++ b/
vphttp.py
@@
-9,8
+9,9
@@
import traceback
import gevent
import gevent.monkey
# Monkeypatching and all the stuff
import gevent
import gevent.monkey
# Monkeypatching and all the stuff
-
gevent.monkey.patch_all()
gevent.monkey.patch_all()
+# Startup delay for daemon restart
+gevent.sleep(5)
import glob
import os
import signal
import glob
import os
import signal
@@
-26,6
+27,7
@@
import hashlib
import vpconfig
from vpconfig import VPConfig
import vlcclient
import vpconfig
from vpconfig import VPConfig
import vlcclient
+import gc
import plugins.modules.ipaddr as ipaddr
from clientcounter import ClientCounter
from plugins.modules.PluginInterface import VPProxyPlugin
import plugins.modules.ipaddr as ipaddr
from clientcounter import ClientCounter
from plugins.modules.PluginInterface import VPProxyPlugin
@@
-163,7
+165,7
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
self.reqtype = self.splittedpath[1].lower()
# If first parameter is 'pid' or 'torrent' or it should be handled
# by plugin
self.reqtype = self.splittedpath[1].lower()
# If first parameter is 'pid' or 'torrent' or it should be handled
# by plugin
- if not (self.reqtype in ('get','mp4') or self.reqtype in VPStuff.pluginshandlers):
+ if not (self.reqtype in ('get','mp4'
,'ogg','ogv'
) or self.reqtype in VPStuff.pluginshandlers):
self.dieWithError(400) # 400 Bad Request
return
except IndexError:
self.dieWithError(400) # 400 Bad Request
return
except IndexError:
@@
-186,7
+188,6
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def handleRequest(self, headers_only):
# Limit concurrent connections
def handleRequest(self, headers_only):
# Limit concurrent connections
- print VPStuff.clientcounter.total
if 0 < VPConfig.maxconns <= VPStuff.clientcounter.total:
logger.debug("Maximum connections reached, can't serve this")
self.dieWithError(503) # 503 Service Unavailable
if 0 < VPConfig.maxconns <= VPStuff.clientcounter.total:
logger.debug("Maximum connections reached, can't serve this")
self.dieWithError(503) # 503 Service Unavailable
@@
-235,7
+236,11
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
logger.debug(
"Sending fake headers for " + useragent)
self.send_response(200)
logger.debug(
"Sending fake headers for " + useragent)
self.send_response(200)
- self.send_header("Content-Type", "video/mpeg")
+ self.send_header('Cache-Control','no-cache');
+ if self.reqtype in ("ogg","ogv"):
+ self.send_header("Content-Type", "video/ogg")
+ else:
+ self.send_header("Content-Type", "video/mpeg")
self.end_headers()
# Do not send real headers at all
self.headerssent = True
self.end_headers()
# Do not send real headers at all
self.headerssent = True
@@
-256,7
+261,7
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
else:
self.vlcprefix = ''
else:
self.vlcprefix = ''
- logger.
debug("Ready to start broadcast...."
)
+ logger.
info("Starting broadcasting "+self.path
)
VPStuff.vlcclient.startBroadcast(
self.vlcid, self.vlcprefix + self.path_unquoted, VPConfig.vlcmux, VPConfig.vlcpreaccess, self.reqtype)
# Sleep a bit, because sometimes VLC doesn't open port in
VPStuff.vlcclient.startBroadcast(
self.vlcid, self.vlcprefix + self.path_unquoted, VPConfig.vlcmux, VPConfig.vlcpreaccess, self.reqtype)
# Sleep a bit, because sometimes VLC doesn't open port in
@@
-291,7
+296,14
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
for key in self.video.info().dict:
self.send_header(key, self.video.info().dict[key])
for key in self.video.info().dict:
self.send_header(key, self.video.info().dict[key])
- self.send_header("Content-Type", "video/mpeg")
+
+ self.send_header('Cache-Control','no-cache');
+
+ if self.reqtype=="ogg":
+ self.send_header("Content-Type", "video/ogg")
+ else:
+ self.send_header("Content-Type", "video/mpeg")
+
# End headers. Next goes video data
self.end_headers()
logger.debug("Headers sent")
# End headers. Next goes video data
self.end_headers()
logger.debug("Headers sent")
@@
-317,15
+329,21
@@
class HTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
self.dieWithError()
finally:
logger.debug("END REQUEST")
self.dieWithError()
finally:
logger.debug("END REQUEST")
+ logger.info("Closed connection from " + self.clientip + " path " + self.path)
VPStuff.clientcounter.delete(self.reqtype+'\\'+self.path_unquoted, self.clientip)
if not VPStuff.clientcounter.get(self.reqtype+'\\'+self.path_unquoted):
try:
logger.debug("That was the last client, destroying VPClient")
VPStuff.clientcounter.delete(self.reqtype+'\\'+self.path_unquoted, self.clientip)
if not VPStuff.clientcounter.get(self.reqtype+'\\'+self.path_unquoted):
try:
logger.debug("That was the last client, destroying VPClient")
+ logger.info("Stopping broadcasting " + self.path)
VPStuff.vlcclient.stopBroadcast(self.vlcid)
except:
pass
self.vp.destroy()
VPStuff.vlcclient.stopBroadcast(self.vlcid)
except:
pass
self.vp.destroy()
-
+ if not self.headersent:
+ logger.error("Problem receiving video stream, no headers!")
+ if VPStuff.clientcounter.total == 0:
+ logger.error("Probably VLC hang")
+ VPStuff.vlc.kill()
class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
@@
-392,6
+410,7
@@
for i in pluginslist:
continue
logger.debug('Plugin loaded: ' + plugname)
for j in plugininstance.handlers:
continue
logger.debug('Plugin loaded: ' + plugname)
for j in plugininstance.handlers:
+ logger.info("Registering handler '" + j +"'")
VPStuff.pluginshandlers[j] = plugininstance
VPStuff.pluginlist.append(plugininstance)
VPStuff.pluginshandlers[j] = plugininstance
VPStuff.pluginlist.append(plugininstance)