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
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2013, 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: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de>
// ==========================================================================
// A Stream specialization that works on char arrays/char *.
// ==========================================================================
// TODO(holtgrew): Using the end pointer means that the used strings are bounded which might cost some performance, although the hope is that branches are mostly predicted.
#ifndef SEQAN_STREAM_ADAPT_STREAM_CHAR_ARRAY_H_
#define SEQAN_STREAM_ADAPT_STREAM_CHAR_ARRAY_H_
namespace seqan {
// ============================================================================
// Forwards
// ============================================================================
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
/*!
* @class CharArrayStream
* @extends Stream
* @headerfile <seqan/stream.h>
* @brief Thin wrapper around <tt>char *</tt> to the @link StreamConcept @endlink concept.
*
* @signature template <typename TPointer>
* class Stream<CharArray<TPointer> >;
*
* @tparam TPointer Specification of the pointer type to work on.
*
* @section Remarks
*
* This class consists of the <tt>char *</tt>, another <tt>char *</tt> to the beginning of the array and a flag
* signifying EOF.
*
* Note that this is a bounded string variant and might have some performance problems.
*
* @section Examples
*
* Create a Char Array Stream from a @link CharString @endlink.
*
* @code{.cpp}
* CharString buffer = "This is a text.";
* Stream<CharArray<char const *> > stream(&buffer[0], &buffer[0] + length(buffer));
* @endcode
*
*
* @fn CharArrayStream::Stream
*
* @brief Constructor
*
* @signature CharArrayStream(ptr, ptrEnd);
*
* @param[in] ptrEnd The <tt>char *</tt> that works as the end of the stream.
* @param[in] ptr The <tt>char *</tt> that works as the beginning of the stream.
*/
/**
.Spec.Char Array Stream
..cat:Input/Output
..general:Class.Stream
..summary:Thin wrapper around $char *$ to the @Concept.StreamConcept|Stream@ concept.
..signature:Stream<CharArray<TPointer> >
..param.TPointer:Specification of the pointer type to work on.
...type:nolink:$char *$, $char const *$.
..remarks:This class consists of the $char *$, another $char *$ to the beginning of the array and a flag signifying EOF.
..remarks:Note that this is a bounded string variant and might have some performance problems.
..remarks:One major use case for this is to create a @Class.RecordReader@ of a string for parsing.
..include:seqan/stream.h
..example.text:Create a Char Array Stream from a @Shortcut.CharString@.
..example.code:
CharString buffer = "This is a text.";
Stream<CharArray<char const *> > stream(&buffer[0], &buffer[0] + length(buffer));
.Memfunc.Char Array Stream#Stream
..summary:Constructor
..class:Spec.Char Array Stream
..signature:CharArrayStream(ptr, ptrEnd)
..param.ptr:The $char *$ that works as the "beginning" of the stream.
..param.ptrEnd:The $char *$ that works as the "end" of the stream.
*/
template <typename TPointer>
class Stream<CharArray<TPointer> >
{
public:
// -----------------------------------------------------------------------
// Members
// -----------------------------------------------------------------------
TPointer _base;
TPointer _ptr;
TPointer _end;
bool _eof;
// -----------------------------------------------------------------------
// Constructors
// -----------------------------------------------------------------------
Stream() {}
Stream(TPointer p, TPointer e) : _base(p), _ptr(p), _end(e), _eof(false)
{}
Stream(Stream<CharArray<typename RemoveConst_<typename Value<TPointer>::Type>::Type *> > const & other)
: _base(other._base), _ptr(other._ptr), _end(other._end), _eof(other._eof)
{}
};
// ============================================================================
// Metafunctions
// ============================================================================
// ----------------------------------------------------------------------------
// Metafunction Difference
// ----------------------------------------------------------------------------
template <>
struct Difference<Stream<CharArray<char *> > >
{
typedef Difference<char *>::Type Type;
};
template <>
struct Difference<Stream<CharArray<char const *> > >
{
typedef Difference<char const *>::Type Type;
};
// ----------------------------------------------------------------------------
// Metafunction Position
// ----------------------------------------------------------------------------
template <>
struct Position<Stream<CharArray<char *> > >
{
typedef Position<char *>::Type Type;
};
template <>
struct Position<Stream<CharArray<char const *> > >
{
typedef Position<char const *>::Type Type;
};
// ----------------------------------------------------------------------------
// Metafunction Size
// ----------------------------------------------------------------------------
template <>
struct Size<Stream<CharArray<char *> > >
{
typedef Size<char *>::Type Type;
};
template <>
struct Size<Stream<CharArray<char const *> > >
{
typedef Size<char const *>::Type Type;
};
// ----------------------------------------------------------------------------
// Metafunction Value
// ----------------------------------------------------------------------------
template <>
struct Value<Stream<CharArray<char *> > >
{
typedef Size<char *>::Type Type;
};
template <>
struct Value<Stream<CharArray<char const *> > >
{
typedef Value<char const *>::Type Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, IsInput>
// ----------------------------------------------------------------------------
template <>
struct HasStreamFeature<Stream<CharArray<char *> >, IsInput>
{
typedef True Type;
};
template <>
struct HasStreamFeature<Stream<CharArray<char const *> >, IsInput>
{
typedef True Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, IsOutput>
// ----------------------------------------------------------------------------
template <>
struct HasStreamFeature<Stream<CharArray<char *> >, IsOutput>
{
typedef True Type;
};
template <>
struct HasStreamFeature<Stream<CharArray<char const *> >, IsOutput>
{
typedef False Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, HasPeek>
// ----------------------------------------------------------------------------
template <>
struct HasStreamFeature<Stream<CharArray<char *> >, HasPeek>
{
typedef True Type;
};
template <>
struct HasStreamFeature<Stream<CharArray<char const *> >, HasPeek>
{
typedef True Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, HasFilename>
// ----------------------------------------------------------------------------
template <>
struct HasStreamFeature<Stream<CharArray<char *> >, HasFilename>
{
typedef False Type;
};
template <>
struct HasStreamFeature<Stream<CharArray<char const *> >, HasFilename>
{
typedef False Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, Seek<TSpec> >
// ----------------------------------------------------------------------------
template <typename TSpec>
struct HasStreamFeature<Stream<CharArray<char *> >, Seek<TSpec> >
{
typedef True Type;
};
template <typename TSpec>
struct HasStreamFeature<Stream<CharArray<char const *> >, Seek<TSpec> >
{
typedef True Type;
};
// ----------------------------------------------------------------------------
// Metafunction HasStreamFeature<, Tell>
// ----------------------------------------------------------------------------
template <>
struct HasStreamFeature<Stream<CharArray<char *> >, Tell>
{
typedef True Type;
};
template <>
struct HasStreamFeature<Stream<CharArray<char const *> >, Tell>
{
typedef True Type;
};
// ============================================================================
// Functions
// ============================================================================
// ----------------------------------------------------------------------------
// Function streamPeek()
// ----------------------------------------------------------------------------
inline int
_streamPeekImpl(char & c, char const * & ptr, char const * & end, bool & eof)
{
if (ptr != end) {
c = *ptr;
return 0;
} else {
eof = true;
return EOF;
}
}
inline int
streamPeek(char & c, Stream<CharArray<char const *> > & stream)
{
return _streamPeekImpl(c, stream._ptr, stream._end, stream._eof);
}
inline int
streamPeek(char & c, Stream<CharArray<char *> > & stream)
{
return _streamPeekImpl(c, const_cast<char const *&>(stream._ptr), const_cast<char const *&>(stream._end), stream._eof);
}
// ----------------------------------------------------------------------------
// Function streamReadChar()
// ----------------------------------------------------------------------------
inline int
_streamReadCharImpl(bool & eof, char & c, char const * & ptr, char const * & end)
{
if (ptr != end) {
c = *ptr;
++ptr;
return 0;
} else {
eof = true;
return EOF;
}
}
inline int
streamReadChar(char & c, Stream<CharArray<char const *> > & stream)
{
return _streamReadCharImpl(stream._eof, c, stream._ptr, stream._end);
}
inline int
streamReadChar(char & c, Stream<CharArray<char *> > & stream)
{
return _streamReadCharImpl(stream._eof, c, const_cast<char const *&>(stream._ptr), const_cast<char const *&>(stream._end));
}
// ----------------------------------------------------------------------------
// Function streamEof()
// ----------------------------------------------------------------------------
inline bool
streamEof(Stream<CharArray<char const *> > & stream)
{
return stream._eof;
}
inline bool
streamEof(Stream<CharArray<char *> > & stream)
{
return stream._eof;
}
// ----------------------------------------------------------------------------
// Function streamReadBlock()
// ----------------------------------------------------------------------------
inline size_t
_streamReadBlockImpl(bool & eof, char * target, char const * & ptr, char const * & end, size_t maxLen)
{
char * targetPtr = target;
size_t valuesRead = 0;
for (size_t i = 0; i < maxLen; ++i) {
if (ptr != end) {
++valuesRead;
*targetPtr++ = *ptr++;
} else {
eof = true;
break;
}
}
return valuesRead;
}
inline size_t
streamReadBlock(char * target, Stream<CharArray<char const *> > & stream, size_t maxLen)
{
return _streamReadBlockImpl(stream._eof, target, stream._ptr, stream._end, maxLen);
}
inline size_t
streamReadBlock(char * target, Stream<CharArray<char *> > & stream, size_t maxLen)
{
return _streamReadBlockImpl(stream._eof, target, const_cast<char const *&>(stream._ptr), const_cast<char const *&>(stream._end), maxLen);
}
// ----------------------------------------------------------------------------
// Function streamWriteChar
// ----------------------------------------------------------------------------
inline int
streamWriteChar(Stream<CharArray<char *> > & stream, char const c)
{
if (stream._ptr != stream._end) { // Const-sized stream.
*stream._ptr = c;
++stream._ptr;
return 0;
} else {
stream._eof = true;
return EOF;
}
}
// ----------------------------------------------------------------------------
// Function streamWriteBlock()
// ----------------------------------------------------------------------------
inline size_t
streamWriteBlock(Stream<CharArray<char *> > & stream, char const * source, size_t count)
{
size_t charsWritten = 0;
for (; charsWritten < count && stream._ptr != stream._end; ++source, ++stream._ptr, ++charsWritten)
*stream._ptr = *source;
if (stream._ptr == stream._end)
stream._eof = true;
return charsWritten;
}
// ----------------------------------------------------------------------------
// Function streamFlush()
// ----------------------------------------------------------------------------
inline int
streamFlush(Stream<CharArray<char *> > & /*stream*/)
{
return 0;
}
inline int
streamFlush(Stream<CharArray<char const *> > & /*stream*/)
{
return 0;
}
// ----------------------------------------------------------------------------
// Function streamSeek()
// ----------------------------------------------------------------------------
inline int
_streamSeekImpl(char const * & ptr, char const * base, char const * end, ptrdiff_t delta, int origin)
{
switch (origin) {
case SEEK_SET:
if (base + delta > end)
return 1;
ptr = base + delta;
return 0;
case SEEK_CUR:
if (ptr + delta > end)
return 1;
ptr = ptr + delta;
return 0;
default: // SEEK_END
if (delta > 0)
return 1;
ptr = end + delta;
return 0;
}
}
inline int
streamSeek(Stream<CharArray<char const *> > & stream, ptrdiff_t delta, int origin)
{
return _streamSeekImpl(stream._ptr, stream._base, stream._end, delta, origin);
}
inline int
streamSeek(Stream<CharArray<char *> > & stream, ptrdiff_t delta, int origin)
{
return _streamSeekImpl(const_cast<char const * &>(stream._ptr), stream._base, stream._end, delta, origin);
}
// ----------------------------------------------------------------------------
// Function streamTell()
// ----------------------------------------------------------------------------
inline size_t
streamTell(Stream<CharArray<char *> > & stream)
{
return stream._ptr - stream._base;
}
inline size_t
streamTell(Stream<CharArray<char const *> > & stream)
{
return stream._ptr - stream._base;
}
// ----------------------------------------------------------------------------
// Function streamError
// ----------------------------------------------------------------------------
inline int
streamError(Stream<CharArray<char *> > & /*stream*/)
{
return 0;
}
inline int
streamError(Stream<CharArray<char const *> > & /*stream*/)
{
return 0;
}
} // namespace seqan
#endif // #ifndef SEQAN_STREAM_ADAPT_STREAM_CHAR_ARRAY_H_
|