Skip to content

Commit dd67428

Browse files
committed
Merge pull request #1 from miurahr/tirex-socket-fix
Tirex socket fix and performance imrovement.
2 parents 814897f + 2b5709e commit dd67428

20 files changed

+191
-111
lines changed

README.md

+46-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ lua-nginx-osm - Lua Tirex client driver for the ngx_lua based on the cosocket AP
66
Status
77
======
88

9-
This library is considered experimental status.
9+
Current version is 0.20, 3, June, 2013.
10+
This library is considered active development status.
1011

1112
Description
1213
===========
@@ -21,14 +22,18 @@ This Lua library takes advantage of ngx_lua's cosocket API, which ensures
2122
It also includes utility to handle metatile, URIs in Lua language.
2223
These utility is not depend on nginx, means pure lua implementation.
2324

24-
Note that at least [ngx_lua 0.8.1](https://github.com/chaoslawful/lua-nginx-module/tags) is required.
25+
Note that at least [ngx_lua 0.7.20](https://github.com/chaoslawful/lua-nginx-module/tags) is required
26+
and tested on [ngx_lua 0.8.1](https://github.com/chaoslawful/lua-nginx-module/tags).
27+
28+
If you use Ubuntu Linux 12.04 (LTS) and after, there is a PPA(private package archive) for you.
29+
http://launchpad.net/~osmjapan/ppa
30+
Please see the above page for detail instructions.
2531

2632
Synopsis
2733
========
2834

2935
lua_package_path "/path/to/lua-nginx-osm/?.lua;;";
3036
lua_shared_dict osm_tirex 10m; ## mandatory to use osm.tirex module
31-
lua_socket_log_errors off;
3237

3338
server {
3439
location /example {
@@ -166,6 +171,35 @@ send_request
166171
Request enqueue command to rendering map 'map' with x/y/z cordination.
167172
If request fails return nil.
168173

174+
It is obsolete (0.10) interface.
175+
176+
enqueue_request
177+
-------------
178+
179+
**syntax:** *result = osm.tirex.enqueue_request(map, x, y, z, priority)*
180+
181+
Request enqueue command to rendering map 'map' with x/y/z cordination and
182+
priority.
183+
If request fails return nil.
184+
185+
186+
dequeue_request
187+
-------------
188+
189+
**syntax:** *result = osm.tirex.dequeue_request(map, x, y, z, priority)*
190+
191+
Request dequeue command to rendering map 'map' with x/y/z cordination and
192+
priority.
193+
If request fails return nil.
194+
195+
196+
ping_request
197+
-------------
198+
199+
**syntax:** *result = osm.tirex.ping_request()*
200+
201+
Request ping command. If request fails return nil.
202+
169203

170204
TODO
171205
====
@@ -206,6 +240,13 @@ Please report bugs or submit patches by
206240

207241
1. creating a ticket on the [GitHub Issue Tracker](http://github.com/miurahr/lua-nginx-osm/issues),
208242

243+
1. There are known problem that Tirex cannot response properly so we need to patch to tirex.
244+
245+
https://trac.openstreetmap.org/ticket/4869
246+
247+
If you use Tirex 0.4.1(original) or tirex-0.4.1ppa4 and below, you need to patch to tirex.
248+
Here is a patch file in misc/tirex-peer.diff.
249+
209250
Author
210251
======
211252

@@ -215,8 +256,9 @@ Copyright and License
215256
=====================
216257

217258
Hiroshi Miura, 2013
259+
OpenStreetMap Foundation Japan, 2013
218260

219-
Distributed under GPLv3
261+
Distributed under GPLv3 License.
220262

221263
See Also
222264
========

debian/backup

Whitespace-only changes.

debian/changelog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
lua-nginx-osm (0.20-1) precise; urgency=low
2+
3+
* New version: fix tirex socket problem.
4+
5+
-- Hiroshi Miura <[email protected]> Sun, 02 Jun 2013 17:35:25 +0900
6+
7+
lua-nginx-osm (0.19-1) precise; urgency=low
8+
9+
* remove Tirex buf workaround
10+
* test for 0.20 version
11+
12+
-- Hiroshi Miura <[email protected]> Sun, 02 Jun 2013 14:46:07 +0900
13+
114
lua-nginx-osm (0.10-2) precise; urgency=low
215

316
* Add tirex dependency
File renamed without changes.

doc/alps.kml doc/regions/alps.kml

File renamed without changes.
File renamed without changes.
File renamed without changes.

doc/asia.kml doc/regions/asia.kml

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

misc/tirex-peer.diff

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
diff --git a/lib/Tirex/Source/Command.pm b/lib/Tirex/Source/Command.pm
2+
index a653af4..b00d95f 100644
3+
--- a/lib/Tirex/Source/Command.pm
4+
+++ b/lib/Tirex/Source/Command.pm
5+
@@ -10,6 +10,7 @@ use warnings;
6+
use Carp;
7+
8+
use IO::Socket;
9+
+use IO::Socket::UNIX;
10+
11+
#-----------------------------------------------------------------------------
12+
package Tirex::Source::Command;
13+
@@ -53,6 +54,7 @@ sub readable
14+
15+
my $buf;
16+
my $peer = $sock->recv($buf, $Tirex::MAX_PACKET_SIZE);
17+
+ $self->{'peer'} = $peer;
18+
my $args = Tirex::parse_msg($buf);
19+
20+
foreach (keys %$args) { $self->{$_} = $args->{$_}; };
21+
@@ -162,8 +164,9 @@ sub reply
22+
my $msg = shift;
23+
24+
$msg->{'id'} = $self->{'id'} if (defined $self->{'id'});
25+
+ my $peer = $self->{'peer'};
26+
27+
- return $self->{'socket'}->send( Tirex::create_msg($msg) );
28+
+ return $self->{'socket'}->send( Tirex::create_msg($msg), 0, $peer );
29+
}
30+
31+
sub name

0 commit comments

Comments
 (0)