Statistics
| Branch: | Tag: | Revision:

root / devel / webserver @ 1a732a74

History | View | Annotate | Download (1.6 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2013 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
import sys
22
import BaseHTTPServer
23
import SimpleHTTPServer
24

    
25

    
26
def main():
27
  if len(sys.argv) == 2:
28
    host = "127.0.0.1"
29

    
30
    (_, port) = sys.argv
31

    
32
  elif len(sys.argv) == 3:
33
    (_, port, host) = sys.argv
34

    
35
  else:
36
    sys.stderr.write("Usage: %s <port> [<host>]\n" % sys.argv[0])
37
    sys.stderr.write("\n")
38
    sys.stderr.write("Provides an HTTP server on the specified TCP port")
39
    sys.stderr.write(" exporting the current working directory. Binds to")
40
    sys.stderr.write(" localhost by default.\n")
41
    sys.exit(1)
42

    
43
  try:
44
    port = int(port)
45
  except (ValueError, TypeError), err:
46
    sys.stderr.write("Invalid port '%s': %s\n" % (port, err))
47
    sys.exit(1)
48

    
49
  handler = SimpleHTTPServer.SimpleHTTPRequestHandler
50

    
51
  server = BaseHTTPServer.HTTPServer((host, port), handler)
52
  server.serve_forever()
53

    
54

    
55
if __name__ == "__main__":
56
  main()