1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* Copyright (c) 2009 PrimeBase Technologies GmbH, Germany
*
* PrimeBase Media Stream for MySQL
*
* 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
*
* Barry Leslie
*
* 2009-01-09
*
* H&G2JCtL
*
* PBMS Meta Data utilities.
*
*/
#ifndef __METADATA_MS_H__
#define __METADATA_MS_H__
#ifdef DRIZZLED
#include <drizzled/internal/m_string.h>
#include <drizzled/charset_info.h>
#else
#include "m_ctype.h"
#endif
#include "pbmslib.h"
class MetaData
{
private:
char *data;
char *eod;
char *position;
public:
MetaData(): data(NULL), eod(NULL), position(NULL){}
MetaData(char *meta_data, size_t meta_data_size): data(meta_data), eod(meta_data + meta_data_size), position(meta_data){}
char *getBuffer() { return data;}
void use_data(char *meta_data, size_t meta_data_size)
{
data = meta_data;
position = data;
eod = data + meta_data_size;
}
void reset()
{
position = data;
}
char *findNext(char **value)
{
char *name = position;
if (position >= eod)
return NULL;
position += strlen(position) +1;
if (position >= eod)
return NULL;
*value = position;
position += strlen(position) +1;
return name;
}
char *findName(const char *name)
{
char *metadata = data;
while (metadata < eod && my_strcasecmp(&my_charset_utf8_general_ci, metadata, name)) {
metadata += strlen(metadata) +1;
metadata += strlen(metadata) +1;
}
if (metadata < eod)
return metadata + strlen(metadata) +1;
return NULL;
}
char *findNamePosition(const char *name)
{
char *metadata = data;
while (metadata < eod && my_strcasecmp(&my_charset_utf8_general_ci, metadata, name)) {
metadata += strlen(metadata) +1;
metadata += strlen(metadata) +1;
}
if (metadata < eod)
return metadata;
return NULL;
}
#ifdef HAVE_ALIAS_SUPPORT
char *findAlias() {return findName(MS_ALIAS_TAG);}
#endif
static uint32_t recSize(const char *rec)
{
uint32_t len = strlen(rec) + 1;
rec += len;
return (len + strlen(rec) + 1);
}
};
#endif //__METADATA_MS_H__
|