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
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2018, 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: Andreas Gogol-Doering <andreas.doering@mdc-berlin.de>
// ==========================================================================
// Implementation of the Prefix Segment specialization.
// ==========================================================================
#ifndef SEQAN_HEADER_SEGMENT_PREFIX_H
#define SEQAN_HEADER_SEGMENT_PREFIX_H
namespace seqan
{
//////////////////////////////////////////////////////////////////////////////
// PrefixSegment
//////////////////////////////////////////////////////////////////////////////
/*!
* @class PrefixSegment Prefix Segment
* @extends Segment
* @headerfile <seqan/sequence.h>
* @brief A prefix of a sequence.
*
* @signature template <typename THost>
* class Segment<THost, PrefixSegment>;
*
* @tparam THost The underlying @link ContainerConcept sequence @endlink type.
*
* @see InfixSegment
* @see SuffixSegment
* @aka substring
*/
struct PrefixSegment {};
template <typename THost_>
class Segment<THost_, PrefixSegment>
{
public:
typedef typename Host<Segment>::Type THost;
typename Pointer_<THost>::Type data_host;
typename Position<THost>::Type data_end_position;
//____________________________________________________________________________
public:
Segment():
data_host(),
data_end_position(0)
{}
Segment(THost & _host):
data_host(& _host),
data_end_position(length(_host))
{}
Segment(typename Parameter_<THost>::Type _host, typename Position<THost>::Type _end_index):
data_host(_toPointer(_host)),
data_end_position(_end_index)
{}
/*
Segment(typename Parameter_<THost>::Type _host, typename Iterator<THost, Rooted>::Type _end):
data_host(_toPointer(_host)),
data_end_position(position(_end))
{}
*/
Segment(typename Parameter_<THost>::Type _host, typename Iterator<THost const, Standard>::Type _end):
data_host(_toPointer(_host)),
data_end_position(position(_end, _host))
{}
/*
Segment(Segment const & _other):
data_host(_other.data_host),
data_end_position(_other.data_end_position)
{}
*/
template <typename THost2, typename TSpec2>
Segment(Segment<THost2, TSpec2> const & _other) :
data_host(_toPointer(host(_other))),
data_end_position(endPosition(_other))
{}
inline Segment &
operator = (Segment const & source)
{
assign(*this, source);
return *this;
}
template<typename T> explicit operator T () const
{
T temp_copy;
assign(temp_copy, *this);
return temp_copy;
}
//____________________________________________________________________________
public:
template <typename TPos>
inline typename Reference<Segment>::Type
operator [] (TPos pos)
{
return value(*this, pos);
}
template <typename TPos>
inline typename Reference<Segment const>::Type
operator [] (TPos pos) const
{
return value(*this, pos);
}
//____________________________________________________________________________
};
//////////////////////////////////////////////////////////////////////////////
// template <typename THost>
// inline void
// clear(Segment<THost, PrefixSegment> & target)
// {
// replace(host(target), beginPosition(target), endPosition(target), "");
// setEndPosition(target, 0);
// }
template <typename THost_>
inline typename Parameter_<THost_>::Type
host(Segment<THost_, PrefixSegment> & me)
{
return _toParameter<THost_>(me.data_host);
}
template <typename THost_>
inline typename Parameter_<THost_>::Type
host(Segment<THost_, PrefixSegment> const & me)
{
return _toParameter<THost_>(me.data_host);
}
//____________________________________________________________________________
template <typename THost_>
inline void
setHost(Segment<THost_, PrefixSegment> & me, typename Parameter_<THost_>::Type _host)
{
me.data_host = _toPointer(_host);
}
template <typename THost_>
inline void
setHost(Segment<THost_ const, PrefixSegment> & me, typename Parameter_<THost_>::Type _host)
{
me.data_host = _toPointer(_host);
}
//____________________________________________________________________________
template <typename THost_>
inline typename Iterator<Segment<THost_, PrefixSegment>, Standard>::Type
begin(Segment<THost_, PrefixSegment> & me,
Standard)
{
// TODO(holtgrew): An update at another point is required to make the call chain "return begin(host(me), Standard())" possible again. Same below.
typename Parameter_<THost_>::Type tmpHost = host(me);
return begin(tmpHost, Standard());
}
template <typename THost_>
inline typename Iterator<Segment<THost_, PrefixSegment> const, Standard>::Type
begin(Segment<THost_, PrefixSegment> const & me,
Standard)
{
typename Parameter_<THost_>::Type tmpHost = host(me);
return begin(tmpHost, Standard());
}
//____________________________________________________________________________
template <typename THost_>
inline typename Position<Segment<THost_, PrefixSegment> const>::Type
beginPosition(Segment<THost_, PrefixSegment> const & /*me*/)
{
return 0;
}
template <typename THost_>
inline typename Position<Segment<THost_, PrefixSegment> >::Type
beginPosition(Segment<THost_, PrefixSegment> & /*me*/)
{
return 0;
}
//____________________________________________________________________________
template <typename THost_, typename TIterator>
inline void
setBegin(Segment<THost_, PrefixSegment> &, TIterator)
{
}
//____________________________________________________________________________
template <typename THost_>
inline typename Iterator<Segment<THost_, PrefixSegment>, Standard>::Type
end(Segment<THost_, PrefixSegment> & me,
Standard)
{
return begin(host(me), Standard()) + me.data_end_position;
}
template <typename THost_>
inline typename Iterator<Segment<THost_, PrefixSegment> const, Standard>::Type
end(Segment<THost_, PrefixSegment> const & me,
Standard)
{
return begin(host(me), Standard()) + me.data_end_position;
}
//____________________________________________________________________________
template <typename THost_, typename TPosition>
inline void
setEndPosition(Segment<THost_, PrefixSegment> & me, TPosition new_end)
{
me.data_end_position = new_end;
}
template <typename THost_, typename TIterator>
inline void
setEnd(Segment<THost_, PrefixSegment> & me, TIterator new_end)
{
// me.data_end_position = new_end - begin(host(me));//, Standard());
me.data_end_position = new_end - TIterator(begin(host(me)));
}
template <typename THost_>
inline void
setEnd(typename Iterator<Segment<THost_, PrefixSegment>, Rooted>::Type new_end)
{
container(new_end).data_end_position = hostIterator(new_end) - begin(host(container(new_end)));//, Standard());
}
//____________________________________________________________________________
template <typename THost_, typename TSize>
inline void
_setLength(
Segment<THost_, PrefixSegment> & me,
TSize new_length)
{
me.data_end_position = new_length;
}
//____________________________________________________________________________
template <typename THost_>
inline typename Position<Segment<THost_, PrefixSegment> >::Type
endPosition(Segment<THost_, PrefixSegment> & me)
{
return me.data_end_position;
}
template <typename THost_>
inline typename Position<Segment<THost_, PrefixSegment> const>::Type
endPosition(Segment<THost_, PrefixSegment> const & me)
{
return me.data_end_position;
}
//////////////////////////////////////////////////////////////////////////////
struct InfixSegment;
struct SuffixSegment;
template <typename THost>
struct Prefix
{
typedef Segment<THost, PrefixSegment> Type;
};
template <typename THost>
struct Prefix< Segment<THost, InfixSegment> >
{
typedef Segment<THost, InfixSegment> Type;
};
template <typename THost>
struct Prefix< Segment<THost, SuffixSegment> >
{
typedef Segment<THost, InfixSegment> Type;
};
template <typename THost>
struct Prefix< Segment<THost, PrefixSegment> >
{
typedef Segment<THost, PrefixSegment> Type;
};
template <typename THost, typename TSpec>
struct Prefix< Segment<THost, TSpec> const >:
Prefix< Segment<THost, TSpec> > {};
template <typename THost>
struct Prefix<THost &>:
Prefix<THost> {};
// ----------------------------------------------------------------------------
// Metafunction PrefixOnValue
// ----------------------------------------------------------------------------
template <typename T>
struct PrefixOnValue :
Prefix<T>{};
//////////////////////////////////////////////////////////////////////////////
template <typename THost, typename TPosition>
inline void
set(Segment<THost, PrefixSegment> & me,
THost & host_,
TPosition end_)
{
setHost(me, host_);
setEndPosition(me, end_);
}
//____________________________________________________________________________
template <typename THost>
inline void
set(Segment<THost, PrefixSegment> & me,
THost & host_)
{
setHost(me, host_);
setEnd(me, end(host_));
}
//____________________________________________________________________________
template <typename THost, typename TSpec>
inline void
set(Segment<THost, PrefixSegment> & me,
Segment<THost, TSpec> & source)
{
setHost(me, host(source));
setEndPosition(me, endPosition(source));
}
template <typename THost, typename TSpec>
inline void
set(Segment<THost, PrefixSegment> & me,
Segment<THost, TSpec> const & source)
{
setHost(me, host(source));
setEndPosition(me, endPosition(source));
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline bool
atBegin(Segment<THost, PrefixSegment> const & segment)
{
return (endPosition(segment) == length(host(segment)));
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline bool
atEnd(Segment<THost, PrefixSegment> const & segment)
{
return (endPosition(segment) == 0);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline void
goBegin(Segment<THost, PrefixSegment> & segment,
THost &)
{
goBegin(segment);
}
template <typename THost>
inline void
goBegin(Segment<THost, PrefixSegment> & segment)
{
setEnd(segment);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline void
goEnd(Segment<THost, PrefixSegment> & segment,
THost &)
{
goEnd(segment);
}
template <typename THost>
inline void
goEnd(Segment<THost, PrefixSegment> & segment)
{
setEnd(segment, 0);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline Segment<THost, PrefixSegment> &
operator ++(Segment<THost, PrefixSegment> & segment)
{
setEnd(segment, endPosition(segment) - 1);
return segment;
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline Segment<THost, PrefixSegment> &
operator --(Segment<THost, PrefixSegment> & segment)
{
setEnd(segment, endPosition(segment) + 1);
return segment;
}
//////////////////////////////////////////////////////////////////////////////
template <typename T, typename TPosEnd>
inline typename Prefix<T>::Type
prefix(T & t, TPosEnd pos_end)
{
return typename Prefix<T>::Type(t, pos_end);
}
template <typename T, typename TPosEnd>
inline typename Prefix<T const>::Type
prefix(T const & t, TPosEnd pos_end)
{
return typename Prefix<T const>::Type(t, pos_end);
}
template <typename T, typename TPosEnd>
inline typename Prefix<T *>::Type
prefix(T * t, TPosEnd pos_end)
{
return typename Prefix<T *>::Type (t, pos_end);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of a prefix -> is a prefix
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, PrefixSegment> >::Type
prefix(Segment<T, PrefixSegment> & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, PrefixSegment> >::Type (
host(t),
beginPosition(t) + pos_end);
}
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, PrefixSegment> const>::Type
prefix(Segment<T, PrefixSegment> const & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, PrefixSegment> const>::Type (
host(t),
beginPosition(t) + pos_end);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of an infix -> is an infix
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, InfixSegment> >::Type
prefix(Segment<T, InfixSegment> & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, InfixSegment> >::Type (
host(t),
beginPosition(t),
beginPosition(t) + pos_end);
}
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, InfixSegment> const>::Type
prefix(Segment<T, InfixSegment> const & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, InfixSegment> const>::Type (
host(t),
beginPosition(t),
beginPosition(t) + pos_end);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of an suffix -> is an infix
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, SuffixSegment> >::Type
prefix(Segment<T, SuffixSegment> & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, SuffixSegment> >::Type (
host(t),
beginPosition(t),
beginPosition(t) + pos_end);
}
template <typename T, typename TPosEnd>
inline typename Prefix<Segment<T, SuffixSegment> const>::Type
prefix(Segment<T, SuffixSegment> const & t, TPosEnd pos_end)
{
return typename Prefix<Segment<T, SuffixSegment> const>::Type (
host(t),
beginPosition(t),
beginPosition(t) + pos_end);
}
//////////////////////////////////////////////////////////////////////////////
// prefix() with iterators
template <typename T, typename TIterSpec>
inline typename Prefix<T>::Type
prefix(T & t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterEnd)
{
return typename Prefix<T>::Type(t, iterEnd);
}
template <typename T, typename TIterSpec>
inline typename Prefix<T const>::Type
prefix(T const & t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterEnd)
{
return typename Prefix<T const>::Type(t, iterEnd);
}
template <typename T, typename TIterSpec>
inline typename Prefix<T *>::Type
prefix(T * t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterEnd)
{
return typename Prefix<T *>::Type (t, iterEnd);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of a prefix -> is a prefix
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, PrefixSegment> >::Type
prefix(Segment<T, PrefixSegment> & t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, PrefixSegment> >::Type (
host(t),
iterEnd);
}
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, PrefixSegment> const>::Type
prefix(Segment<T, PrefixSegment> const & t,
Iter<Segment<T, PrefixSegment> const, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, PrefixSegment> const>::Type (
host(t),
iterEnd);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of an infix -> is an infix
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, InfixSegment> >::Type
prefix(Segment<T, InfixSegment> & t,
Iter<Segment<T, InfixSegment>, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, InfixSegment> >::Type (
host(t),
begin(t),
iterEnd);
}
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, InfixSegment> const>::Type
prefix(Segment<T, InfixSegment> const & t,
Iter<Segment<T, InfixSegment> const, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, InfixSegment> const>::Type (
host(t),
begin(t),
iterEnd);
}
//////////////////////////////////////////////////////////////////////////////
// A prefix of an suffix -> is an infix
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, SuffixSegment> >::Type
prefix(Segment<T, SuffixSegment> & t,
Iter<Segment<T, SuffixSegment> const, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, SuffixSegment> >::Type (
host(t),
begin(t),
iterEnd);
}
template <typename T, typename TIterSpec>
inline typename Prefix<Segment<T, SuffixSegment> const>::Type
prefix(Segment<T, SuffixSegment> const & t,
Iter<Segment<T, SuffixSegment> const, TIterSpec> const & iterEnd)
{
return typename Prefix<Segment<T, SuffixSegment> const>::Type (
host(t),
begin(t),
iterEnd);
}
//////////////////////////////////////////////////////////////////////////////
} //namespace seqan
#endif //#ifndef SEQAN_HEADER_...
|