]> cygwin.com Git - cygwin-apps/setup.git/blame - String++.h
2002-07-01 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / String++.h
CommitLineData
3c054baf
RC
1/*
2 * Copyright (c) 2002, Robert Collins.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Robert Collins.
13 *
14 */
15
16// A String class to replace all the char * manipulation.
17
18#ifndef CINSTALL_STRING_H
19#define CINSTALL_STRING_H
20
21#include <stdarg.h>
45e01f23 22#include <sys/types.h>
6391823e 23#include <iosfwd>
b401ef47 24#include <string>
3c054baf
RC
25
26class io_stream;
27class String {
28 class _data;
29public:
30 // Static members first
3c054baf
RC
31 inline String();
32 inline String (String const &);
33 // We're notperformance bottlenecked.
34 String (const char *);
076654e7 35 String (int const);
b401ef47 36 String (string const &);
3c054baf
RC
37 inline String & operator = (String const &);
38 ~String();
39 // Up to the user to delete[] these.
40 char * cstr();
41 char * cstr() const; // may be less optimal
42 char const * cstr_oneuse() const; // only valid until the next mutator call
43 // pretends to be const !!
44 inline size_t size() const; // number of characters (!= storage size).
45 size_t find (char) const;
b401ef47 46 String substr (size_t start = 0, size_t len = -1) const;
3c054baf
RC
47 // operator == and != can be done if/when we have a 'casesensitive' flag to
48 // the constructors
49 // - means this sorts to the left of the parameter
50 int compare (String const &, size_t const = 0) const;
51 static int compare (String const &, String const &, size_t const = 0);
52 int casecompare (String const &, size_t const = 0) const;
53 static int casecompare (String const &, String const &, size_t const = 0);
54 static int casecompare (String const, String const);
55 String &append (String const &);
56 String &operator += (String const &);
57 String operator + (String const &) const;
58 String operator + (char const *) const;
59 bool operator == (String const &) const;
60 bool operator == (char const *) const;
61
62private:
63 class _data {
64 public:
65 _data ();
66 _data (size_t);
67 _data (_data const &);
68 ~_data ();
69 unsigned count; //Invariant: all constructors set to 1;
70 // For now, char *, but can be TCHAR, or even UNICODE
71 // when time permits.
72 unsigned char *theString;
73 char *cstr; // cached/oneuse Cstr encoded version
74 size_t length;
75 } *theData; // Invariant, there is always an
76 static String absorb (unsigned char *, size_t);
77};
78
6391823e
RC
79ostream &
80operator << (ostream &os, String const &theString);
81
3c054baf
RC
82String::String() : theData (new _data) {}
83String::String(String const &aString) : theData (aString.theData)
84{
85 ++theData->count;
86}
87
88String &
89String::operator= (String const &aString)
90{
91 // Don't touch the order
92 ++aString.theData->count;
93 if (--theData->count == 0)
94 delete theData;
95 theData = aString.theData;
96 return *this;
97}
98
99size_t
100String::size() const
101{
102 return theData->length;
103}
104
105#endif // CINSTALL_STRING_H
This page took 0.034118 seconds and 5 git commands to generate.