summaryrefslogtreecommitdiff
path: root/src/flufigut.py
blob: da2e3ae7ebaec462d94d2b0467985a02db07a6bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/python
#
# flufigut
#
# flufigut, the flumotion configuration utility, is a simple tool
# that generates flumotion configuration files using pyhton jinja2 
# template engine and simplejson. flufigut generates planet.xml 
# and worker.xml files from configuration templates and an easy to
# understand representation of the flow structure written in json.
#
#
# Copyright (C) 2012 Christian Pointner <equinox@spreadspace.org>
#                    Michael Gebetsroither <michael@mgeb.org>
#
# This file is part of flufigut.
#
# flufigut is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# any later version.
#
# flufigut is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with flufigut. If not, see <http://www.gnu.org/licenses/>.
#

import string
import random
import sys
import simplejson as json
from exceptions import *
from jinja2 import Environment, FileSystemLoader

### helper functions ############################################
#
def rand_string(size=8, chars=string.ascii_lowercase + string.ascii_uppercase + string.digits):
  return ''.join(random.choice(chars) for x in range(size))

### parse json file #############################################
#
if len(sys.argv) <= 2:
  raise SystemExit("No template name and or configuration file given")

cf = open(sys.argv[2], 'r')
config = json.load(cf);
cf.close();

### initialization ##############################################
#
atmosphere = {}
flow = {}
machines = {}

### generate porter for all streamer/machines ###################
#
idx = 0
for streamer in config['streamer']:
  worker = 'streamer%i'%(idx)
  port = streamer['config']['port']
  found = False
  for machine in config['globals']['machines'].keys():
    if worker in config['globals']['machines'][machine]:
      if machine in machines:
        if 'porter' in machines[machine]:
          if port in machines[machine]['porter']:
            print "Porter: machine %s already uses port %i" % (machine, port)
            sys.exit(1)
        else:
          machines[machine]['porter'] = {}
      else:
        machines[machine] = { 'porter': {} }
        
      found = True
      machines[machine]['porter'][port] = {
        'socket-path': "porter%i-%s"%(idx, rand_string()),
        'username': rand_string(size=12),
        'password': rand_string(size=12),
        }
      
      atmosphere['porter-%s-%i'%(machine, port)] = { 
        'type': "porter",
        'desc': "Porter for %s on port %i"%(machine, port), 
        'worker': worker, 
        'properties': {
          'port': port,
          'socket-path': machines[machine]['porter'][port]['socket-path'],
          'username': machines[machine]['porter'][port]['username'],
          'password': machines[machine]['porter'][port]['password'],
          },
        }
  if not found:
    print "Streamer %i has no machine assigned" % (idx)
    sys.exit(1)
  idx+=1

### generate input components ###################################
flow['input'] = {}

flow['input']['raw-input'] = {
  'type': config['input']['source'],
  'desc': "Raw AV input from %s" % config['input']['source'],
  'worker': 'input',
  'properties': {},
  }
for property in config['input'].keys():
  if property == 'samplerate':
    flow['input']['raw-input']['properties'][property] = config['input']['samplerate']
  elif property == 'resolution':
    flow['input']['raw-input']['properties']['width'] = config['globals']['resolutions'][config['input'][property]]['width']
    flow['input']['raw-input']['properties']['height'] = config['globals']['resolutions'][config['input'][property]]['height']
    flow['input']['raw-input']['properties']['framerate'] = config['globals']['resolutions'][config['input'][property]]['rate']
  elif property != 'source':
    flow['input']['raw-input']['properties'][property] = config['input'][property]

### generate encoder components #################################
flow['encoder'] = {}

# TODO

### generate muxer components ###################################
flow['muxer'] = {}

# TODO

### generate streamer components ################################
flow['streamer'] = {}

# TODO

### initialize and render templates #############################
#
env = Environment(loader=FileSystemLoader('../templates/%s/' % (sys.argv[1])), line_statement_prefix = '%%')
template = env.get_template('planet.xml')
planet = template.render(globals=config['globals'], atmosphere=atmosphere, flow=flow)

sys.stdout.write(planet.encode("utf8"))

### end #########################################################