1 | #!/usr/bin/python
|
---|
2 | import sys,os
|
---|
3 | import cgi
|
---|
4 | #cgi debug
|
---|
5 | import cgitb; cgitb.enable()
|
---|
6 |
|
---|
7 | from simpletal import simpleTAL, simpleTALES
|
---|
8 |
|
---|
9 | from obsconfig import *
|
---|
10 |
|
---|
11 | tmppath = os.path.join(asapmonhome,"tmp/")
|
---|
12 | tmppath = os.path.join(asapmonrel,"tmp/")
|
---|
13 |
|
---|
14 | # a redirection object for stdout/stderr
|
---|
15 | class WritableObject:
|
---|
16 | def __init__(self):
|
---|
17 | self.content = []
|
---|
18 | def write(self, string):
|
---|
19 | self.content.append(string)
|
---|
20 |
|
---|
21 | logsink = WritableObject()
|
---|
22 | logsink2 = WritableObject()
|
---|
23 | sys.stdout = logsink
|
---|
24 | sys.stderr = logsink2
|
---|
25 | import asap
|
---|
26 | asap.rc('scantable', storage="memory")
|
---|
27 | sys.stdout = sys.__stdout__
|
---|
28 | sys.stderr = sys.__stderr__
|
---|
29 |
|
---|
30 | def resetstd():
|
---|
31 | sys.stdout = sys.__stdout__
|
---|
32 | sys.stderr = sys.__stderr__
|
---|
33 |
|
---|
34 |
|
---|
35 | class myForm:
|
---|
36 | def __init__(self):
|
---|
37 | self.fields = {}
|
---|
38 | self.form = cgi.FieldStorage()
|
---|
39 | self.context = simpleTALES.Context(allowPythonPath=1)
|
---|
40 | self.logsink = WritableObject()
|
---|
41 |
|
---|
42 | def decodePath(self):
|
---|
43 | pi = self.fields['cdir']
|
---|
44 | fi = self.fields['cfile']
|
---|
45 | p = observatory['rpfpath'][pi]
|
---|
46 | from filelist import FileList
|
---|
47 | fl = FileList(pi)
|
---|
48 | if fl.error:
|
---|
49 | return None
|
---|
50 | out = []
|
---|
51 | for i in fi:
|
---|
52 | out.append(os.path.join(p,fl.files[i]))
|
---|
53 | return out
|
---|
54 |
|
---|
55 | def decodeWindow(self,window):
|
---|
56 | if not len(window.strip()): return None,None
|
---|
57 | x = window.split(",")
|
---|
58 | return [float(x[0].strip()), float(x[1].strip())]
|
---|
59 |
|
---|
60 | def decodeWindows(self, window):
|
---|
61 | import re
|
---|
62 | p = re.compile("(\\[*\d+\\.*\d*,\d+\\.*\d*\\]*)")
|
---|
63 | r = re.compile("[\\[\\]]")
|
---|
64 | return [self.decodeWindow(re.sub(r, '', s)) for s in re.findall(p, window)]
|
---|
65 |
|
---|
66 | def setDefaultFields(self):
|
---|
67 | self.fields['directories'] = observatory['rpfpath']
|
---|
68 | self.fields['cdir'] = len(self.fields['directories'])-1
|
---|
69 | from filelist import FileList
|
---|
70 | files = []
|
---|
71 | fl = FileList(len(observatory['rpfpath'])-1)
|
---|
72 | if not fl.error:
|
---|
73 | self.fields['files'] = fl.files
|
---|
74 | self.fields['cfile'] = len(fl.files)-1
|
---|
75 | self.fields['restfreqs'] = observatory['lines'].keys()
|
---|
76 | self.fields['border'] = range(10)
|
---|
77 | self.fields['imagename'] = ""
|
---|
78 | self.fields['cunit'] = 0
|
---|
79 | self.fields['units'] = ["channel", "km/s", "GHz"]
|
---|
80 | self.fields['baseline'] = 0
|
---|
81 | self.fields['cpolyorder'] = 0
|
---|
82 | self.fields['quotient'] = 0
|
---|
83 | self.fields['average'] = 0
|
---|
84 | self.fields['doppler'] = "RADIO"
|
---|
85 | self.fields['frame'] = "LSRK"
|
---|
86 | self.fields['restn'] = [11, 1]
|
---|
87 | self.fields['stokes'] = 0
|
---|
88 | self.fields['summary'] = ""
|
---|
89 | self.fields['bin'] = 0
|
---|
90 | self.fields['brangewindow'] = ""
|
---|
91 | self.fields['nif'] = []
|
---|
92 | self.fields['sourcenames'] = []
|
---|
93 | self.fields['csource'] = ""
|
---|
94 |
|
---|
95 |
|
---|
96 | def getFormFields(self):
|
---|
97 | self.fields['cunit'] = int(self.form.getfirst("unit", 0))
|
---|
98 | self.fields['frame'] = self.form.getfirst("frame", "TOPO")
|
---|
99 | self.fields['doppler'] = self.form.getfirst("doppler", "RADIO")
|
---|
100 | self.fields['restn'] = []
|
---|
101 |
|
---|
102 | self.fields['plotwindow'] = self.form.getfirst("plotwindow", "")
|
---|
103 | self.fields['baseline'] = int(self.form.has_key("baseline"))
|
---|
104 | self.fields['cpolyorder'] = int(self.form.getfirst("polyorder", 0))
|
---|
105 | self.fields['quotient'] = int(self.form.has_key("quotient"))
|
---|
106 | self.fields['doppler'] = self.form.getfirst("doppler", "RADIO")
|
---|
107 | self.fields['frame'] = self.form.getfirst("frame", "LSRK")
|
---|
108 | self.fields['cdir'] = int(self.form.getfirst("dlist", None))
|
---|
109 | self.fields['cfile'] = [int(k) for k in self.form.getlist("list")]
|
---|
110 | self.fields['average'] = int(self.form.has_key("average"))
|
---|
111 | self.fields['stokes'] = int(self.form.has_key("stokes"))
|
---|
112 | self.fields['bin'] = int(self.form.has_key("bin"))
|
---|
113 | self.fields['debug'] = ""#self.fields['restn']
|
---|
114 | self.fields['csource'] = self.form.getfirst("csource", "")
|
---|
115 |
|
---|
116 | def getRest(self):
|
---|
117 | alllines = observatory['lines'].values()
|
---|
118 | lines = []
|
---|
119 | for i in self.fields['restn']:
|
---|
120 | lines.append(alllines[i])
|
---|
121 | return lines
|
---|
122 |
|
---|
123 | def plotForm(self):
|
---|
124 | self.getFormFields()
|
---|
125 | # decode file location
|
---|
126 | from filelist import FileList
|
---|
127 | fl = FileList(self.fields['cdir'])
|
---|
128 | self.fields['files'] = fl.files
|
---|
129 | files = self.decodePath()
|
---|
130 | # catch all stdout/err
|
---|
131 | sys.stdout = logsink
|
---|
132 | sys.stderr = logsink2
|
---|
133 | try:
|
---|
134 | s = asap.scantable(files)
|
---|
135 | outscans = None
|
---|
136 | self.fields['nif'] = range(s.nif())
|
---|
137 | for i in self.fields['nif']:
|
---|
138 | name = "rest%d" % i
|
---|
139 | self.fields['restn'].append(int(self.form.getfirst(name, 0)))
|
---|
140 | restfs = self.getRest()
|
---|
141 |
|
---|
142 | # source name selection
|
---|
143 | import re
|
---|
144 | srcnames = s.get_sourcename()
|
---|
145 | for i in srcnames:
|
---|
146 | # only add the names once
|
---|
147 | i = not i in self.fields['sourcenames'] and i
|
---|
148 | if i:
|
---|
149 | # filter off scans
|
---|
150 | i = not re.search(re.compile("_[R, e, w]$"), i) and i
|
---|
151 | if i:
|
---|
152 | self.fields['sourcenames'].append(i)
|
---|
153 | # form quotient
|
---|
154 | if self.form.has_key("quotient"):
|
---|
155 | s = s.auto_quotient()
|
---|
156 | # get source by name
|
---|
157 | cs = self.fields['csource']
|
---|
158 | if len(cs) > 0:
|
---|
159 | if cs in self.fields['sourcenames']:
|
---|
160 | ss = s.get_scan(self.fields['csource'])
|
---|
161 | if isinstance(ss, asap.scantable):
|
---|
162 | s = ss
|
---|
163 | del ss
|
---|
164 | else:
|
---|
165 | # get only the last source in the table if not averaging
|
---|
166 | # This doesn't work anymore, but works on the command-line??
|
---|
167 | # Use explict selection
|
---|
168 | #s = s.get_scan(str(self.fields['sourcenames'][-1]))
|
---|
169 | sel = asap.selector()
|
---|
170 | sel.set_name(str(self.fields['sourcenames'][-1]))
|
---|
171 | s.set_selection(sel)
|
---|
172 | s = s.copy()
|
---|
173 | self.fields['csource'] = s.get_sourcename()[-1]
|
---|
174 | if self.fields['cunit'] == 1:
|
---|
175 | s.set_restfreqs(restfs, unit="GHz")
|
---|
176 | s.set_unit(self.fields['units'][self.fields['cunit']])
|
---|
177 | s.set_freqframe(self.form.getfirst("frame", "LSRK"))
|
---|
178 | s.set_doppler(self.form.getfirst("doppler", "RADIO"))
|
---|
179 |
|
---|
180 | # baseline
|
---|
181 | if self.form.has_key('baseline'):
|
---|
182 | order = self.fields['cpolyorder']
|
---|
183 | brstr = self.form.getfirst('brangewindow','').strip()
|
---|
184 | # auto baseline or user window
|
---|
185 | if brstr:
|
---|
186 | self.fields['brangewindow'] = brstr
|
---|
187 | brange = self.decodeWindows(brstr)
|
---|
188 | if len(brange):
|
---|
189 | self.fields['brangewindow'] = brstr
|
---|
190 | m = s.create_mask(brange)
|
---|
191 | s.poly_baseline(mask=m, order=order)
|
---|
192 | else:
|
---|
193 | s.auto_poly_baseline(order=order)
|
---|
194 | outscans = None
|
---|
195 |
|
---|
196 | if self.fields['average']:
|
---|
197 | outscans = s.average_time(weight='tsys')
|
---|
198 | else:
|
---|
199 | outscans = s
|
---|
200 | del s
|
---|
201 |
|
---|
202 | if self.fields['bin']:
|
---|
203 | outscans.bin()
|
---|
204 |
|
---|
205 | self.fields['summary'] = str(outscans)
|
---|
206 | asap.rcParams['plotter.decimate'] = True
|
---|
207 | asap.rcParams['plotter.ganged'] = False
|
---|
208 | from matplotlib import rcParams as rcp
|
---|
209 | rcp['xtick.labelsize'] = 8
|
---|
210 | rcp['ytick.labelsize'] = 8
|
---|
211 | rcp['axes.labelsize'] = 8
|
---|
212 | rcp['axes.titlesize'] = 12
|
---|
213 | rcp['figure.subplot.wspace'] = 0.3
|
---|
214 | rcp['figure.subplot.hspace'] = 0.3
|
---|
215 | #del asap.plotter
|
---|
216 | # plotter without GUI
|
---|
217 | asap.plotter = asap.asapplotter(False)
|
---|
218 | if outscans.nif() > 1:
|
---|
219 | asap.plotter.set_mode("p", "i")
|
---|
220 | else:
|
---|
221 | if outscans.npol() > 2:
|
---|
222 | asap.plotter.set_mode("t", "p")
|
---|
223 | else:
|
---|
224 | asap.plotter.set_mode("p", "t")
|
---|
225 | asap.plotter.plot(outscans)
|
---|
226 | if self.fields['stokes']:
|
---|
227 | pols = "I"
|
---|
228 | if outscans.npol() > 2:
|
---|
229 | pols += " Q U V"
|
---|
230 | sel = asap.selector()
|
---|
231 | sel.set_polarisations(pols)
|
---|
232 | asap.plotter.set_selection(sel)
|
---|
233 | x0, x1 = self.decodeWindow(self.fields['plotwindow'])
|
---|
234 | asap.plotter.set_range(x0, x1)
|
---|
235 | imname = tmppath+"plot.png"
|
---|
236 | asap.plotter.save(imname, dpi=96)
|
---|
237 | self.fields['imagename'] = tmploc+"plot.png"
|
---|
238 | except RuntimeError, e:
|
---|
239 | self.fields['debug'] = e
|
---|
240 | return
|
---|
241 |
|
---|
242 |
|
---|
243 | def buildContext (self, title):
|
---|
244 | self.context.addGlobal("fields", self.fields)
|
---|
245 | self.context.addGlobal("title", title)
|
---|
246 |
|
---|
247 | def expandTemplate (self, templateName):
|
---|
248 | sys.stdout.write ("Content-Type: text/html\n")
|
---|
249 | sys.stdout.write ("\n")
|
---|
250 | # Expand the template and print it out
|
---|
251 | templateFile = open(templateName, 'r')
|
---|
252 | template = simpleTAL.compileHTMLTemplate(templateFile)
|
---|
253 | templateFile.close()
|
---|
254 | # Expand the template as HTML using this context
|
---|
255 | template.expand(self.context, sys.stdout)
|
---|
256 | sys.exit(0)
|
---|
257 |
|
---|
258 | def main(self):
|
---|
259 | self.setDefaultFields()
|
---|
260 | title = "ASAP %s Online Monitor" % (observatory['name'])
|
---|
261 | tmplname = asapmonhome+"asapmon.html.template"
|
---|
262 | if ( self.form.has_key("plot")):
|
---|
263 | self.plotForm()
|
---|
264 | self.buildContext(title)
|
---|
265 | resetstd()
|
---|
266 | #os.system('rm -rf /var/www/asapmon/tmp/.matplotlib')
|
---|
267 | self.expandTemplate(tmplname)
|
---|
268 |
|
---|
269 |
|
---|
270 | f = myForm()
|
---|
271 | f.main()
|
---|