~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to storage/ibmdb2i/db2i_global.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Licensed Materials - Property of IBM
3
 
DB2 Storage Engine Enablement
4
 
Copyright IBM Corporation 2007,2008
5
 
All rights reserved
6
 
 
7
 
Redistribution and use in source and binary forms, with or without modification,
8
 
are permitted provided that the following conditions are met: 
9
 
 (a) Redistributions of source code must retain this list of conditions, the
10
 
     copyright notice in section {d} below, and the disclaimer following this
11
 
     list of conditions. 
12
 
 (b) Redistributions in binary form must reproduce this list of conditions, the
13
 
     copyright notice in section (d) below, and the disclaimer following this
14
 
     list of conditions, in the documentation and/or other materials provided
15
 
     with the distribution. 
16
 
 (c) The name of IBM may not be used to endorse or promote products derived from
17
 
     this software without specific prior written permission. 
18
 
 (d) The text of the required copyright notice is: 
19
 
       Licensed Materials - Property of IBM
20
 
       DB2 Storage Engine Enablement 
21
 
       Copyright IBM Corporation 2007,2008 
22
 
       All rights reserved
23
 
 
24
 
THIS SOFTWARE IS PROVIDED BY IBM CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED
25
 
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26
 
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
27
 
SHALL IBM CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28
 
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
29
 
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30
 
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31
 
CONTRACT, STRICT LIABILITY, OR TORT INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
32
 
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33
 
OF SUCH DAMAGE.
34
 
*/
35
 
 
36
 
 
37
 
#ifndef DB2I_GLOBAL_H
38
 
#define DB2I_GLOBAL_H
39
 
 
40
 
#define MYSQL_SERVER 1
41
 
 
42
 
#include "my_global.h"
43
 
#include "my_sys.h"
44
 
 
45
 
const uint MAX_DB2_KEY_PARTS=120;
46
 
const int MAX_DB2_V5R4_LIBNAME_LENGTH = 10;
47
 
const int MAX_DB2_V6R1_LIBNAME_LENGTH = 30;
48
 
const int MAX_DB2_SCHEMANAME_LENGTH=258; 
49
 
const int MAX_DB2_FILENAME_LENGTH=258; 
50
 
const int MAX_DB2_COLNAME_LENGTH=128;
51
 
const int MAX_DB2_SAVEPOINTNAME_LENGTH=128;
52
 
const int MAX_DB2_QUALIFIEDNAME_LENGTH=MAX_DB2_V6R1_LIBNAME_LENGTH + 1 + MAX_DB2_FILENAME_LENGTH;
53
 
const uint32 MAX_CHAR_LENGTH = 32765;
54
 
const uint32 MAX_VARCHAR_LENGTH = 32739;
55
 
const uint32 MAX_DEC_PRECISION = 63;
56
 
const uint32 MAX_BLOB_LENGTH = 2147483646;
57
 
const uint32 MAX_BINARY_LENGTH = MAX_CHAR_LENGTH;
58
 
const uint32 MAX_VARBINARY_LENGTH = MAX_VARCHAR_LENGTH;
59
 
const uint32 MAX_FULL_ALLOCATE_BLOB_LENGTH = 65536;
60
 
const uint32 MAX_FOREIGN_LEN = 64000;
61
 
const char* DB2I_TEMP_TABLE_SCHEMA = "QTEMP";
62
 
const char DB2I_ADDL_INDEX_NAME_DELIMITER[5] = {'_','_','_','_','_'};
63
 
const char DB2I_DEFAULT_INDEX_NAME_DELIMITER[3] = {'_','_','_'};
64
 
const int DB2I_INDEX_NAME_LENGTH_TO_PRESERVE = 110;
65
 
 
66
 
enum enum_DB2I_INDEX_TYPE
67
 
{
68
 
  typeNone = 0,
69
 
  typeDefault = 'D',
70
 
  typeHex = 'H',
71
 
  typeAscii = 'A'
72
 
};
73
 
 
74
 
void* roundToQuadWordBdy(void* ptr)
75
 
{
76
 
  return (void*)(((uint64)(ptr)+0xf) & ~0xf);
77
 
}
78
 
 
79
 
typedef uint64_t ILEMemHandle;
80
 
 
81
 
struct OSVersion
82
 
{
83
 
  uint8 v;
84
 
  uint8 r;
85
 
};
86
 
extern OSVersion osVersion;
87
 
 
88
 
 
89
 
/**
90
 
  Allocate 16-byte aligned space using the MySQL heap allocator
91
 
  
92
 
  @details  Many of the spaces used by the QMY_* APIS are required to be
93
 
  aligned on 16 byte boundaries. The standard system malloc will do this 
94
 
  alignment by default. However, in order to use the heap debug and tracking
95
 
  features of the mysql allocator, we chose to implement an aligning wrapper
96
 
  around my_malloc. Essentially, we overallocate the storage space, find the 
97
 
  first aligned address in the space, store a pointer to the true malloc 
98
 
  allocation in the bytes immediately preceding the aligned address, and return 
99
 
  the aligned address to the caller.
100
 
  
101
 
  @parm size  The size of heap storage needed
102
 
  
103
 
  @return  A 16-byte aligned pointer to the storage requested.
104
 
*/
105
 
void* malloc_aligned(size_t size)
106
 
{
107
 
  char* p;
108
 
  char* base;
109
 
  base = (char*)my_malloc(size + sizeof(void*) + 15, MYF(MY_WME));
110
 
  if (likely(base))
111
 
  {
112
 
    p = (char*)roundToQuadWordBdy(base + sizeof(void*));
113
 
    char** p2 = (char**)(p - sizeof(void*));
114
 
    *p2 = base;
115
 
  }
116
 
  else
117
 
    p = NULL;
118
 
  
119
 
  return p;
120
 
}
121
 
 
122
 
/**
123
 
  Free a 16-byte aligned space alloced by malloc_aligned
124
 
  
125
 
  @details  We know that a pointer to the true malloced storage immediately
126
 
  precedes the aligned address, so we pull that out and call my_free().
127
 
  
128
 
  @parm p  A 16-byte aligned pointer generated by malloc_aligned
129
 
*/
130
 
void free_aligned(void* p)
131
 
{
132
 
  if (likely(p))
133
 
  {
134
 
    my_free(*(char**)((char*)p-sizeof(void*)), MYF(0));
135
 
  }  
136
 
}
137
 
 
138
 
#endif