Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / RangeMap.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: RangeMap.h /main/1 1996/07/29 17:02:22 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef RangeMap_INCLUDED
28 #define RangeMap_INCLUDED 1
29
30 #include "Vector.h"
31 #include "Boolean.h"
32 #include "ISet.h"
33 #include "types.h"
34 #include <stddef.h>
35
36 #ifdef SP_NAMESPACE
37 namespace SP_NAMESPACE {
38 #endif
39
40 template<class From, class To>
41 struct RangeMapRange {
42   RangeMapRange() { }
43   ~RangeMapRange() { }
44   From fromMin;
45   From fromMax;
46   To toMin;
47 };
48
49 template<class From, class To> class RangeMapIter;
50
51 template<class From, class To>
52 class RangeMap {
53 public:
54   RangeMap();
55   Boolean map(From, To &, From &alsoMax) const;
56   // Return 0 for no matches, 1 for 1, 2 for more than 1.
57   unsigned inverseMap(To, From &, ISet<WideChar> &, WideChar &count) const;
58   void addRange(From, From, To);
59 private:
60   Vector<RangeMapRange<From,To> > ranges_;
61   friend class RangeMapIter<From,To>;
62 };
63
64 template<class From, class To>
65 class RangeMapIter {
66 public:
67   RangeMapIter(const RangeMap<From,To> &map);
68   Boolean next(From &fromMin, From &fromMax, To &toMin) {
69     if (!count_)
70       return 0;
71     else {
72       fromMin = ptr_->fromMin;
73       fromMax = ptr_->fromMax;
74       toMin = ptr_->toMin;
75       ptr_++;
76       count_--;
77       return 1;
78     }
79   }
80 private:
81   size_t count_;
82   const RangeMapRange<From,To> *ptr_;
83 //  Vector<RangeMapRange<From,To> >::const_iterator ptr_;
84 };
85
86 #ifdef SP_NAMESPACE
87 }
88 #endif
89
90 #endif /* not RangeMap_INCLUDED */
91
92 #ifdef SP_DEFINE_TEMPLATES
93 #include "RangeMap.C"
94 #endif