@@ -18,90 +18,78 @@ http://wiki.nginx.org/HttpLuaModule
18
18
This Lua library takes advantage of ngx_lua's cosocket API, which ensures
19
19
100% nonblocking behavior.
20
20
21
- Note that at least [ ngx_lua 0.8.1] ( https://github.com/chaoslawful/lua-nginx-module/tags ) or [ ngx_openresty 1.2.1.14 ] ( http://openresty.org/#Download ) is required.
21
+ Note that at least [ ngx_lua 0.8.1] ( https://github.com/chaoslawful/lua-nginx-module/tags ) is required.
22
22
23
23
Synopsis
24
24
========
25
25
26
- lua_package_path "/path/to/lua-nginx-osm/lib/?.lua;;";
26
+ lua_package_path "/path/to/lua-nginx-osm/?.lua;;";
27
+ lua_shared_dict osm_tirex 10m; ## mandatory to use osm.tirex module
28
+ lua_socket_log_errors off;
27
29
28
30
server {
29
31
location /example {
30
32
content_by_lua '
31
- local osm_tirex = require "osm.tirex"
32
- local osm_tile = require "osm.tile"
33
+ local tirex = require "osm.tirex"
34
+ local tile = require "osm.tile"
35
+ local data = require "osm.data"
33
36
34
37
-- --------------------------------------------------
35
38
-- check uri
36
39
-- --------------------------------------------------
37
40
local uri = ngx.var.uri
38
- local x, y, z = osm_tile.get_cordination(uri, "example", ".png")
41
+ local map = 'example'
42
+ local x, y, z = tile.get_cordination(uri, map, ".png")
39
43
if not x then
40
44
return ngx.exit(ngx.HTTP_FORBIDDEN)
41
45
end
42
46
43
47
-- check x, y, z range
44
48
local max_zoom = 18
45
49
local min_zoom = 5
46
- if not osm_tile .check_integrity_xyzm(x, y, z, minz, maxz) then
50
+ if not tile .check_integrity_xyzm(x, y, z, minz, maxz) then
47
51
return ngx.exit(ngx.HTTP_FORBIDDEN)
48
52
end
49
53
50
54
-- check x, y, z supported to generate
51
- local region = " japan"
55
+ local region = data.get_region(' japan')
52
56
if not osm_tile.region_include(region, x, y, z)
53
57
return ngx.exit(ngx.HTTP_FORBIDDEN)
54
58
end
55
59
56
- -- --------------------------------------------------
57
- -- generate tile and send back it
58
- -- --------------------------------------------------
59
- local tirex = osm_tirex:new()
60
- tirex:set_timeout(1000) -- 1 sec
61
- local ok, err = tirex:connect("unix:/var/run/tirex/master.sock")
62
- if not ok then
63
- ngx.say("failed to connect: ", err)
64
- return
65
- end
66
- local map = "example"
67
- local priority = 8
68
- local id, err = tirex:enqueue (map, x, y, z, priority)
69
- if not id then
70
- ngx.say("failed to request tile generation: ", err)
71
- return
72
- end
73
-
74
- local res, err = tirex:result(id)
75
- if not res then
76
- ngx.say("failed to get result: ", err)
77
- return
78
- end
79
-
80
- if res == ngx.null then
81
- ngx.say("rendering failed.")
82
- return
60
+ -- try renderd file.
61
+ local png, err = tile.get_tile(map, x, y, z)
62
+ if png then
63
+ ngx.header.content_type = 'image/png'
64
+ ngx.print(png)
65
+ return ngx.OK
83
66
end
84
-
85
- ok, err = tirex:close()
67
+
68
+ -- ask tirex to render it
69
+ local ok = tirex.send_request(map, x, y, z)
86
70
if not ok then
87
- ngx.say("failed to close: ", err)
88
- return
71
+ return ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
89
72
end
90
-
91
- local meta = tile.xyz_to_metatile_filename(x, y, z)
92
- ok, err = tile.send_tile(meta, x, y)
93
- if not ok then
94
- ngx.say("failed to send tile:", err)
73
+
74
+ -- get tile image from metatile
75
+ local tilefile = tile.xyz_to_metatile_filename(x, y, z)
76
+ local tilepath = tirex_tilepath..'/'..map..'/'..tilefile
77
+ local png, err = osm_tile.get_tile(tilepath, x, y, z)
78
+ if png then
79
+ ngx.header.content_type = 'image/png'
80
+ ngx.print(png)
81
+ return ngx.OK
95
82
end
83
+ ngx.log(ngx.ERR, err)
84
+ return ngx.exit(ngx.HTTP_NOT_FOUND)
96
85
';
97
86
}
98
87
}
99
88
100
89
Methods
101
90
=======
102
91
103
- All of the Tirex commands have their own methods with the same name except all in lower case.
104
-
92
+ only send_request() is supported.
105
93
106
94
TODO
107
95
====
@@ -136,14 +124,12 @@ Hiroshi Miura <
[email protected] >, OpenStreetMap Foundation Japan
136
124
Copyright and License
137
125
=====================
138
126
139
- Hiroshi Miura, 2013
127
+ Hiroshi Miura, 2013
140
128
141
129
Distributed under GPLv3
142
130
143
131
See Also
144
132
========
145
133
* the ngx_lua module: http://wiki.nginx.org/HttpLuaModule
146
- * the [ lua-resty-memcached] ( https://github.com/agentzh/lua-resty-memcached ) library
147
- * the [ lua-resty-mysql] ( https://github.com/agentzh/lua-resty-mysql ) library
148
134
149
135
0 commit comments