2006-06-27 08:48:50 +02:00
|
|
|
#ifndef _EVENT_DATA_OBJECTS_H_
|
|
|
|
#define _EVENT_DATA_OBJECTS_H_
|
2006-06-20 17:05:41 +02:00
|
|
|
/* Copyright (C) 2004-2006 MySQL AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
|
|
|
|
#define EVEX_OK 0
|
|
|
|
#define EVEX_KEY_NOT_FOUND -1
|
|
|
|
#define EVEX_OPEN_TABLE_FAILED -2
|
|
|
|
#define EVEX_WRITE_ROW_FAILED -3
|
|
|
|
#define EVEX_DELETE_ROW_FAILED -4
|
|
|
|
#define EVEX_GET_FIELD_FAILED -5
|
|
|
|
#define EVEX_PARSE_ERROR -6
|
|
|
|
#define EVEX_INTERNAL_ERROR -7
|
|
|
|
#define EVEX_NO_DB_ERROR -8
|
|
|
|
#define EVEX_COMPILE_ERROR -19
|
|
|
|
#define EVEX_GENERAL_ERROR -20
|
|
|
|
#define EVEX_BAD_IDENTIFIER -21
|
|
|
|
#define EVEX_BODY_TOO_LONG -22
|
|
|
|
#define EVEX_BAD_PARAMS -23
|
|
|
|
#define EVEX_NOT_RUNNING -24
|
|
|
|
#define EVEX_MICROSECOND_UNSUP -25
|
|
|
|
#define EVEX_CANT_KILL -26
|
|
|
|
|
|
|
|
#define EVENT_EXEC_NO_MORE (1L << 0)
|
|
|
|
#define EVENT_NOT_USED (1L << 1)
|
|
|
|
#define EVENT_FREE_WHEN_FINISHED (1L << 2)
|
|
|
|
|
|
|
|
|
2006-06-28 01:28:03 +02:00
|
|
|
#define EVENT_EXEC_STARTED 0
|
|
|
|
#define EVENT_EXEC_ALREADY_EXEC 1
|
|
|
|
#define EVENT_EXEC_CANT_FORK 2
|
|
|
|
|
|
|
|
|
2006-06-20 17:05:41 +02:00
|
|
|
class sp_head;
|
2006-06-27 08:48:50 +02:00
|
|
|
class Sql_alloc;
|
2006-06-20 17:05:41 +02:00
|
|
|
|
2006-06-28 01:28:03 +02:00
|
|
|
class Event_timed;
|
|
|
|
|
|
|
|
/* Compares only the schema part of the identifier */
|
|
|
|
bool
|
|
|
|
event_timed_db_equal(Event_timed *et, LEX_STRING *db);
|
|
|
|
|
|
|
|
/* Compares the whole identifier*/
|
|
|
|
bool
|
2006-06-29 00:42:25 +02:00
|
|
|
event_timed_identifier_equal(LEX_STRING db, LEX_STRING name, Event_timed *b);
|
2006-06-28 01:28:03 +02:00
|
|
|
|
|
|
|
|
2006-06-20 17:05:41 +02:00
|
|
|
class Event_timed
|
|
|
|
{
|
|
|
|
Event_timed(const Event_timed &); /* Prevent use of these */
|
|
|
|
void operator=(Event_timed &);
|
|
|
|
|
|
|
|
bool status_changed;
|
|
|
|
bool last_executed_changed;
|
2006-07-04 18:44:35 +02:00
|
|
|
|
|
|
|
MEM_ROOT mem_root;
|
2006-06-20 17:05:41 +02:00
|
|
|
|
|
|
|
public:
|
2006-07-04 18:44:35 +02:00
|
|
|
THD *thd;
|
2006-06-20 17:05:41 +02:00
|
|
|
enum enum_status
|
|
|
|
{
|
|
|
|
ENABLED = 1,
|
|
|
|
DISABLED
|
|
|
|
};
|
|
|
|
|
|
|
|
enum enum_on_completion
|
|
|
|
{
|
|
|
|
ON_COMPLETION_DROP = 1,
|
|
|
|
ON_COMPLETION_PRESERVE
|
|
|
|
};
|
|
|
|
|
|
|
|
TIME last_executed;
|
|
|
|
|
|
|
|
LEX_STRING dbname;
|
|
|
|
LEX_STRING name;
|
|
|
|
LEX_STRING body;
|
|
|
|
|
|
|
|
LEX_STRING definer_user;
|
|
|
|
LEX_STRING definer_host;
|
|
|
|
LEX_STRING definer;// combination of user and host
|
|
|
|
|
|
|
|
LEX_STRING comment;
|
|
|
|
TIME starts;
|
|
|
|
TIME ends;
|
|
|
|
TIME execute_at;
|
|
|
|
my_bool starts_null;
|
|
|
|
my_bool ends_null;
|
|
|
|
my_bool execute_at_null;
|
|
|
|
|
|
|
|
longlong expression;
|
|
|
|
interval_type interval;
|
|
|
|
|
|
|
|
ulonglong created;
|
|
|
|
ulonglong modified;
|
|
|
|
enum enum_on_completion on_completion;
|
|
|
|
enum enum_status status;
|
|
|
|
sp_head *sphead;
|
|
|
|
ulong sql_mode;
|
|
|
|
|
|
|
|
bool dropped;
|
|
|
|
uint flags;//all kind of purposes
|
|
|
|
|
|
|
|
static void *operator new(size_t size)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
DBUG_ENTER("Event_timed::new(size)");
|
|
|
|
p= my_malloc(size, MYF(0));
|
|
|
|
DBUG_PRINT("info", ("alloc_ptr=0x%lx", p));
|
|
|
|
DBUG_RETURN(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void operator delete(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("Event_timed::delete(ptr,size)");
|
|
|
|
DBUG_PRINT("enter", ("free_ptr=0x%lx", ptr));
|
|
|
|
TRASH(ptr, size);
|
|
|
|
my_free((gptr) ptr, MYF(0));
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
Event_timed();
|
|
|
|
|
|
|
|
~Event_timed();
|
|
|
|
|
|
|
|
void
|
|
|
|
init();
|
|
|
|
|
|
|
|
int
|
2006-07-04 18:44:35 +02:00
|
|
|
load_from_row(TABLE *table);
|
2006-06-20 17:05:41 +02:00
|
|
|
|
|
|
|
bool
|
|
|
|
compute_next_execution_time();
|
|
|
|
|
|
|
|
int
|
|
|
|
drop(THD *thd);
|
|
|
|
|
|
|
|
void
|
|
|
|
mark_last_executed(THD *thd);
|
|
|
|
|
|
|
|
bool
|
|
|
|
update_fields(THD *thd);
|
|
|
|
|
|
|
|
int
|
|
|
|
get_create_event(THD *thd, String *buf);
|
|
|
|
|
|
|
|
int
|
|
|
|
execute(THD *thd, MEM_ROOT *mem_root);
|
|
|
|
|
|
|
|
int
|
|
|
|
compile(THD *thd, MEM_ROOT *mem_root);
|
|
|
|
|
|
|
|
void
|
|
|
|
free_sp();
|
|
|
|
};
|
2006-06-27 08:48:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Event_parse_data : public Sql_alloc
|
|
|
|
{
|
|
|
|
Event_parse_data(const Event_parse_data &); /* Prevent use of these */
|
|
|
|
void operator=(Event_parse_data &);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum enum_status
|
|
|
|
{
|
|
|
|
ENABLED = 1,
|
|
|
|
DISABLED
|
|
|
|
};
|
|
|
|
|
|
|
|
enum enum_on_completion
|
|
|
|
{
|
|
|
|
ON_COMPLETION_DROP = 1,
|
|
|
|
ON_COMPLETION_PRESERVE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum enum_on_completion on_completion;
|
|
|
|
enum enum_status status;
|
|
|
|
|
|
|
|
const uchar *body_begin;
|
|
|
|
|
|
|
|
LEX_STRING dbname;
|
|
|
|
LEX_STRING name;
|
|
|
|
LEX_STRING body;
|
|
|
|
LEX_STRING definer;// combination of user and host
|
|
|
|
LEX_STRING comment;
|
2006-06-29 00:42:25 +02:00
|
|
|
|
2006-06-27 08:48:50 +02:00
|
|
|
Item* item_starts;
|
|
|
|
Item* item_ends;
|
|
|
|
Item* item_execute_at;
|
|
|
|
|
|
|
|
TIME starts;
|
|
|
|
TIME ends;
|
|
|
|
TIME execute_at;
|
|
|
|
my_bool starts_null;
|
|
|
|
my_bool ends_null;
|
|
|
|
my_bool execute_at_null;
|
|
|
|
|
2006-06-27 10:53:26 +02:00
|
|
|
sp_name *identifier;
|
2006-06-27 08:48:50 +02:00
|
|
|
Item* item_expression;
|
|
|
|
longlong expression;
|
|
|
|
interval_type interval;
|
|
|
|
|
|
|
|
static Event_parse_data *
|
|
|
|
new_instance(THD *thd);
|
|
|
|
|
2006-06-27 10:53:26 +02:00
|
|
|
Event_parse_data();
|
|
|
|
~Event_parse_data();
|
2006-06-27 08:48:50 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
init_definer(THD *thd);
|
|
|
|
|
|
|
|
int
|
|
|
|
init_execute_at(THD *thd, Item *expr);
|
|
|
|
|
|
|
|
int
|
|
|
|
init_interval(THD *thd, Item *expr, interval_type new_interval);
|
|
|
|
|
|
|
|
void
|
|
|
|
init_name(THD *thd, sp_name *spn);
|
|
|
|
|
|
|
|
int
|
|
|
|
init_starts(THD *thd, Item *starts);
|
|
|
|
|
|
|
|
int
|
|
|
|
init_ends(THD *thd, Item *ends);
|
|
|
|
|
|
|
|
void
|
|
|
|
init_body(THD *thd);
|
|
|
|
};
|
|
|
|
|
2006-06-28 01:28:03 +02:00
|
|
|
|
2006-07-04 18:44:35 +02:00
|
|
|
class Event_job_data
|
2006-06-28 01:28:03 +02:00
|
|
|
{
|
2006-07-04 18:44:35 +02:00
|
|
|
public:
|
|
|
|
LEX_STRING dbname;
|
|
|
|
LEX_STRING name;
|
|
|
|
sp_head *sphead;
|
|
|
|
LEX_STRING definer;
|
|
|
|
LEX_STRING body;
|
|
|
|
ulong sql_mode;
|
2006-06-28 01:28:03 +02:00
|
|
|
|
2006-07-04 18:44:35 +02:00
|
|
|
THD *thd;
|
|
|
|
|
|
|
|
Event_job_data(){}
|
|
|
|
~Event_job_data(){}
|
2006-06-28 01:28:03 +02:00
|
|
|
|
2006-07-04 18:44:35 +02:00
|
|
|
int
|
|
|
|
execute();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int
|
|
|
|
load_from_disk();
|
|
|
|
|
|
|
|
int
|
|
|
|
compile();
|
|
|
|
|
|
|
|
|
|
|
|
Event_job_data(const Event_job_data &); /* Prevent use of these */
|
|
|
|
void operator=(Event_job_data &);
|
|
|
|
};
|
2006-06-27 08:48:50 +02:00
|
|
|
#endif /* _EVENT_DATA_OBJECTS_H_ */
|