1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: regexpmap.tpt,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _UCB_REGEXPMAP_TPT_
32 #define _UCB_REGEXPMAP_TPT_
34 #ifndef _UCB_REGEXPMAP_HXX_
35 #include <regexpmap.hxx>
40 #ifndef _RTL_USTRING_HXX_
41 #include <rtl/ustring.hxx>
44 #ifndef _UCB_REGEXP_HXX_
48 using namespace ucb_impl;
52 //============================================================================
54 template< typename Val >
60 inline Entry(Regexp const & rTheRegexp, Val const & rTheValue):
61 m_aRegexp(rTheRegexp), m_aValue(rTheValue) {}
64 //============================================================================
65 template< typename Val > class List: public std::list< Entry< Val > > {};
67 //============================================================================
71 //============================================================================
73 template< typename Val >
74 class RegexpMapIterImpl
77 typedef RegexpMapImpl< Val > MapImpl;
78 typedef typename List< Val >::iterator ListIterator;
80 // Solaris needs these for the ctor...
82 inline RegexpMapIterImpl();
84 inline RegexpMapIterImpl(MapImpl * pTheMap, int nTheList,
85 ListIterator aTheIndex);
87 RegexpMapIterImpl(RegexpMapImpl< Val > * pTheMap, bool bBegin);
89 bool operator ==(RegexpMapIterImpl const & rOther) const;
91 RegexpMapImpl< Val > const * getMap() const { return m_pMap; }
93 int getList() const { return m_nList; }
95 typename List< Val >::iterator const & getIndex() const { return m_aIndex; }
99 RegexpMapEntry< Val > & get();
102 mutable RegexpMapEntry< Val > m_aEntry;
103 typename List< Val >::iterator m_aIndex;
104 RegexpMapImpl< Val > * m_pMap;
106 mutable bool m_bEntrySet;
108 void setEntry() const;
113 template< typename Val >
114 inline RegexpMapIterImpl< Val >::RegexpMapIterImpl():
115 m_aEntry(rtl::OUString(), 0),
121 template< typename Val >
122 inline RegexpMapIterImpl< Val >::RegexpMapIterImpl(MapImpl * pTheMap,
124 ListIterator aTheIndex):
125 m_aEntry(rtl::OUString(), 0),
132 //============================================================================
133 template< typename Val >
134 void RegexpMapIterImpl< Val >::setEntry() const
138 Entry< Val > const & rTheEntry
139 = m_nList == -1 ? *m_pMap->m_pDefault : *m_aIndex;
141 = RegexpMapEntry< Val >(rTheEntry.m_aRegexp.getRegexp(false),
142 const_cast< Val * >(&rTheEntry.m_aValue));
147 //============================================================================
148 template< typename Val >
149 RegexpMapIterImpl< Val >::RegexpMapIterImpl(RegexpMapImpl< Val > * pTheMap,
151 m_aEntry(rtl::OUString(), 0),
158 m_aIndex = typename List< Val >::iterator();
159 if (!m_pMap->m_pDefault)
164 m_nList = Regexp::KIND_DOMAIN;
165 m_aIndex = m_pMap->m_aList[Regexp::KIND_DOMAIN].end();
169 //============================================================================
170 template< typename Val >
171 bool RegexpMapIterImpl< Val >::operator ==(RegexpMapIterImpl const & rOther)
174 return m_pMap == rOther.m_pMap
175 && m_nList == rOther.m_nList
176 && m_aIndex == rOther.m_aIndex;
179 //============================================================================
180 template< typename Val >
181 void RegexpMapIterImpl< Val >::next()
185 case Regexp::KIND_DOMAIN:
186 if (m_aIndex == m_pMap->m_aList[m_nList].end())
190 if (m_nList == Regexp::KIND_DOMAIN
191 || m_aIndex != m_pMap->m_aList[m_nList].end())
197 m_aIndex = m_pMap->m_aList[m_nList].begin();
199 while (m_nList < Regexp::KIND_DOMAIN
200 && m_aIndex == m_pMap->m_aList[m_nList].end());
206 //============================================================================
207 template< typename Val >
208 RegexpMapEntry< Val > & RegexpMapIterImpl< Val >::get()
214 //============================================================================
216 // RegexpMapConstIter
218 //============================================================================
220 template< typename Val >
221 RegexpMapConstIter< Val >::RegexpMapConstIter(RegexpMapIterImpl< Val > *
226 //============================================================================
227 template< typename Val >
228 RegexpMapConstIter< Val >::RegexpMapConstIter():
229 m_pImpl(new RegexpMapIterImpl< Val >)
232 //============================================================================
233 template< typename Val >
234 RegexpMapConstIter< Val >::RegexpMapConstIter(RegexpMapConstIter const &
236 m_pImpl(new RegexpMapIterImpl< Val >(*rOther.m_pImpl))
239 //============================================================================
240 template< typename Val >
241 RegexpMapConstIter< Val >::~RegexpMapConstIter()
246 //============================================================================
247 template< typename Val >
248 RegexpMapConstIter< Val > &
249 RegexpMapConstIter< Val >::operator =(RegexpMapConstIter const & rOther)
251 *m_pImpl = *rOther.m_pImpl;
255 //============================================================================
256 template< typename Val >
257 RegexpMapConstIter< Val > & RegexpMapConstIter< Val >::operator ++()
263 //============================================================================
264 template< typename Val >
265 RegexpMapConstIter< Val > RegexpMapConstIter< Val >::operator ++(int)
267 RegexpMapConstIter aTemp(*this);
272 //============================================================================
273 template< typename Val >
274 RegexpMapEntry< Val > const & RegexpMapConstIter< Val >::operator *() const
276 return m_pImpl->get();
279 //============================================================================
280 template< typename Val >
281 RegexpMapEntry< Val > const * RegexpMapConstIter< Val >::operator ->() const
283 return &m_pImpl->get();
286 //============================================================================
287 template< typename Val >
288 bool RegexpMapConstIter< Val >::equals(RegexpMapConstIter const & rOther)
291 return *m_pImpl == *rOther.m_pImpl;
294 //============================================================================
298 //============================================================================
300 template< typename Val >
301 RegexpMapIter< Val >::RegexpMapIter(RegexpMapIterImpl< Val > * pTheImpl):
302 RegexpMapConstIter< Val >(pTheImpl)
305 //============================================================================
306 template< typename Val >
307 RegexpMapIter< Val > & RegexpMapIter< Val >::operator ++()
309 this->m_pImpl->next();
313 //============================================================================
314 template< typename Val >
315 RegexpMapIter< Val > RegexpMapIter< Val >::operator ++(int)
317 RegexpMapIter aTemp(*this);
318 this->m_pImpl->next();
322 //============================================================================
323 template< typename Val >
324 RegexpMapEntry< Val > & RegexpMapIter< Val >::operator *()
326 return this->m_pImpl->get();
329 //============================================================================
330 template< typename Val >
331 RegexpMapEntry< Val > const & RegexpMapIter< Val >::operator *() const
333 return this->m_pImpl->get();
336 //============================================================================
337 template< typename Val >
338 RegexpMapEntry< Val > * RegexpMapIter< Val >::operator ->()
340 return &this->m_pImpl->get();
343 //============================================================================
344 template< typename Val >
345 RegexpMapEntry< Val > const * RegexpMapIter< Val >::operator ->() const
347 return &this->m_pImpl->get();
350 //============================================================================
354 //============================================================================
358 template< typename Val >
361 List< Val > m_aList[Regexp::KIND_DOMAIN + 1];
362 Entry< Val > * m_pDefault;
364 RegexpMapImpl(): m_pDefault(0) {}
366 ~RegexpMapImpl() { delete m_pDefault; }
371 //============================================================================
372 template< typename Val >
373 RegexpMap< Val >::RegexpMap():
374 m_pImpl(new RegexpMapImpl< Val >)
377 //============================================================================
378 template< typename Val >
379 RegexpMap< Val >::RegexpMap(RegexpMap const & rOther):
380 m_pImpl(new RegexpMapImpl< Val >(*rOther.m_pImpl))
383 //============================================================================
384 template< typename Val >
385 RegexpMap< Val >::~RegexpMap()
390 //============================================================================
391 template< typename Val >
392 RegexpMap< Val > & RegexpMap< Val >::operator =(RegexpMap const & rOther)
394 *m_pImpl = *rOther.m_pImpl;
398 //============================================================================
399 template< typename Val >
400 bool RegexpMap< Val >::add(rtl::OUString const & rKey, Val const & rValue,
401 bool bOverwrite, rtl::OUString * pReverse)
403 Regexp aRegexp(Regexp::parse(rKey));
405 if (aRegexp.isDefault())
407 if (m_pImpl->m_pDefault)
411 delete m_pImpl->m_pDefault;
413 m_pImpl->m_pDefault = new Entry< Val >(aRegexp, rValue);
417 List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
419 typename List< Val >::iterator aEnd(rTheList.end());
420 for (typename List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
422 if (aIt->m_aRegexp == aRegexp)
434 rTheList.push_back(Entry< Val >(aRegexp, rValue));
438 *pReverse = aRegexp.getRegexp(true);
443 //============================================================================
444 template< typename Val >
445 typename RegexpMap< Val >::iterator RegexpMap< Val >::find(rtl::OUString const & rKey,
446 rtl::OUString * pReverse)
448 Regexp aRegexp(Regexp::parse(rKey));
451 *pReverse = aRegexp.getRegexp(true);
453 if (aRegexp.isDefault())
455 if (m_pImpl->m_pDefault)
456 return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
461 List< Val > & rTheList = m_pImpl->m_aList[aRegexp.getKind()];
463 typename List< Val > ::iterator aEnd(rTheList.end());
464 for (typename List< Val >::iterator aIt(rTheList.begin()); aIt != aEnd; ++aIt)
465 if (aIt->m_aRegexp == aRegexp)
466 return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(
468 aRegexp.getKind(), aIt));
471 return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, false));
474 //============================================================================
475 template< typename Val >
476 void RegexpMap< Val >::erase(iterator const & rPos)
478 if (rPos.m_pImpl->getMap() == m_pImpl)
480 if (rPos.m_pImpl->getList() == -1)
482 if (m_pImpl->m_pDefault)
484 delete m_pImpl->m_pDefault;
485 m_pImpl->m_pDefault = 0;
489 m_pImpl->m_aList[rPos.m_pImpl->getList()].
490 erase(rPos.m_pImpl->getIndex());
494 //============================================================================
495 template< typename Val >
496 typename RegexpMap< Val >::iterator RegexpMap< Val >::begin()
498 return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, true));
501 //============================================================================
502 template< typename Val >
503 typename RegexpMap< Val >::const_iterator RegexpMap< Val >::begin() const
505 return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
509 //============================================================================
510 template< typename Val >
511 typename RegexpMap< Val >::iterator RegexpMap< Val >::end()
513 return RegexpMapIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl, false));
516 //============================================================================
517 template< typename Val >
518 typename RegexpMap< Val >::const_iterator RegexpMap< Val >::end() const
520 return RegexpMapConstIter< Val >(new RegexpMapIterImpl< Val >(m_pImpl,
524 //============================================================================
525 template< typename Val >
526 bool RegexpMap< Val >::empty() const
528 return !m_pImpl->m_pDefault
529 && m_pImpl->m_aList[Regexp::KIND_PREFIX].empty()
530 && m_pImpl->m_aList[Regexp::KIND_AUTHORITY].empty()
531 && m_pImpl->m_aList[Regexp::KIND_DOMAIN].empty();
534 //============================================================================
535 template< typename Val >
536 typename RegexpMap< Val >::size_type RegexpMap< Val >::size() const
538 return (m_pImpl->m_pDefault ? 1 : 0)
539 + m_pImpl->m_aList[Regexp::KIND_PREFIX].size()
540 + m_pImpl->m_aList[Regexp::KIND_AUTHORITY].size()
541 + m_pImpl->m_aList[Regexp::KIND_DOMAIN].size();
544 //============================================================================
545 template< typename Val >
546 Val const * RegexpMap< Val >::map(rtl::OUString const & rString,
547 rtl::OUString * pTranslation,
548 bool * pTranslated) const
550 for (int n = Regexp::KIND_DOMAIN; n >= Regexp::KIND_PREFIX; --n)
552 List< Val > const & rTheList = m_pImpl->m_aList[n];
554 typename List< Val >::const_iterator aEnd(rTheList.end());
555 for (typename List< Val >::const_iterator aIt(rTheList.begin()); aIt != aEnd;
557 if (aIt->m_aRegexp.matches(rString, pTranslation, pTranslated))
558 return &aIt->m_aValue;
560 if (m_pImpl->m_pDefault
561 && m_pImpl->m_pDefault->m_aRegexp.matches(rString, pTranslation,
563 return &m_pImpl->m_pDefault->m_aValue;
567 #endif // _UCB_REGEXPMAP_TPT_