~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_alloc.h

  • Committer: Monty Taylor
  • Date: 2008-12-17 04:54:32 UTC
  • mto: (685.1.38 devel) (713.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 713.
  • Revision ID: monty@inaugust.com-20081217045432-dw4425razy7do46i
Fixed bool. No more sql_mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
 
21
 
 
22
 
#ifndef DRIZZLED_MEMORY_SQL_ALLOC_H
23
 
#define DRIZZLED_MEMORY_SQL_ALLOC_H
24
 
 
25
 
#include <unistd.h>
26
 
#include "drizzled/memory/root.h"
27
 
 
28
 
#include "drizzled/visibility.h"
29
 
 
30
 
namespace drizzled
31
 
{
 
20
#ifndef DRIZZLE_SERVER_SQL_ALLOC_H
 
21
#define DRIZZLE_SERVER_SQL_ALLOC_H
 
22
 
 
23
#include <libdrizzle/net_serv.h>
 
24
#include <mysys/my_alloc.h>
 
25
#include <mystrings/m_ctype.h>
 
26
 
32
27
class Session;
33
28
 
34
 
namespace memory
35
 
{
36
 
 
37
 
void init_sql_alloc(Root *root, size_t block_size, size_t pre_alloc_size);
 
29
void init_sql_alloc(MEM_ROOT *root, size_t block_size, size_t pre_alloc_size);
38
30
void *sql_alloc(size_t);
39
31
void *sql_calloc(size_t);
40
32
char *sql_strdup(const char *str);
41
33
char *sql_strmake(const char *str, size_t len);
42
34
void *sql_memdup(const void * ptr, size_t size);
 
35
void sql_element_free(void *ptr);
 
36
char *sql_strmake_with_convert(const char *str, size_t arg_length,
 
37
                               const CHARSET_INFO * const from_cs,
 
38
                               size_t max_res_length,
 
39
                               const CHARSET_INFO * const to_cs,
 
40
                               size_t *result_length);
 
41
void sql_kill(Session *session, ulong id, bool only_kill_query);
 
42
bool net_request_file(NET* net, const char* fname);
 
43
char* query_table_status(Session *session,const char *db,const char *table_name);
43
44
 
44
 
class DRIZZLED_API SqlAlloc
 
45
/* mysql standard class memory allocator */
 
46
class Sql_alloc
45
47
{
46
48
public:
47
 
  static void *operator new(size_t size);
48
 
  static void *operator new[](size_t size);
49
 
  static void *operator new[](size_t size, Root *mem_root);
50
 
  static void *operator new(size_t size, Root *mem_root);
 
49
  static void *operator new(size_t size) throw ()
 
50
  {
 
51
    return sql_alloc(size);
 
52
  }
 
53
  static void *operator new[](size_t size)
 
54
  {
 
55
    return sql_alloc(size);
 
56
  }
 
57
  static void *operator new[](size_t size, MEM_ROOT *mem_root) throw ()
 
58
  { return alloc_root(mem_root, size); }
 
59
  static void *operator new(size_t size, MEM_ROOT *mem_root) throw ()
 
60
  { return alloc_root(mem_root, size); }
51
61
  static void operator delete(void *, size_t)
52
62
  {  }
53
 
  static void operator delete(void *, Root *)
54
 
  {  }
55
 
  static void operator delete[](void *, Root *)
56
 
  {  }
 
63
  static void operator delete(void *, MEM_ROOT *)
 
64
  { /* never called */ }
 
65
  static void operator delete[](void *, MEM_ROOT *)
 
66
  { /* never called */ }
57
67
  static void operator delete[](void *, size_t)
58
68
  {  }
59
 
  SqlAlloc() {}
60
 
  /**
61
 
   * @TODO: Make this virtual... but List<> must be fixed first
62
 
   */
63
 
  ~SqlAlloc() {}
 
69
#ifdef HAVE_purify
 
70
  bool dummy;
 
71
  inline Sql_alloc() :dummy(0) {}
 
72
  inline ~Sql_alloc() {}
 
73
#else
 
74
  inline Sql_alloc() {}
 
75
  inline ~Sql_alloc() {}
 
76
#endif
64
77
 
65
78
};
66
79
 
67
 
}
68
 
}
69
 
 
70
 
#endif /* DRIZZLED_MEMORY_SQL_ALLOC_H */
 
80
#endif /* DRIZZLE_SERVER_SQL_ALLOC_H */