~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2007 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
#include "mysys_priv.h"
17
#include <m_string.h>                           /* strcmp() */
18
19
20
/**
21
  Append str to array, or move to the end if it already exists
22
23
  @param str    String to be appended
24
  @param array  The array, terminated by a NULL element, all unused elements
25
                pre-initialized to NULL
26
  @param size   Size of the array; array must be terminated by a NULL
27
                pointer, so can hold size - 1 elements
28
29
  @retval FALSE  Success
30
  @retval TRUE   Failure, array is full
31
*/
32
33
my_bool array_append_string_unique(const char *str,
34
                                   const char **array, size_t size)
35
{
36
  const char **p;
37
  /* end points at the terminating NULL element */
38
  const char **end= array + size - 1;
39
  DBUG_ASSERT(*end == NULL);
40
41
  for (p= array; *p; ++p)
42
  {
43
    if (strcmp(*p, str) == 0)
44
      break;
45
  }
46
  if (p >= end)
47
    return TRUE;                               /* Array is full */
48
49
  DBUG_ASSERT(*p == NULL || strcmp(*p, str) == 0);
50
51
  while (*(p + 1))
52
  {
53
    *p= *(p + 1);
54
    ++p;
55
  }
56
57
  DBUG_ASSERT(p < end);
58
  *p= str;
59
60
  return FALSE;                                 /* Success */
61
}