~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/option_string.h

  • Committer: Vijay Samuel
  • Date: 2010-10-14 18:17:09 UTC
  • mto: (1856.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1857.
  • Revision ID: vjsamuel1990@gmail.com-20101014181709-9fc14w328ggqzapo
Merge pushed classes of drizzleslap out into separate classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Vijay Samuel
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#include "client_priv.h"
 
22
#include <iostream>
 
23
#include <string>
 
24
#include <cstdlib>
 
25
 
 
26
using namespace std;
 
27
 
 
28
class OptionString 
 
29
{
 
30
public:
 
31
  OptionString(char *in_string,
 
32
               size_t in_length,
 
33
               char *in_option,
 
34
               size_t in_option_length,
 
35
               OptionString *in_next) :
 
36
    string(in_string),
 
37
    length(in_length),
 
38
    option(in_option),
 
39
    option_length(in_option_length),
 
40
    next(in_next)
 
41
  { }  
 
42
 
 
43
  OptionString() :
 
44
    string(NULL),
 
45
    length(0),
 
46
    option(NULL),
 
47
    option_length(0),
 
48
    next(NULL)
 
49
  { }
 
50
 
 
51
  ~OptionString()
 
52
  {
 
53
    if (getString())
 
54
      free(getString());
 
55
    if (getOption())
 
56
      free(getOption());
 
57
  }
 
58
 
 
59
  char *getString() const
 
60
  {
 
61
    return string;
 
62
  }
 
63
 
 
64
  size_t getLength() const
 
65
  {
 
66
    return length;
 
67
  }
 
68
 
 
69
  char *getOption() const
 
70
  {
 
71
  return option;
 
72
  }
 
73
 
 
74
  size_t getOptionLength() const
 
75
  {
 
76
    return option_length;
 
77
  }
 
78
 
 
79
  OptionString *getNext() const
 
80
  {
 
81
    return next;
 
82
  }
 
83
 
 
84
  void setString(char *in_string)
 
85
  {
 
86
    string= in_string;
 
87
    length= strlen(in_string);
 
88
  }
 
89
 
 
90
  void setOption(char *in_option)
 
91
  {
 
92
    option= strdup(in_option);
 
93
    option_length= strlen(in_option);
 
94
  }
 
95
 
 
96
  void setNext(OptionString *in_next)
 
97
  {
 
98
    next= in_next;
 
99
  }
 
100
  
 
101
private:
 
102
  char *string;
 
103
  size_t length;
 
104
  char *option;
 
105
  size_t option_length;
 
106
  OptionString *next;
 
107
};