123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- -------------------------------------------------
- -- 本文件由代码生成器自动生成,
- -- 千万不要修改本文件的任何代码,
- -- 修改的的任何代码都会被覆盖掉!
- ----------------------------------------------------
- local Socket = require "Xmds.Pomelo.LuaGameSocket"
- require "base64"
- require "mailHandler_pb"
- --------------------------------Pomelo-------------------------------
- Pomelo = Pomelo or {}
- --------------------------------MailHandler-------------------------------
- Pomelo.MailHandler = {}
- local function mailGetAllRequestEncoder(msg)
- local input = mailHandler_pb.MailGetAllRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailGetAllRequestDecoder(stream)
- local res = mailHandler_pb.MailGetAllResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailGetAllRequest(cb,option)
- local input = nil
- Socket.OnRequestStart("area.mailHandler.mailGetAllRequest", option)
- Socket.Request("area.mailHandler.mailGetAllRequest", input, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailGetAllResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailGetAllRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailGetAllRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailGetAllRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailGetAllRequestEncoder, mailGetAllRequestDecoder)
- end
- local function mailSendMailRequestEncoder(msg)
- local input = mailHandler_pb.MailSendMailRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailSendMailRequestDecoder(stream)
- local res = mailHandler_pb.MailSendMailResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailSendMailRequest(toPlayerId,mailTitle,mailText,mailRead,toPlayerName,cb,option)
- local msg = {}
- msg.toPlayerId = toPlayerId
- msg.mailTitle = mailTitle
- msg.mailText = mailText
- msg.mailRead = mailRead
- msg.toPlayerName = toPlayerName
- Socket.OnRequestStart("area.mailHandler.mailSendMailRequest", option)
- Socket.Request("area.mailHandler.mailSendMailRequest", msg, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailSendMailResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailSendMailRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailSendMailRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailSendMailRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailSendMailRequestEncoder, mailSendMailRequestDecoder)
- end
- local function mailDeleteRequestEncoder(msg)
- local input = mailHandler_pb.MailDeleteRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailDeleteRequestDecoder(stream)
- local res = mailHandler_pb.MailDeleteResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailDeleteRequest(c2s_id,cb,option)
- local msg = {}
- msg.c2s_id = c2s_id
- Socket.OnRequestStart("area.mailHandler.mailDeleteRequest", option)
- Socket.Request("area.mailHandler.mailDeleteRequest", msg, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailDeleteResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailDeleteRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailDeleteRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailDeleteRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailDeleteRequestEncoder, mailDeleteRequestDecoder)
- end
- local function mailDeleteOneKeyRequestEncoder(msg)
- local input = mailHandler_pb.MailDeleteOneKeyRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailDeleteOneKeyRequestDecoder(stream)
- local res = mailHandler_pb.MailDeleteOneKeyResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailDeleteOneKeyRequest(cb,option)
- local input = nil
- Socket.OnRequestStart("area.mailHandler.mailDeleteOneKeyRequest", option)
- Socket.Request("area.mailHandler.mailDeleteOneKeyRequest", input, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailDeleteOneKeyResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailDeleteOneKeyRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailDeleteOneKeyRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailDeleteOneKeyRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailDeleteOneKeyRequestEncoder, mailDeleteOneKeyRequestDecoder)
- end
- local function mailGetAttachmentRequestEncoder(msg)
- local input = mailHandler_pb.MailGetAttachmentRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailGetAttachmentRequestDecoder(stream)
- local res = mailHandler_pb.MailGetAttachmentResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailGetAttachmentRequest(c2s_id,cb,option)
- local msg = {}
- msg.c2s_id = c2s_id
- Socket.OnRequestStart("area.mailHandler.mailGetAttachmentRequest", option)
- Socket.Request("area.mailHandler.mailGetAttachmentRequest", msg, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailGetAttachmentResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailGetAttachmentRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailGetAttachmentRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailGetAttachmentRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailGetAttachmentRequestEncoder, mailGetAttachmentRequestDecoder)
- end
- local function mailGetAttachmentOneKeyRequestEncoder(msg)
- local input = mailHandler_pb.MailGetAttachmentOneKeyRequest()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- local function mailGetAttachmentOneKeyRequestDecoder(stream)
- local res = mailHandler_pb.MailGetAttachmentOneKeyResponse()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.mailGetAttachmentOneKeyRequest(cb,option)
- local input = nil
- Socket.OnRequestStart("area.mailHandler.mailGetAttachmentOneKeyRequest", option)
- Socket.Request("area.mailHandler.mailGetAttachmentOneKeyRequest", input, function(res)
- if(res.s2c_code == 200) then
- Pomelo.MailHandler.lastMailGetAttachmentOneKeyResponse = res
- Socket.OnRequestEnd("area.mailHandler.mailGetAttachmentOneKeyRequest", true)
- cb(nil,res)
- else
- local ex = {}
- if(res.s2c_code) then
- ex.Code = res.s2c_code
- ex.Message = res.s2c_msg
- else
- ex.Code = 501
- ex.Message = "[LuaXmdsNetClient] area.mailHandler.mailGetAttachmentOneKeyRequest decode error!!"
- end
- Socket.OnRequestEnd("area.mailHandler.mailGetAttachmentOneKeyRequest", false,ex.Code,ex.Message)
- cb(ex,nil)
- end
- end, mailGetAttachmentOneKeyRequestEncoder, mailGetAttachmentOneKeyRequestDecoder)
- end
- local function mailReadNotifyEncoder(msg)
- local input = mailHandler_pb.MailReadNotify()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- function Pomelo.MailHandler.mailReadNotify(c2s_id)
- local msg = {}
- msg.c2s_id = c2s_id
- Socket.Notify("area.mailHandler.mailReadNotify", msg, mailReadNotifyEncoder)
- end
- local function mailSendTestNotifyEncoder(msg)
- local input = mailHandler_pb.MailSendTestNotify()
- protobuf.FromMessage(input,msg)
- return (input:SerializeToString())
- end
- function Pomelo.MailHandler.mailSendTestNotify(c2s_mailId,c2s_tcCode)
- local msg = {}
- msg.c2s_mailId = c2s_mailId
- msg.c2s_tcCode = c2s_tcCode
- Socket.Notify("area.mailHandler.mailSendTestNotify", msg, mailSendTestNotifyEncoder)
- end
- local function onGetMailPushDecoder(stream)
- local res = mailHandler_pb.OnGetMailPush()
- res:ParseFromString(stream)
- return res
- end
- function Pomelo.MailHandler.onGetMailPush(cb)
- Socket.On("area.mailPush.onGetMailPush", function(res)
- Pomelo.MailHandler.lastOnGetMailPush = res
- cb(nil,res)
- end, onGetMailPushDecoder)
- end
- --------------------------------Pomelo-------------------------------
- return Pomelo
|