summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/wsgi/composite.py
blob: 3d55aeb0ab9b6ba5901fae684345e97b138cbde5 (plain)
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
#!/usr/bin/python
#  Licensed to the Apache Software Foundation (ASF) under one
#  or more contributor license agreements.  See the NOTICE file
#  distributed with this work for additional information
#  regarding copyright ownership.  The ASF licenses this file
#  to you under the Apache License, Version 2.0 (the
#  "License"); you may not use this file except in compliance
#  with the License.  You may obtain a copy of the License at
#  
#    http://www.apache.org/licenses/LICENSE-2.0
#    
#  Unless required by applicable law or agreed to in writing,
#  software distributed under the License is distributed on an
#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
#  KIND, either express or implied.  See the License for the
#  specific language governing permissions and limitations
#  under the License.

# Composite deployment and integration with WSGI

from wsgiref.simple_server import make_server
from wsgiref.handlers import CGIHandler
from os import environ
from sys import stderr, argv
from util import *
from scdl import *

def requestPath(e):
    return e.get("PATH_INFO", "")

def requestMethod(e):
    return e.get("REQUEST_METHOD", "")

def contentType(ct):
    if ct == None:
        return []
    return [("Content-type", ct)]

def status(st):
    if st == 200:
        return "200 OK"
    if st == 404:
        return "404 Not Found"
    if st == 201:
        return "201 Created"
    return "500 Internal Server Error"

def result(r, st, ct = None, b = ()):
    r(status(st), contentType(ct))
    return b

# WSGI application function
def application(e, r):

    # Read the deployed composite
    comps = components(parse("domain-test.composite"))
    print >> stderr, comps
    
    # Find the requested component
    path = tokens(requestPath(e))
    uc = uriToComponent(path, comps)
    uri = car(uc)
    if uri == None:
        return result(r, 404)
    comp =  cadr(uc)
    mod = __import__(cadr(comp))
    
    # Call the requested component function
    id = path[len(uri):]
    print >> stderr, id
    m = requestMethod(e)
    if (m == "GET"):
        v = mod.get(id)
        print >> stderr, v
        
        # write returned content-type / content pair
        if not isinstance(cadr(v), basestring):
            return result(r, 200, car(v), cadr(v))
        
        # TODO write an ATOM feed or entry
        if nil(id):
            return result(r, 200, "application/atom+xml;type=feed", ("Atom feed"))
        return result(r, 200, "application/atom+xml;type=entry", ("Atom entry"))

    if m == "DELETE":
        v = mod.delete(id)
        if v == False:
            return result(r, 404)
        return result(r, 200)
    
    # TODO implement POST and PUT methods
    return result(r, 500)

def serverType(e):
    return e.get("SERVER_SOFTWARE", "")

# Run the WSGI application
if __name__ == "__main__":
    st = serverType(environ)
    if st == "":
        make_server("", int(argv[1]), application).serve_forever()
    else:
        CGIHandler().run(application)