Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shrapnel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
shrapnel
Commits
d4379310
Commit
d4379310
authored
Apr 13, 2012
by
Sam Rushing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove old httpd
parent
1b7f2617
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
11143 deletions
+0
-11143
coroutine/httpd/coro_httpd.py
coroutine/httpd/coro_httpd.py
+0
-955
coroutine/httpd/http_date.py
coroutine/httpd/http_date.py
+0
-134
coroutine/httpd/mime_type_table.py
coroutine/httpd/mime_type_table.py
+0
-113
coroutine/httpd/rfc2616.txt
coroutine/httpd/rfc2616.txt
+0
-9859
coroutine/httpd/session_handler.py
coroutine/httpd/session_handler.py
+0
-82
No files found.
coroutine/httpd/coro_httpd.py
deleted
100644 → 0
View file @
1b7f2617
This diff is collapsed.
Click to expand it.
coroutine/httpd/http_date.py
deleted
100644 → 0
View file @
1b7f2617
# -*- Mode: Python; tab-width: 4 -*-
import
re
import
string
import
time
def
concat
(
*
args
):
return
''
.
join
(
args
)
def
join
(
seq
,
field
=
' '
):
return
field
.
join
(
seq
)
def
group
(
s
):
return
'('
+
s
+
')'
short_days
=
[
'sun'
,
'mon'
,
'tue'
,
'wed'
,
'thu'
,
'fri'
,
'sat'
]
long_days
=
[
'sunday'
,
'monday'
,
'tuesday'
,
'wednesday'
,
'thursday'
,
'friday'
,
'saturday'
]
short_day_reg
=
group
(
join
(
short_days
,
'|'
))
long_day_reg
=
group
(
join
(
long_days
,
'|'
))
daymap
=
{}
for
i
in
range
(
7
):
daymap
[
short_days
[
i
]]
=
i
daymap
[
long_days
[
i
]]
=
i
hms_reg
=
join
(
3
*
[
group
(
'[0-9][0-9]'
)],
':'
)
months
=
[
'jan'
,
'feb'
,
'mar'
,
'apr'
,
'may'
,
'jun'
,
'jul'
,
'aug'
,
'sep'
,
'oct'
,
'nov'
,
'dec'
]
monmap
=
{}
for
i
in
range
(
12
):
monmap
[
months
[
i
]]
=
i
+
1
months_reg
=
group
(
join
(
months
,
'|'
))
# From draft-ietf-http-v11-spec-07.txt/3.3.1
# Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
# Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
# Sun Nov 6 08:49:37 1994 ; ANSI C's asctime() format
# rfc822 format
rfc822_date
=
join
(
[
concat
(
short_day_reg
,
','
),
# day
group
(
'[0-9][0-9]?'
),
# date
months_reg
,
# month
group
(
'[0-9]+'
),
# year
hms_reg
,
# hour minute second
'gmt'
],
' '
)
rfc822_reg
=
re
.
compile
(
rfc822_date
)
def
unpack_rfc822
(
m
):
g
=
m
.
group
a
=
string
.
atoi
return
(
a
(
g
(
4
)),
# year
monmap
[
g
(
3
)],
# month
a
(
g
(
2
)),
# day
a
(
g
(
5
)),
# hour
a
(
g
(
6
)),
# minute
a
(
g
(
7
)),
# second
0
,
0
,
0
)
# rfc850 format
rfc850_date
=
join
(
[
concat
(
long_day_reg
,
','
),
join
(
[
group
(
'[0-9][0-9]?'
),
months_reg
,
group
(
'[0-9]+'
)
],
'-'
),
hms_reg
,
'gmt'
],
' '
)
rfc850_reg
=
re
.
compile
(
rfc850_date
)
# they actually unpack the same way
def
unpack_rfc850
(
m
):
g
=
m
.
group
a
=
string
.
atoi
return
(
a
(
g
(
4
)),
# year
monmap
[
g
(
3
)],
# month
a
(
g
(
2
)),
# day
a
(
g
(
5
)),
# hour
a
(
g
(
6
)),
# minute
a
(
g
(
7
)),
# second
0
,
0
,
0
)
# parsdate.parsedate - ~700/sec.
# parse_http_date - ~1333/sec.
weekdayname
=
[
'Mon'
,
'Tue'
,
'Wed'
,
'Thu'
,
'Fri'
,
'Sat'
,
'Sun'
]
monthname
=
[
None
,
'Jan'
,
'Feb'
,
'Mar'
,
'Apr'
,
'May'
,
'Jun'
,
'Jul'
,
'Aug'
,
'Sep'
,
'Oct'
,
'Nov'
,
'Dec'
]
def
build_http_date
(
when
):
year
,
month
,
day
,
hh
,
mm
,
ss
,
wd
,
y
,
z
=
time
.
gmtime
(
when
)
return
"%s, %02d %3s %4d %02d:%02d:%02d GMT"
%
(
weekdayname
[
wd
],
day
,
monthname
[
month
],
year
,
hh
,
mm
,
ss
)
def
parse_http_date
(
d
):
d
=
string
.
lower
(
d
)
tz
=
time
.
timezone
m
=
rfc850_reg
.
match
(
d
)
try
:
if
m
and
m
.
end
()
==
len
(
d
):
retval
=
int
(
time
.
mktime
(
unpack_rfc850
(
m
))
-
tz
)
else
:
m
=
rfc822_reg
.
match
(
d
)
if
m
and
m
.
end
()
==
len
(
d
):
retval
=
int
(
time
.
mktime
(
unpack_rfc822
(
m
))
-
tz
)
else
:
return
0
return
retval
except
:
# problem in unpack or mktime failed
return
0
coroutine/httpd/mime_type_table.py
deleted
100644 → 0
View file @
1b7f2617
# -*- Python -*-
# Converted by ./convert_mime_type_table.py from:
# /usr/src2/apache_1.2b6/conf/mime.types
#
content_type_map
=
\
{
'ai'
:
'application/postscript'
,
'aif'
:
'audio/x-aiff'
,
'aifc'
:
'audio/x-aiff'
,
'aiff'
:
'audio/x-aiff'
,
'au'
:
'audio/basic'
,
'avi'
:
'video/x-msvideo'
,
'bcpio'
:
'application/x-bcpio'
,
'bin'
:
'application/octet-stream'
,
'cdf'
:
'application/x-netcdf'
,
'class'
:
'application/octet-stream'
,
'cpio'
:
'application/x-cpio'
,
'cpt'
:
'application/mac-compactpro'
,
'csh'
:
'application/x-csh'
,
'dcr'
:
'application/x-director'
,
'dir'
:
'application/x-director'
,
'dms'
:
'application/octet-stream'
,
'doc'
:
'application/msword'
,
'dvi'
:
'application/x-dvi'
,
'dxr'
:
'application/x-director'
,
'eps'
:
'application/postscript'
,
'etx'
:
'text/x-setext'
,
'exe'
:
'application/octet-stream'
,
'gif'
:
'image/gif'
,
'gtar'
:
'application/x-gtar'
,
'gz'
:
'application/x-gzip'
,
'hdf'
:
'application/x-hdf'
,
'hqx'
:
'application/mac-binhex40'
,
'htm'
:
'text/html'
,
'html'
:
'text/html'
,
'ice'
:
'x-conference/x-cooltalk'
,
'ief'
:
'image/ief'
,
'jpe'
:
'image/jpeg'
,
'jpeg'
:
'image/jpeg'
,
'jpg'
:
'image/jpeg'
,
'kar'
:
'audio/midi'
,
'latex'
:
'application/x-latex'
,
'lha'
:
'application/octet-stream'
,
'lzh'
:
'application/octet-stream'
,
'man'
:
'application/x-troff-man'
,
'me'
:
'application/x-troff-me'
,
'mid'
:
'audio/midi'
,
'midi'
:
'audio/midi'
,
'mif'
:
'application/x-mif'
,
'mov'
:
'video/quicktime'
,
'movie'
:
'video/x-sgi-movie'
,
'mp2'
:
'audio/mpeg'
,
'mpe'
:
'video/mpeg'
,
'mpeg'
:
'video/mpeg'
,
'mpg'
:
'video/mpeg'
,
'mpga'
:
'audio/mpeg'
,
'mp3'
:
'audio/mpeg'
,
'ms'
:
'application/x-troff-ms'
,
'nc'
:
'application/x-netcdf'
,
'oda'
:
'application/oda'
,
'pbm'
:
'image/x-portable-bitmap'
,
'pdb'
:
'chemical/x-pdb'
,
'pdf'
:
'application/pdf'
,
'pgm'
:
'image/x-portable-graymap'
,
'png'
:
'image/png'
,
'pnm'
:
'image/x-portable-anymap'
,
'ppm'
:
'image/x-portable-pixmap'
,
'ppt'
:
'application/powerpoint'
,
'ps'
:
'application/postscript'
,
'qt'
:
'video/quicktime'
,
'ra'
:
'audio/x-realaudio'
,
'ram'
:
'audio/x-pn-realaudio'
,
'ras'
:
'image/x-cmu-raster'
,
'rgb'
:
'image/x-rgb'
,
'roff'
:
'application/x-troff'
,
'rpm'
:
'audio/x-pn-realaudio-plugin'
,
'rtf'
:
'application/rtf'
,
'rtx'
:
'text/richtext'
,
'sgm'
:
'text/x-sgml'
,
'sgml'
:
'text/x-sgml'
,
'sh'
:
'application/x-sh'
,
'shar'
:
'application/x-shar'
,
'sit'
:
'application/x-stuffit'
,
'skd'
:
'application/x-koan'
,
'skm'
:
'application/x-koan'
,
'skp'
:
'application/x-koan'
,
'skt'
:
'application/x-koan'
,
'snd'
:
'audio/basic'
,
'src'
:
'application/x-wais-source'
,
'sv4cpio'
:
'application/x-sv4cpio'
,
'sv4crc'
:
'application/x-sv4crc'
,
't'
:
'application/x-troff'
,
'tar'
:
'application/x-tar'
,
'tcl'
:
'application/x-tcl'
,
'tex'
:
'application/x-tex'
,
'texi'
:
'application/x-texinfo'
,
'texinfo'
:
'application/x-texinfo'
,
'tif'
:
'image/tiff'
,
'tiff'
:
'image/tiff'
,
'tr'
:
'application/x-troff'
,
'tsv'
:
'text/tab-separated-values'
,
'txt'
:
'text/plain'
,
'ustar'
:
'application/x-ustar'
,
'vcd'
:
'application/x-cdlink'
,
'vrml'
:
'x-world/x-vrml'
,
'wav'
:
'audio/x-wav'
,
'wrl'
:
'x-world/x-vrml'
,
'xbm'
:
'image/x-xbitmap'
,
'xpm'
:
'image/x-xpixmap'
,
'xwd'
:
'image/x-xwindowdump'
,
'xyz'
:
'chemical/x-pdb'
,
'zip'
:
'application/zip'
,
}
coroutine/httpd/rfc2616.txt
deleted
100644 → 0
View file @
1b7f2617
This diff is collapsed.
Click to expand it.
coroutine/httpd/session_handler.py
deleted
100644 → 0
View file @
1b7f2617
# -*- Mode: Python; tab-width: 4 -*-
import
coro
import
string
import
re
import
time
h_re
=
re
.
compile
(
r'([^: ]+): (.*)'
)
def
get_header
(
header
,
headers
):
for
h
in
headers
:
m
=
h_re
.
match
(
h
)
if
m
:
name
,
value
=
m
.
groups
()
if
string
.
lower
(
name
)
==
header
:
return
value
return
None
def
extract_session
(
cookie
):
parts
=
string
.
split
(
cookie
,
';'
)
for
part
in
parts
:
pair
=
string
.
split
(
part
,
'='
)
if
len
(
pair
)
==
2
:
if
pair
[
0
]
==
'session'
:
return
pair
[
1
]
return
None
class
session_handler
:
def
__init__
(
self
,
name
,
function
):
self
.
name
=
name
self
.
function
=
function
self
.
sessions
=
{}
def
match
(
self
,
request
):
path
=
string
.
split
(
request
.
_path
,
'/'
)
if
(
len
(
path
)
>
1
)
and
(
path
[
1
]
==
self
.
name
):
return
1
else
:
return
0
def
get_next_request
(
self
):
return
coro
.
_yield
()
def
find_session
(
self
,
request
):
cookie
=
get_header
(
'cookie'
,
request
.
_request_headers
)
if
cookie
:
sid
=
extract_session
(
cookie
)
return
sid
,
self
.
sessions
.
get
(
sid
,
None
)
else
:
return
None
,
None
def
gen_session_id
(
self
):
import
random
import
sys
sid
=
None
while
self
.
sessions
.
has_key
(
sid
):
n
=
random
.
randint
(
0
,
sys
.
maxint
-
1
)
sid
=
hex
(
n
)[
2
:]
return
sid
expires_delta
=
100
*
86400
def
handle_request
(
self
,
request
):
sid
,
c
=
self
.
find_session
(
request
)
# The sid=='None' test is temporary hack, can probably remove it
if
(
not
sid
)
or
(
sid
==
'None'
):
sid
=
self
.
gen_session_id
()
if
c
and
c
.
isAlive
():
# is c already running?
# hack, must grok this
coro
.
schedule
(
c
,
request
)
request
.
_done
=
1
else
:
# login
c
=
coro
.
new
(
self
.
function
,
self
,
request
,
sid
)
# Wdy, DD-Mon-YYYY HH:MM:SS GMT
expires
=
time
.
strftime
(
'%a, %d-%b-%Y 00:00:00 GMT'
,
time
.
gmtime
(
int
(
time
.
time
())
+
self
.
expires_delta
))
request
[
'Set-Cookie'
]
=
'session=%s; path=/; expires=%s'
%
(
sid
,
expires
)
# hack, must grok this
request
.
_done
=
1
c
.
start
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment