File: modifier_cyclic_shape.h

package info (click to toggle)
seqan2 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228,748 kB
  • sloc: cpp: 257,602; ansic: 91,967; python: 8,326; sh: 1,056; xml: 570; makefile: 229; awk: 51; javascript: 21
file content (709 lines) | stat: -rw-r--r-- 27,660 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
// ==========================================================================
//                 SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2026, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above copyright
//       notice, this list of conditions and the following disclaimer in the
//       documentation and/or other materials provided with the distribution.
//     * Neither the name of Knut Reinert or the FU Berlin nor the names of
//       its contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Sascha Meiers <meiers@inf.fu-berlin.de>
// ==========================================================================
// Modified Iterator and Modified String for CyclicShapes
// ==========================================================================

#ifndef SEQAN_HEADER_MODIFIER_SHAPE_H
#define SEQAN_HEADER_MODIFIER_SHAPE_H


namespace seqan2 {

// NOTE(meiers): Only a few functions are documented, the rest should be derived

// ==========================================================================
// Classes, Enums, Typedefs
// ==========================================================================

// --------------------------------------------------------------------------
// Class ModCyclicShape Iterator
// --------------------------------------------------------------------------

template<typename TSpec>
struct ModCyclicShape
{};

/*!
 * @class ModCyclicShapeModifiedIterator ModCyclicShape ModifiedIterator
 * @extends ModifiedIterator
 * @headerfile <seqan/modifier.h>
 *
 * @brief Iterates over a string leaving out don't-care-positions defined in
 *      CyclicShape.
 *
 * @signature template <typename THost, typename TSpec>
 *            class ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > >;
 *
 * @tparam THost The host iterator.
 * @tparam TSpec The specialization of @link CyclicShape @endlink.
 * @tparam TCargo Cargo type of ModCyclicShape
 * @tparam TSize Size type of ModCyclicShape
 *
 * Using ModCyclicShape you can <i>mask</i> characters at certain positions of a text.
 * A CylcicShape defines these positions (so called don't-care-positions) and the
 * CyclicShape is repeated till the end of the string. The iterator behaves as if
 * the don't-care-positions had been deleted without actually copying the string.
 *
 * @snippet demos/dox/modifier/cyclic_shape_snippets.cpp Define CyclicShape Modified Iterator
 *
 * @see ModCyclicShapeModifiedString
 * @see CyclicShape
 *
 * @note ModCyclicShape Modifier should only be used to <b>view/read a sequence</b>,
 *       never to change the underlying sequence. Some operations will work, e.g.
 *       you can use the <tt>operator*()</tt> of the ModifiedIterator to change
 *       a character, but other operations like <tt>replace</tt> or <tt>append</tt>
 *       are unsafe or even conceptionally wrong.
 */

template<typename THost, typename TSpec>
class ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > >
{
public:
    typedef typename Cargo<ModifiedIterator>::Type TCargo_;
    typedef CyclicShape<TSpec>  TCyclicShape;

    THost _host;

    /*!
     * @var TCargo ModCyclicShapeModifiedIterator::_cargo;
     * @brief Copy of a Cargo object, which is a CyclicShape.
     *
     * The Cargo is a CyclicShape. This can be very heavy in case of GenericCyclicShape,
     * so prefer the lightweight FixedCyclicShape.
     */
    TCargo_ _cargo;

    /*!
     * @var TSize ModCyclicShapeModifiedIterator::_idx;
     * @brief Internal position inside <tt>diffs</tt> of the CylicShape.
     */
    typename Size<TCyclicShape>::Type _idx;

    /*!
     * @fn ModCyclicShapeModifiedIterator::ModifiedIterator
     * @brief The constructor.
     *
     * @signature ModifiedIterator::ModifiedIterator();
     * @signature ModifiedIterator::ModifiedIterator(host);
     * @signature ModifiedIterator::ModifiedIterator(otherModIter);
     * @param[in] host Host iterator to set.
     * @param[in] otherModIter ModifiedIterator which may differ in its host type.
     *            Copy construction.
     *
     * The safe way to create this ModifiedIterator is to use the <tt>begin</tt> and <tt>end</tt>
     * functions of the ModifiedString or to copy construct.
     * When directly initialized with a host iterator,
     * the CyclicShape is not yet taken into account and you have to set it up yourself,
     * for example a CyclicShape starting with a 01... will have skip the first position.
     * So you would have to reset the host iterator using <tt>++host(myCyclicShape)</tt>.
     * Use <tt>cargo()</tt> to assign a shape to the iterator.
     */
    ModifiedIterator() :
        _idx(0)
    {}

    template<typename TOtherHost>
    ModifiedIterator(ModifiedIterator<TOtherHost, ModCyclicShape<CyclicShape<TSpec> > > const & origin) :
        _host(origin._host), _cargo(origin._cargo), _idx(origin._idx)
    {}

    template<typename T>
    explicit
    ModifiedIterator(T const & host) :
        _host(host), _idx(0)
    {}
};


/*!
 * @class ModCyclicShapeModifiedString ModCyclicShape ModifiedString
 * @extends ModifiedString
 * @headerfile <seqan/modifier.h>
 *
 * @brief A string leaving out don't-care-positions defined in CyclicShape.
 *
 * @signature template <typename THost, typename TSpec>
 *            class ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >;
 *
 * @tparam THost The host string.
 * @tparam TSpec The specialization of CyclicShape.
 *
 * Applies a CyclicShape to a string. The resulting modified string skips don't-care positions
 * and can thus be shorter than the original string. Of course the underlying string is not changed
 * by the modifier.
 *
 * @section Examples
 *
 * Use case for GenericCyclicShapes:
 *
 * @snippet demos/dox/modifier/cyclic_shape_snippets.cpp Define GenericCyclicShape Modified String
 *
 * Use case for FixedCyclicShapes:
 *
 * @snippet demos/dox/modifier/cyclic_shape_snippets.cpp Define FixedCyclicShape Modified String
 *
 *
 * @see CyclicShape
 * @see ModCyclicShapeModifiedIterator
 *
 * @note ModCyclicShape Modifier should only be used to <b>view/read a sequence</b>,
 *       never to change the underlying sequence. Some operations will work, e.g.
 *       you can use the <tt>operator*()</tt> of the ModifiedIterator to change
 *       a character, but other operations like <tt>replace</tt> or <tt>append</tt>
 *       are unsafe or even conceptionally wrong.
 */

template<typename THost, typename TSpec>
class ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >
{
public:
    typedef typename Pointer_<THost>::Type                  THostPointer_;
    typedef typename Cargo<ModifiedString>::Type            TCargo_;
    typedef CyclicShape<TSpec>                              TCyclicShape;

    mutable THostPointer_ _host;
    TCargo_ _cargo;

    // TODO(meiers): Once the Modified String has been propperly documented, document
    //               the special constructors for ModCyclicShape Modified Strings

    // Default constructor.
    ModifiedString()
    {}

    // Construct with the actual host.
    explicit
    ModifiedString(typename Parameter_<THost>::Type host) :
        _host(_toPointer(host))
    {}

    // Construct with the actual host; variant with shape.
    explicit
    ModifiedString(typename Parameter_<THost>::Type host, TCyclicShape const & shape) :
        _host(_toPointer(host)), _cargo(shape)
    {}

    // Constructor for creating a ModifiedString with const host with a non-const host.
    template<typename THost_>
    explicit
    ModifiedString(THost_ & host,
                   SEQAN_CTOR_ENABLE_IF(IsConstructible<THost, THost_>)) :
        _host(_toPointer(host))
    {
        ignoreUnusedVariableWarning(dummy);
    }

    // Constructor for creating a ModifiedString with const host with a non-const host; variant with shape.
    template<typename THost_>
    explicit ModifiedString(THost_ & host,
                            TCyclicShape const & shape,
                            SEQAN_CTOR_ENABLE_IF(IsConstructible<THost, THost_>)) :
        _host(_toPointer(host)), _cargo(shape)
    {
        ignoreUnusedVariableWarning(dummy);
    }

    // Constructor for innermost type; hand down to _host which is a ModifiedString itself.  Non-const variant.
    template<typename THost_>
    explicit
    ModifiedString(THost_ && host,
                   SEQAN_CTOR_ENABLE_IF(IsAnInnerHost<
                                            typename RemoveReference<THost>::Type,
                                            typename RemoveReference<THost_>::Type>)) :
        _host(host)                     // TODO(meiers): need std::forward<THost_>(host) here?
    {
        ignoreUnusedVariableWarning(dummy);
    }

