Created
December 30, 2015 08:45
-
-
Save pegasuskim/7a353ffcbcaf17e27c7c to your computer and use it in GitHub Desktop.
rabbitmq handler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by pegasuskim on 2015-12-07. | |
*/ | |
'use strict'; | |
var amqp = require('amqplib/callback_api'); | |
var async = require('async'); | |
function RabbitMQ(config) { | |
this.queues = config; | |
this.connection = {}; | |
this.connect(); | |
}; | |
RabbitMQ.prototype.connect = function() { | |
var self = this; | |
Object.keys(self.queues).forEach(function(queueName) { | |
var queue = self.queues[queueName]; | |
amqp.connect(queue.host, function(error, conn) { | |
if(conn){ | |
self.connection[queueName] = conn; | |
console.log('[%d] rabbitmq %s connect host', process.pid, queueName); | |
}else{ | |
console.log('[%s] rabbitmq connect error msg: %s', queueName, error); | |
} | |
}); | |
}) | |
}; | |
RabbitMQ.prototype.publish = function(qname, data, option, callback) { | |
var self = this; | |
async.waterfall([ | |
function checkConnect(callback) { | |
var conn = self.connection[qname]; | |
var error = null; | |
if(conn === null || conn === undefined) { | |
error = new Error('RabbitMQ Connect error'); | |
} | |
callback( error, conn ); | |
}, | |
function createChannel(conn, callback) { | |
conn.createChannel(function(error, channel) { | |
callback( error, channel ); | |
}); | |
}, | |
function assertQueue(channel, callback) { | |
channel.assertQueue(qname, {durable: true, exclusive: false}, function(error, ok) { | |
callback( error, ok, channel ); | |
}); | |
}, | |
function sendToQueue(ok, channel, callback) { | |
var strData = JSON.stringify(data); | |
var error = null; | |
console.log('[%d] send to %s data : %s', process.pid, qname, strData); | |
if( !data.method ) | |
console.log('[%d] method : %s', process.pid, strData ); | |
channel.sendToQueue(qname, new Buffer(strData), option); | |
channel.close(); | |
callback( error, null ); | |
} | |
], | |
function done(error, result) { | |
if( error ) { console.log('[%d] Queue(%s) error : %s', process.pid, qname, error.message); } | |
if( typeof callback === 'function' ) { | |
return callback( error, result ); | |
} | |
}); | |
}; | |
RabbitMQ.prototype.consume = function(qname, option, callback) { | |
}; | |
RabbitMQ.prototype.close = function(qname) { | |
if( this.connection[qname] ) { | |
this.connection[qname].close(); | |
this.connection[qname] = null; | |
} | |
}; | |
module.exports = RabbitMQ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment