Mercurial > hg > MakeItSo
annotate makeitso/template.py @ 70:cb00c011ff45
why do we care if they have templates or not?
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Fri, 07 Jan 2011 16:31:28 -0800 | 
| parents | a75138a952d0 | 
| children | 95d1bb85ab3c | 
| rev | line source | 
|---|---|
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
1 """ | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
2 basic API template class | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
3 """ | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
4 | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
5 import os | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
6 import sys | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
7 from makeitso import ContentTemplate | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
8 from makeitso import PolyTemplate | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
9 | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
10 class Undefined(object): | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
11 """marker class for variables""" | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
12 def __nonzero__(self): | 
| 
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
13 return False | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
14 Undefined = Undefined() # singleton | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
15 | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
16 class Variable(object): | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
17 """variable object for MakeItSo templates""" | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
18 | 
| 
58
 
112bf081148c
make a full CLI class for a single API template
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
56 
diff
changeset
 | 
19 def __init__(self, name, description=None, default=Undefined, | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
20 cast=None): | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
21 self.name = name | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
22 self.default = default | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
23 self.description = description | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
24 | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
25 # TODO (maybe): get cast from default variable type if not None | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
26 self.cast = cast | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
27 | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
28 self._set = False | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
29 | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
30 def set(self, value): | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
31 if self.cast: | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
32 self.value = self.cast(value) | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
33 else: | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
34 self.value = value | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
35 self._set = True | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
36 | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
37 def read(self, fd=sys.stdout): | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
38 """prompt and read the variable from stdin""" | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
39 fd.write(self.display()) | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
40 self.set(raw_input()) | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
41 | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
42 def display(self): | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
43 description = self.description or self.name | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
44 if self.default: | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
45 return 'Enter %s [DEFAULT: %s]:' % (description, repr(self.default)) | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
46 else: | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
47 return 'Enter %s:' % description | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
48 | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
49 class MakeItSoTemplate(ContentTemplate): | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
50 """API template for MakeItSo""" | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
51 | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
52 # name of the template | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
53 name = '' | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
54 | 
| 
56
 
728cae02a6ed
* fix another variable-related bug
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
44 
diff
changeset
 | 
55 # description of the template | 
| 
 
728cae02a6ed
* fix another variable-related bug
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
44 
diff
changeset
 | 
56 description = '' | 
| 
 
728cae02a6ed
* fix another variable-related bug
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
44 
diff
changeset
 | 
57 | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
58 # templates to interpolate | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
59 # paths are relative to __file__ unless absolute or URIs | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
60 templates = [] | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
61 | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
62 # variables | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
63 vars = [] | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
64 | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
65 # inspect the templates for more variables | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
66 look = False | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
67 | 
| 
58
 
112bf081148c
make a full CLI class for a single API template
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
56 
diff
changeset
 | 
68 def __init__(self, output=None, interactive=True, usedefaults=True, | 
| 
 
112bf081148c
make a full CLI class for a single API template
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
56 
diff
changeset
 | 
69 variables=None): | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
70 """ | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
71 - output : output file or directory | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
72 - interactive : whether tointeractively get variables | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
73 - usedefaults : try to use the default values if not specified | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
74 """ | 
| 
63
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
75 | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
76 # boilerplate | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
77 variables = variables or {} | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
78 self.output = output | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
79 self.interactive = interactive | 
| 
66
 
7821c82772f5
determine the location in a better way
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
65 
diff
changeset
 | 
80 _file = sys.modules[self.__class__.__module__].__file__ | 
| 
 
7821c82772f5
determine the location in a better way
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
65 
diff
changeset
 | 
81 self.location = os.path.dirname(os.path.abspath(_file)) | 
| 
58
 
112bf081148c
make a full CLI class for a single API template
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
56 
diff
changeset
 | 
82 self.defaults = variables.copy() | 
| 
63
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
83 self.usedefaults = usedefaults | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
84 | 
| 
58
 
112bf081148c
make a full CLI class for a single API template
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
56 
diff
changeset
 | 
