mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 00:31:03 +00:00
Geo: GEOPOS command and tests.
This commit is contained in:
parent
f6edd0cb93
commit
aae0a1f9cc
33
src/geo.c
33
src/geo.c
@ -709,3 +709,36 @@ void geoHashCommand(redisClient *c) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* GEOPOS key ele1 ele2 ... eleN
|
||||||
|
*
|
||||||
|
* Returns an array of two-items arrays representing the x,y position of each
|
||||||
|
* element specified in the arguments. For missing elements NULL is returned. */
|
||||||
|
void geoposCommand(redisClient *c) {
|
||||||
|
int j;
|
||||||
|
|
||||||
|
/* Look up the requested zset */
|
||||||
|
robj *zobj = NULL;
|
||||||
|
if ((zobj = lookupKeyReadOrReply(c, c->argv[1], shared.emptymultibulk))
|
||||||
|
== NULL || checkType(c, zobj, REDIS_ZSET)) return;
|
||||||
|
|
||||||
|
/* Report elements one after the other, using a null bulk reply for
|
||||||
|
* missing elements. */
|
||||||
|
addReplyMultiBulkLen(c,c->argc-2);
|
||||||
|
for (j = 2; j < c->argc; j++) {
|
||||||
|
double score;
|
||||||
|
if (zsetScore(zobj, c->argv[j], &score) == REDIS_ERR) {
|
||||||
|
addReply(c,shared.nullmultibulk);
|
||||||
|
} else {
|
||||||
|
/* Decode... */
|
||||||
|
double xy[2];
|
||||||
|
if (!decodeGeohash(score,xy)) {
|
||||||
|
addReply(c,shared.nullmultibulk);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
addReplyMultiBulkLen(c,2);
|
||||||
|
addReplyDouble(c,xy[0]);
|
||||||
|
addReplyDouble(c,xy[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -288,6 +288,7 @@ struct redisCommand redisCommandTable[] = {
|
|||||||
{"geoencode",geoEncodeCommand,-3,"r",0,NULL,0,0,0,0,0},
|
{"geoencode",geoEncodeCommand,-3,"r",0,NULL,0,0,0,0,0},
|
||||||
{"geodecode",geoDecodeCommand,2,"r",0,NULL,0,0,0,0,0},
|
{"geodecode",geoDecodeCommand,2,"r",0,NULL,0,0,0,0,0},
|
||||||
{"geohash",geoHashCommand,-2,"r",0,NULL,0,0,0,0,0},
|
{"geohash",geoHashCommand,-2,"r",0,NULL,0,0,0,0,0},
|
||||||
|
{"geopos",geoposCommand,-2,"r",0,NULL,0,0,0,0,0},
|
||||||
{"pfselftest",pfselftestCommand,1,"r",0,NULL,0,0,0,0,0},
|
{"pfselftest",pfselftestCommand,1,"r",0,NULL,0,0,0,0,0},
|
||||||
{"pfadd",pfaddCommand,-2,"wmF",0,NULL,1,1,1,0,0},
|
{"pfadd",pfaddCommand,-2,"wmF",0,NULL,1,1,1,0,0},
|
||||||
{"pfcount",pfcountCommand,-2,"r",0,NULL,1,1,1,0,0},
|
{"pfcount",pfcountCommand,-2,"r",0,NULL,1,1,1,0,0},
|
||||||
|
@ -1564,6 +1564,7 @@ void geoRadiusByMemberCommand(redisClient *c);
|
|||||||
void geoRadiusCommand(redisClient *c);
|
void geoRadiusCommand(redisClient *c);
|
||||||
void geoAddCommand(redisClient *c);
|
void geoAddCommand(redisClient *c);
|
||||||
void geoHashCommand(redisClient *c);
|
void geoHashCommand(redisClient *c);
|
||||||
|
void geoposCommand(redisClient *c);
|
||||||
void pfselftestCommand(redisClient *c);
|
void pfselftestCommand(redisClient *c);
|
||||||
void pfaddCommand(redisClient *c);
|
void pfaddCommand(redisClient *c);
|
||||||
void pfcountCommand(redisClient *c);
|
void pfcountCommand(redisClient *c);
|
||||||
|
@ -92,6 +92,23 @@ start_server {tags {"geo"}} {
|
|||||||
lindex [r geohash points test] 0
|
lindex [r geohash points test] 0
|
||||||
} {ezs42e44yx0}
|
} {ezs42e44yx0}
|
||||||
|
|
||||||
|
test {GEOPOS simple} {
|
||||||
|
r del points
|
||||||
|
r geoadd points 10 20 a 30 40 b
|
||||||
|
lassign [lindex [r geopos points a b] 0] x1 y1
|
||||||
|
lassign [lindex [r geopos points a b] 1] x2 y2
|
||||||
|
assert {abs($x1 - 10) < 0.001}
|
||||||
|
assert {abs($y1 - 20) < 0.001}
|
||||||
|
assert {abs($x2 - 30) < 0.001}
|
||||||
|
assert {abs($y2 - 40) < 0.001}
|
||||||
|
}
|
||||||
|
|
||||||
|
test {GEOPOS missing element} {
|
||||||
|
r del points
|
||||||
|
r geoadd points 10 20 a 30 40 b
|
||||||
|
lindex [r geopos points a x b] 1
|
||||||
|
} {}
|
||||||
|
|
||||||
test {GEOADD + GEORANGE randomized test} {
|
test {GEOADD + GEORANGE randomized test} {
|
||||||
set attempt 10
|
set attempt 10
|
||||||
while {[incr attempt -1]} {
|
while {[incr attempt -1]} {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user