Added MacOS X addapter and corresponding example.
Added MacOS X support via CoreFoundation run loop.
This commit is contained in:
parent
4a632a6038
commit
c18a564818
3
Makefile
3
Makefile
@ -99,6 +99,9 @@ hiredis-example-glib: examples/example-glib.c adapters/glib.h $(STLIBNAME)
|
|||||||
hiredis-example-ivykis: examples/example-ivykis.c adapters/ivykis.h $(STLIBNAME)
|
hiredis-example-ivykis: examples/example-ivykis.c adapters/ivykis.h $(STLIBNAME)
|
||||||
$(CC) -o examples/$@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I. $< -livykis $(STLIBNAME)
|
$(CC) -o examples/$@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I. $< -livykis $(STLIBNAME)
|
||||||
|
|
||||||
|
hiredis-example-macosx: examples/example-macosx.c adapters/macosx.h $(STLIBNAME)
|
||||||
|
$(CC) -o examples/$@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I. $< -framework CoreFoundation $(STLIBNAME)
|
||||||
|
|
||||||
ifndef AE_DIR
|
ifndef AE_DIR
|
||||||
hiredis-example-ae:
|
hiredis-example-ae:
|
||||||
@echo "Please specify AE_DIR (e.g. <redis repository>/src)"
|
@echo "Please specify AE_DIR (e.g. <redis repository>/src)"
|
||||||
|
114
adapters/macosx.h
Normal file
114
adapters/macosx.h
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
//
|
||||||
|
// Created by Дмитрий Бахвалов on 13.07.15.
|
||||||
|
// Copyright (c) 2015 Dmitry Bakhvalov. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef __HIREDIS_MACOSX_H__
|
||||||
|
#define __HIREDIS_MACOSX_H__
|
||||||
|
|
||||||
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
|
||||||
|
#include "../hiredis.h"
|
||||||
|
#include "../async.h"
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
redisAsyncContext *context;
|
||||||
|
CFSocketRef socketRef;
|
||||||
|
CFRunLoopSourceRef sourceRef;
|
||||||
|
} RedisRunLoop;
|
||||||
|
|
||||||
|
static int freeRedisRunLoop(RedisRunLoop* redisRunLoop) {
|
||||||
|
if( redisRunLoop != NULL ) {
|
||||||
|
if( redisRunLoop->sourceRef != NULL ) {
|
||||||
|
CFRunLoopSourceInvalidate(redisRunLoop->sourceRef);
|
||||||
|
CFRelease(redisRunLoop->sourceRef);
|
||||||
|
}
|
||||||
|
if( redisRunLoop->socketRef != NULL ) {
|
||||||
|
CFSocketInvalidate(redisRunLoop->socketRef);
|
||||||
|
CFRelease(redisRunLoop->socketRef);
|
||||||
|
}
|
||||||
|
free(redisRunLoop);
|
||||||
|
}
|
||||||
|
return REDIS_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSAddRead(void *privdata) {
|
||||||
|
RedisRunLoop *redisRunLoop = (RedisRunLoop*)privdata;
|
||||||
|
CFSocketEnableCallBacks(redisRunLoop->socketRef, kCFSocketReadCallBack);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSDelRead(void *privdata) {
|
||||||
|
RedisRunLoop *redisRunLoop = (RedisRunLoop*)privdata;
|
||||||
|
CFSocketDisableCallBacks(redisRunLoop->socketRef, kCFSocketReadCallBack);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSAddWrite(void *privdata) {
|
||||||
|
RedisRunLoop *redisRunLoop = (RedisRunLoop*)privdata;
|
||||||
|
CFSocketEnableCallBacks(redisRunLoop->socketRef, kCFSocketWriteCallBack);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSDelWrite(void *privdata) {
|
||||||
|
RedisRunLoop *redisRunLoop = (RedisRunLoop*)privdata;
|
||||||
|
CFSocketDisableCallBacks(redisRunLoop->socketRef, kCFSocketWriteCallBack);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSCleanup(void *privdata) {
|
||||||
|
RedisRunLoop *redisRunLoop = (RedisRunLoop*)privdata;
|
||||||
|
freeRedisRunLoop(redisRunLoop);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void redisMacOSAsyncCallback(CFSocketRef __unused s, CFSocketCallBackType callbackType, CFDataRef __unused address, const void __unused *data, void *info) {
|
||||||
|
redisAsyncContext* context = (redisAsyncContext*) info;
|
||||||
|
|
||||||
|
switch (callbackType) {
|
||||||
|
case kCFSocketReadCallBack:
|
||||||
|
redisAsyncHandleRead(context);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kCFSocketWriteCallBack:
|
||||||
|
redisAsyncHandleWrite(context);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int redisMacOSAttach(redisAsyncContext *redisAsyncCtx, CFRunLoopRef runLoop) {
|
||||||
|
redisContext *redisCtx = &(redisAsyncCtx->c);
|
||||||
|
|
||||||
|
/* Nothing should be attached when something is already attached */
|
||||||
|
if( redisAsyncCtx->ev.data != NULL ) return REDIS_ERR;
|
||||||
|
|
||||||
|
RedisRunLoop* redisRunLoop = (RedisRunLoop*) calloc(1, sizeof(RedisRunLoop));
|
||||||
|
if( !redisRunLoop ) return REDIS_ERR;
|
||||||
|
|
||||||
|
/* Setup redis stuff */
|
||||||
|
redisRunLoop->context = redisAsyncCtx;
|
||||||
|
|
||||||
|
redisAsyncCtx->ev.addRead = redisMacOSAddRead;
|
||||||
|
redisAsyncCtx->ev.delRead = redisMacOSDelRead;
|
||||||
|
redisAsyncCtx->ev.addWrite = redisMacOSAddWrite;
|
||||||
|
redisAsyncCtx->ev.delWrite = redisMacOSDelWrite;
|
||||||
|
redisAsyncCtx->ev.cleanup = redisMacOSCleanup;
|
||||||
|
redisAsyncCtx->ev.data = redisRunLoop;
|
||||||
|
|
||||||
|
/* Initialize and install read/write events */
|
||||||
|
CFSocketContext socketCtx = { 0, redisAsyncCtx, NULL, NULL, NULL };
|
||||||
|
|
||||||
|
redisRunLoop->socketRef = CFSocketCreateWithNative(NULL, redisCtx->fd,
|
||||||
|
kCFSocketReadCallBack | kCFSocketWriteCallBack,
|
||||||
|
redisMacOSAsyncCallback,
|
||||||
|
&socketCtx);
|
||||||
|
if( !redisRunLoop->socketRef ) return freeRedisRunLoop(redisRunLoop);
|
||||||
|
|
||||||
|
redisRunLoop->sourceRef = CFSocketCreateRunLoopSource(NULL, redisRunLoop->socketRef, 0);
|
||||||
|
if( !redisRunLoop->sourceRef ) return freeRedisRunLoop(redisRunLoop);
|
||||||
|
|
||||||
|
CFRunLoopAddSource(runLoop, redisRunLoop->sourceRef, kCFRunLoopDefaultMode);
|
||||||
|
|
||||||
|
return REDIS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
66
examples/example-macosx.c
Normal file
66
examples/example-macosx.c
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
//
|
||||||
|
// Created by Дмитрий Бахвалов on 13.07.15.
|
||||||
|
// Copyright (c) 2015 Dmitry Bakhvalov. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include <hiredis.h>
|
||||||
|
#include <async.h>
|
||||||
|
#include <adapters/macosx.h>
|
||||||
|
|
||||||
|
void getCallback(redisAsyncContext *c, void *r, void *privdata) {
|
||||||
|
redisReply *reply = r;
|
||||||
|
if (reply == NULL) return;
|
||||||
|
printf("argv[%s]: %s\n", (char*)privdata, reply->str);
|
||||||
|
|
||||||
|
/* Disconnect after receiving the reply to GET */
|
||||||
|
redisAsyncDisconnect(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
void connectCallback(const redisAsyncContext *c, int status) {
|
||||||
|
if (status != REDIS_OK) {
|
||||||
|
printf("Error: %s\n", c->errstr);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
printf("Connected...\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void disconnectCallback(const redisAsyncContext *c, int status) {
|
||||||
|
if (status != REDIS_OK) {
|
||||||
|
printf("Error: %s\n", c->errstr);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
CFRunLoopStop(CFRunLoopGetCurrent());
|
||||||
|
printf("Disconnected...\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
int main (int argc, char **argv) {
|
||||||
|
signal(SIGPIPE, SIG_IGN);
|
||||||
|
|
||||||
|
CFRunLoopRef loop = CFRunLoopGetCurrent();
|
||||||
|
if( !loop ) {
|
||||||
|
printf("Error: Cannot get current run lopp\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379);
|
||||||
|
if (c->err) {
|
||||||
|
/* Let *c leak for now... */
|
||||||
|
printf("Error: %s\n", c->errstr);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
redisMacOSAttach(c, loop);
|
||||||
|
|
||||||
|
redisAsyncSetConnectCallback(c,connectCallback);
|
||||||
|
redisAsyncSetDisconnectCallback(c,disconnectCallback);
|
||||||
|
|
||||||
|
redisAsyncCommand(c, NULL, NULL, "SET key %b", argv[argc-1], strlen(argv[argc-1]));
|
||||||
|
redisAsyncCommand(c, getCallback, (char*)"end-1", "GET key");
|
||||||
|
|
||||||
|
CFRunLoopRun();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user