85 # make a dictionary of the variables for lookup convenience | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
86 self.vardict = {} | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
87 for i in self.vars: | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
88 self.vardict[i.name] = i | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
89 | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
90 # ensure all of these templates exist | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
91 self._templates = [] | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
92 for template in self.templates: | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
93 if template.startswith('http://') or template.startswith('https://'): | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
94 self._templates.append(template) | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
95 continue | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
96 if os.path.isabs(template): | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
97 path = template | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
98 else: | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
99 path = os.path.join(self.location, template) | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
100 assert os.path.exists(path), "%s does not exist" % path | 
| 
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
101 self._templates.append(path) | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
102 | 
| 
63
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
103 def get_variables(self, **variables): | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
104 # XXX could do this in the ctor | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
105 vars = ContentTemplate.get_variables(self, **variables) | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
106 if self.usedefaults: | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
107 for variable in self.vars: | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
108 if variable.name in vars: | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
109 continue | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
110 if variable.default is not Undefined: | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
111 vars[variable.name] = variable.default | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
112 return vars | 
| 
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
113 | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
114 def missing(self, **variables): | 
| 
63
 
b91133e3b02d
override get_variables for API template; could instead do this in the ctor, alternately
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
62 
diff
changeset
 | 
115 vars = self.get_variables(**variables) | 
| 
62
 
30100690ad3f
display defaults with command line --help option
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
58 
diff
changeset
 | 
116 missing = set([]) | 
| 64 | 117 | 
| 118 # get known needed variables | |
| 119 for var in self.vars: | |
| 120 if var.name not in vars: | |
| 121 missing.add(var) | |
| 122 | |
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
123 if self.look: | 
| 64 | 124 # scan templates for other variables | 
| 125 raise NotImplementedError | |
| 126 | |
| 127 return missing | |
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
128 | 
| 
69
 
a75138a952d0
using **kw doesnt update the actual dict; fix this
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
67 
diff
changeset
 | 
129 def pre(self, variables): | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
130 """do stuff before interpolation""" | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
131 | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
132 def substitute(self, **variables): | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
133 """do the substitution""" | 
| 
65
 
0152741621c1
check in a failing test wrt location
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
64 
diff
changeset
 | 
134 | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
135 vars = self.get_variables(**variables) | 
| 
69
 
a75138a952d0
using **kw doesnt update the actual dict; fix this
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
67 
diff
changeset
 | 
136 self.pre(vars) | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
137 self.check_missing(vars) | 
| 64 | 138 | 
| 139 # do the substitution | |
| 
67
 
a0f7bfa98755
API templates now hobble along on their own two feet
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
66 
diff
changeset
 | 
140 template = PolyTemplate(self._templates, | 
| 
 
a0f7bfa98755
API templates now hobble along on their own two feet
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
66 
diff
changeset
 | 
141 output=self.output, | 
| 
 
a0f7bfa98755
API templates now hobble along on their own two feet
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
66 
diff
changeset
 | 
142 interactive=self.interactive, | 
| 
 
a0f7bfa98755
API templates now hobble along on their own two feet
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
66 
diff
changeset
 | 
143 variables=vars) | 
| 
 
a0f7bfa98755
API templates now hobble along on their own two feet
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
66 
diff
changeset
 | 
144 template.substitute() | 
| 64 | 145 | 
| 
69
 
a75138a952d0
using **kw doesnt update the actual dict; fix this
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
67 
diff
changeset
 | 
146 self.post(vars) | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
147 | 
| 
69
 
a75138a952d0
using **kw doesnt update the actual dict; fix this
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
67 
diff
changeset
 | 
148 def post(self, variables): | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
149 """do stuff after interpolation""" | 
| 
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
150 | 
| 
44
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
151 def read_variables(self, variables): | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
152 """read variables from stdin""" | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
153 retval = {} | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
154 for i in variables: | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
155 if i in self.vardict: | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
156 self.vardict[i].read() | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
157 else: | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
158 retval.update(ContentTemplate.read_variables(self, (i,))) | 
| 
 
6e08cca7d656
do API variable reading and stubbing a bit for control flow
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
42 
diff
changeset
 | 
159 return retval | 
| 
41
 
9956e13558dd
stub out what API templates will look like; put these in a separate file as theres no reason to clutter up the command line entry point any further
 
Jeff Hammel <jhammel@mozilla.com> 
parents:  
diff
changeset
 | 
160 | 
| 
42
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
161 class PasteScriptTemplate(MakeItSoTemplate): | 
| 
 
73dac34d2692
more stubbing of API class; first get something off the ground; then rewrite
 
Jeff Hammel <jhammel@mozilla.com> 
parents: 
41 
diff
changeset
 | 
162 """template for backwards compatability with PasteScript""" | 