    // Constructor for innermost type; hand down to _host which is a ModifiedString itself.
    // Non-const variant with shape.
    template<typename THost_>
    explicit
    ModifiedString(THost_ && host,
                   TCyclicShape const & shape,
                   SEQAN_CTOR_ENABLE_IF(IsAnInnerHost<
                                            typename RemoveReference<THost>::Type,
                                            typename RemoveReference<THost_>::Type>)) :
        _host(host), _cargo(shape)
    {
        ignoreUnusedVariableWarning(dummy);
    }

    template<typename TPos>
    inline typename Reference<ModifiedString>::Type
        operator[] (TPos pos)
    {
        return value(*this, pos);
    }

    template<typename TPos>
    inline typename Reference<ModifiedString const>::Type
        operator[] (TPos pos) const
    {
        return value(*this, pos);
    }
};

// ==========================================================================
// Metafunctions
// ==========================================================================

// --------------------------------------------------------------------------
// Metafunction Cargo                       [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

/*!
 * @mfn ModCyclicShapeModifiedIterator#Cargo
 * @headerfile <seqan/modifier.h>
 * @brief Cargo of ModCyclicShape ModCyclicShape Modified Iterator and ModCyclicShape Modified String.
 * @signature Cargo<ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > >::Type;
 * @tparam THost Host iterator of ModifiedIterator.
 * @tparam TSpec Specialization of CyclicShape.
 * @return Cargo type of ModCyclicShape Modified Iterator is the CyclicShape itself.
 */

template<typename THost, typename TSpec>
struct Cargo<ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > >
{
    typedef CyclicShape<TSpec> Type;
};

// --------------------------------------------------------------------------
// Metafunction Cargo                         [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

/*!
 * @mfn ModCyclicShapeModifiedString#Cargo
 * @headerfile <seqan/modifier.h>
 * @brief Cargo of ModCyclicShape ModCyclicShape Modified Iterator and ModCyclicShape Modified String.
 * @signature Cargo<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > >::Type;
 * @tparam THost Host container of ModifiedString.
 * @tparam TSpec Specialization of CyclicShape.
 * @return Cargo type of ModCyclicShape Modified String is the CyclicShape itself.
 */

template<typename THost, typename TSpec>
struct Cargo<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > >
{
    typedef CyclicShape<TSpec> Type;
};

// --------------------------------------------------------------------------
// Metafunction Iterator                      [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
struct Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >, Standard>
{
    typedef ModifiedIterator<typename Iterator<THost, Standard>::Type,
        ModCyclicShape<CyclicShape<TSpec> > > Type;
};

// TODO(meiers): Rooted ?

template<typename THost, typename TSpec>
struct Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const, Standard>
{
    typedef ModifiedIterator<typename Iterator<THost const, Standard>::Type,
        ModCyclicShape<CyclicShape<TSpec> > > Type;
};

// --------------------------------------------------------------------------
// Metafunction DefaultIteratorSpec           [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
struct DefaultIteratorSpec<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > >
{
    typedef Standard Type;
};

// ==========================================================================
// Functions
// ==========================================================================

// --------------------------------------------------------------------------
// Function begin()                           [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec, typename TTagSpec>
inline typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const,
    Tag<TTagSpec> const>::Type
begin(ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const & me, Tag<TTagSpec> const tag_)
{
    typedef typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const,
        Tag<TTagSpec> const>::Type TResult;
    typedef typename Size<CyclicShape<TSpec> >::Type TSize;

    TResult tmp(begin(host(me), tag_));
    _copyCargo(tmp, me);
    host(tmp) += (TSize)cargo(me).loffset;
    return tmp;
}

template<typename THost, typename TSpec, typename TTagSpec>
inline typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >,
    Tag<TTagSpec> const>::Type
begin(ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, Tag<TTagSpec> const tag_)
{
    typedef typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >,
        Tag<TTagSpec> const>::Type TResult;
    typedef typename Size<CyclicShape<TSpec> >::Type TSize;

    TResult tmp(begin(host(me), tag_));
    _copyCargo(tmp, me);
    host(tmp) += (TSize)cargo(me).loffset;
    return tmp;
}

// --------------------------------------------------------------------------
// Function end()                             [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

/*!
 * @fn ModCyclicShapeModifiedString#end
 * @headerfile <seqan/modifier.h>
 * @brief Returns an iterator to the end of the container.
 * @signature TIterator end(modStr[, tag]);
 * @tparam TIterator ModCyclicShape Modified Iterator to be returned.
 * @param[in] modStr ModCyclicShape Modified String.
 * @param[in] An optional tag for selecting the type of the iterator.
 *            One of Standard and Rooted. When left out,
 *            @link ContainerConcept#DefaultGetIteratorSpec @endlink of <tt>modStr</tt> is used.
 * @return Iterator to the end of the container, the type is selected by #Fn<>ContainerConcept#Iterator
 *         with the given (or default) tag.
 *
 * The end iterator is not guaranteed to be at position <tt>length(modStr)</tt>, where
 * a standard iterator ends. Due to the jumping-tequniche of ModCyclicShape
 * Modified Iterator, the end iterator is set to the first care position after
 * the end of the string. The invariant is: <tt>host(end(modStr)) >= end(host(modStr))<tt>
 * where the the larger or equal operator refers to the position in the sequence.
 *
 * If for some reason you use the host iterator to check an end condition, make sure
 * you use <tt> for(...; host(modIter) >= end(host(modStr)); ...) </tt> instead of
 * <tt> for(...; host(modIter) != end(host(modStr)); ...) </tt>.
 */

template<typename THost, typename TSpec, typename TTagSpec>
inline typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const,
    Tag<TTagSpec> const>::Type
end(ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const & me, Tag<TTagSpec> const tag_)
{
    typedef typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > const,
        Tag<TTagSpec> const>::Type TResult;
    TResult tmp(end(host(me), tag_));
    _copyCargo(tmp, me);
    goEnd(tmp, me);
    return tmp;
}

template<typename THost, typename TSpec, typename TTagSpec>
inline typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >,
    Tag<TTagSpec> const>::Type
end(ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, Tag<TTagSpec> const tag_)
{
    typedef typename Iterator<ModifiedString<THost, ModCyclicShape<CyclicShape<TSpec> > >,
        Tag<TTagSpec> const>::Type TResult;
    TResult tmp(end(host(me), tag_));
    _copyCargo(tmp, me);
    goEnd(tmp, me);
    return tmp;
}

// --------------------------------------------------------------------------
// Function goNext()                        [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline void
goNext(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    host(me) += cargo(me).diffs[me._idx];
    if (++me._idx == weight(cargo(me)))
        me._idx = 0;
}

// --------------------------------------------------------------------------
// Function goPrevious()                    [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline void
goPrevious(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    if (me._idx == 0)
        me._idx = weight(cargo(me));
    --me._idx;
    host(me) -= cargo(me).diffs[me._idx];
}

// --------------------------------------------------------------------------
// Function goBegin()                       [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline void
goBegin(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    goBegin(host(me));
    me._idx = 0;
    host(me) += cargo(me).loffset;
}

template<typename THost, typename TSpec, typename TContainer>
inline void
goBegin(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, TContainer & cont)
{
    goBegin(host(me), host(cont));
    me._idx = 0;
    host(me) += cargo(me).loffset;
}

template<typename THost, typename TSpec, typename TContainer>
inline void
goBegin(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, TContainer const & cont)
{
    goBegin(host(me), host(cont));
    me._idx = 0;
    host(me) += cargo(me).loffset;
}

// --------------------------------------------------------------------------
// Function goEnd()                         [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline void
goEnd(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    goBegin(host(me));

    THost _end(host(me));
    goEnd(_end);

    typedef typename Position<THost>::Type TPos;
    TPos len = _end - host(me);
    TPos pos = cargo(me).span * (len / cargo(me).span) + cargo(me).loffset;

    for (me._idx = 0; pos < len; me._idx = (me._idx + 1) % weight(cargo(me)))
        pos += cargo(me).diffs[me._idx];

    host(me) += pos;
}

template<typename THost, typename TSpec, typename TContainer>
inline void
goEnd(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, TContainer & cont)
{
    goBegin(host(me), host(cont));

    typedef typename Position<THost>::Type TPos;
    TPos len = length(host(cont));
    TPos pos = cargo(me).span * (len / cargo(me).span) + cargo(me).loffset;

    for (me._idx = 0; pos < len; me._idx = (me._idx + 1) % weight(cargo(me)))
        pos += cargo(me).diffs[me._idx];

    host(me) += pos;
}

template<typename THost, typename TSpec, typename TContainer>
inline void
goEnd(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me, TContainer const & cont)
{
    goBegin(host(me), host(cont));

    typedef typename Position<THost>::Type TPos;
    TPos len = length(host(cont));
    TPos pos = cargo(me).span * (len / cargo(me).span) + cargo(me).loffset;

    for (me._idx = 0; pos < len; me._idx = (me._idx + 1) % weight(cargo(me)))
        pos += cargo(me).diffs[me._idx];

    host(me) += pos;
}

// --------------------------------------------------------------------------
// Function operator+=()                    [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec, typename TDelta>
inline ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > &
operator+=(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > >&me, TDelta delta)
{
    if (isNegative(delta))
    {
        me -= -(typename MakeSigned<TDelta>::Type)delta;
    }
    else
    {
        // jump full patterns
        host(me) += (delta / weight(cargo(me))) * cargo(me).span;

        // number of jumps in dist that remain
        for (delta = delta % weight(cargo(me)); delta != 0; --delta)
            goNext(me);
    }
    return me;
}

// --------------------------------------------------------------------------
// Function operator-=()                    [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec, typename TDelta>
inline ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > &
operator-=(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > >&me, TDelta delta)
{
    if (isNegative(delta))
    {
        me += -(typename MakeSigned<TDelta>::Type)delta;
    }
    else
    {
        // jump full patterns
        host(me) -= (delta / weight(cargo(me))) * cargo(me).span;

        // number of jumps in dist that remain
        for (delta = delta % weight(cargo(me)); delta != 0; --delta)
            goPrevious(me);
    }
    return me;
}

// --------------------------------------------------------------------------
// Function atBegin()                       [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline bool
atBegin(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    THost _beg(host(me));
    goBegin(_beg);
    _beg += cargo(me).DIFFS[0];
    return host(me) == _beg && me._idx == 0;
}

// --------------------------------------------------------------------------
// Function atEnd()                         [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline bool
atEnd(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > & me)
{
    ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > _tmp(me);
    goEnd(_tmp);
    return _tmp == me;
}

// --------------------------------------------------------------------------
// Function operator==()                        [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline bool
    operator == (ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const & a,
                 ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const & b)
{
    // TODO(meiers): check whether cargo is equal (but there is no operator == for CyclicShape yet)

    return host(a) == host(b) && a._idx == b._idx;
}

// --------------------------------------------------------------------------
// Function operator<()                     [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

// uses general version from modifier_iterator.h

// --------------------------------------------------------------------------
// Function operator-()                     [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline typename Difference<ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > >::Type
operator-(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const & a,
                ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const & b)
{
    typedef typename Difference<ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > >::Type TDiff;
    if (host(a) == host(b))
        return 0;

    if (a > b)
    {
        THost _a(host(a));
        THost _b(host(b));
        TDiff diff = ((_a - _b) / cargo(a).span) * weight(cargo(a));
        diff += a._idx;
        diff -= b._idx;
        return diff;
    }
    else
    {
        return -(b - a);
    }
}

// --------------------------------------------------------------------------
// Function length()                          [ModCyclicShape ModifiedString]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline typename Size<ModifiedString<THost, ModCyclicShape<TSpec> > >::Type
length(ModifiedString<THost, ModCyclicShape<TSpec> > const & me)
{
    return end(me, Standard()) - begin(me, Standard());
}

// --------------------------------------------------------------------------
// Function position()                      [ModCyclicShape ModifiedIterator]
// --------------------------------------------------------------------------

template<typename THost, typename TSpec>
inline typename Position<ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const>::Type
position(ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > const & me)
{
    ModifiedIterator<THost, ModCyclicShape<CyclicShape<TSpec> > > _tmp(me);
    goEnd(_tmp);
    return _tmp - me;
}

// TODO(meiers): What about setPosition() ??

} // namespace

#endif