5 import lib.utils as utils
6 import lib.server as server
8 from select import select
10 def _setup_mythfilename(self):
11 # mythtv:mythtv@192.168.3.110:6543/1002_20070426230000.nuv
13 _mysql = self.args["input"].split("@")[0].split(":")
15 _mysql = ["mythtv", "mythtv"]
18 _args = self.args["input"].split("@")[1].split(":")
20 _args = self.args["input"].split(":")
23 gmyth_dict["mysql"] = _mysql
24 gmyth_dict["backend"] = _args[0]
25 gmyth_dict["port"] = _args[1].split("/", 1)[0]
27 _tmp_file = _args[1].split("/", 1)[1]
29 if _tmp_file.find("channel") >= 0:
30 gmyth_dict["kind"] = "c"
31 gmyth_dict["cfile"] = _tmp_file.split("=")[1]
33 gmyth_dict["kind"] = "f"
34 gmyth_dict["cfile"] = _tmp_file
36 self.args["input"] = "-"
40 def _setup_mythfile(err):
41 size = err.readline().split("Size:")[1]
42 flags = fcntl.fcntl (err, fcntl.F_GETFL, 0) | os.O_NONBLOCK
43 fcntl.fcntl(err, fcntl.F_SETFL, flags)
47 def _setup_gmythcat(self):
48 gmyth_cat = utils.which("gmyth-cat")
49 if self.args.has_key("gmyth-cat"):
50 return [ utils.which("gmyth-cat"),
51 "-h", self.args["gmyth-cat"]["backend"],
52 "-p", self.args["gmyth-cat"]["port"],
53 "-" + self.args["gmyth-cat"]["kind"],
54 self.args["gmyth-cat"]["cfile"]
57 self.log.error(self.tid, "Error: URI error")
61 def start_myth(self, outfd):
62 opts = _setup_gmythcat(self)
64 self.gmyth = subprocess.Popen(opts, stdout=subprocess.PIPE,
65 stderr=subprocess.PIPE,
68 self.log.error(self.tid, "Error: gmyth-cat: %s" % e)
71 if not self._run_mencoder(input=self.gmyth.stdout,
72 output=subprocess.PIPE):
75 if self.args["gmyth-cat"]["kind"] == "f":
77 size = _setup_mythfile(self.gmyth.stderr)
78 self.log.debug(self.tid, "Info: Size of file: %s" % size)
80 self.log.error(self.tid, "Error: Problems getting size of"\
85 while self.proc and self.proc.poll() == None:
86 r, w, x = select([self.gmyth.stderr, self.proc.stdout],
88 if self.proc.stdout in r:
89 d = self.proc.stdout.read(4096)
92 if self.gmyth.stderr in r:
93 partial = self.gmyth.stderr.read(50).split("\n")[-2]
95 self.status = utils.progress_bar(int(partial),
101 self.log.error(self.tid, "Error: %s" % e)
104 self.log.info(self.tid, "OK: Done")