2009-02-17 00:27:28 +00:00
|
|
|
/*
|
2012-04-25 17:14:55 -05:00
|
|
|
* Copyright (c) 2007-2012, Anthony Minessale II
|
2009-02-17 00:27:28 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of the original author; nor the names of any contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ESL_OOP_H_
|
|
|
|
#define _ESL_OOP_H_
|
|
|
|
#include <esl.h>
|
|
|
|
#ifdef __cplusplus
|
2009-03-11 20:51:44 +00:00
|
|
|
extern "C" {
|
2009-02-17 00:27:28 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define this_check(x) do { if (!this) { esl_log(ESL_LOG_ERROR, "object is not initalized\n"); return x;}} while(0)
|
|
|
|
#define this_check_void() do { if (!this) { esl_log(ESL_LOG_ERROR, "object is not initalized\n"); return;}} while(0)
|
|
|
|
|
|
|
|
|
2009-02-17 20:13:45 +00:00
|
|
|
class ESLevent {
|
2009-03-02 20:52:46 +00:00
|
|
|
private:
|
|
|
|
esl_event_header_t *hp;
|
2009-02-17 00:27:28 +00:00
|
|
|
public:
|
|
|
|
esl_event_t *event;
|
|
|
|
char *serialized_string;
|
|
|
|
int mine;
|
|
|
|
|
2009-02-17 20:13:45 +00:00
|
|
|
ESLevent(const char *type, const char *subclass_name = NULL);
|
|
|
|
ESLevent(esl_event_t *wrap_me, int free_me = 0);
|
2009-02-17 23:18:28 +00:00
|
|
|
ESLevent(ESLevent *me);
|
2009-02-17 20:13:45 +00:00
|
|
|
virtual ~ESLevent();
|
2009-02-17 00:27:28 +00:00
|
|
|
const char *serialize(const char *format = NULL);
|
|
|
|
bool setPriority(esl_priority_t priority = ESL_PRIORITY_NORMAL);
|
2011-05-26 12:18:18 -05:00
|
|
|
const char *getHeader(const char *header_name, int idx = -1);
|
2009-02-17 00:27:28 +00:00
|
|
|
char *getBody(void);
|
|
|
|
const char *getType(void);
|
|
|
|
bool addBody(const char *value);
|
|
|
|
bool addHeader(const char *header_name, const char *value);
|
2011-05-26 12:18:18 -05:00
|
|
|
bool pushHeader(const char *header_name, const char *value);
|
|
|
|
bool unshiftHeader(const char *header_name, const char *value);
|
2009-02-17 00:27:28 +00:00
|
|
|
bool delHeader(const char *header_name);
|
2009-03-02 20:52:46 +00:00
|
|
|
const char *firstHeader(void);
|
|
|
|
const char *nextHeader(void);
|
2009-02-17 00:27:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-02-17 20:13:45 +00:00
|
|
|
class ESLconnection {
|
2009-02-17 00:27:28 +00:00
|
|
|
private:
|
|
|
|
esl_handle_t handle;
|
|
|
|
public:
|
2010-01-05 20:37:16 +00:00
|
|
|
ESLconnection(const char *host, const char *port, const char *user, const char *password);
|
2009-02-17 20:13:45 +00:00
|
|
|
ESLconnection(const char *host, const char *port, const char *password);
|
|
|
|
ESLconnection(int socket);
|
|
|
|
virtual ~ESLconnection();
|
2009-06-12 22:57:13 +00:00
|
|
|
int socketDescriptor();
|
2009-02-17 00:27:28 +00:00
|
|
|
int connected();
|
2009-02-17 20:13:45 +00:00
|
|
|
ESLevent *getInfo();
|
2009-02-20 23:03:06 +00:00
|
|
|
int send(const char *cmd);
|
2009-02-17 20:13:45 +00:00
|
|
|
ESLevent *sendRecv(const char *cmd);
|
2009-02-20 17:16:36 +00:00
|
|
|
ESLevent *api(const char *cmd, const char *arg = NULL);
|
2011-02-24 17:48:36 -06:00
|
|
|
ESLevent *bgapi(const char *cmd, const char *arg = NULL, const char *job_uuid = NULL);
|
2010-03-05 23:10:41 +00:00
|
|
|
ESLevent *sendEvent(ESLevent *send_me);
|
2011-09-06 14:53:38 -05:00
|
|
|
int sendMSG(ESLevent *send_me, const char *uuid = NULL);
|
2009-02-17 20:13:45 +00:00
|
|
|
ESLevent *recvEvent();
|
|
|
|
ESLevent *recvEventTimed(int ms);
|
2009-03-06 19:24:10 +00:00
|
|
|
ESLevent *filter(const char *header, const char *value);
|
2009-02-20 23:03:06 +00:00
|
|
|
int events(const char *etype, const char *value);
|
2009-12-15 19:45:47 +00:00
|
|
|
ESLevent *execute(const char *app, const char *arg = NULL, const char *uuid = NULL);
|
|
|
|
ESLevent *executeAsync(const char *app, const char *arg = NULL, const char *uuid = NULL);
|
2009-03-24 18:03:26 +00:00
|
|
|
int setAsyncExecute(const char *val);
|
2009-02-17 14:13:32 +00:00
|
|
|
int setEventLock(const char *val);
|
2009-03-23 19:55:02 +00:00
|
|
|
int disconnect(void);
|
2009-02-17 00:27:28 +00:00
|
|
|
};
|
|
|
|
|
2009-02-17 20:13:45 +00:00
|
|
|
void eslSetLogLevel(int level);
|
2009-02-17 00:27:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|