~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to include/liblas/detail/file_ptr_stream.hpp

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 * $Id$
 
3
 *
 
4
 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data.
 
5
 * Purpose:  Stream wrapper for FILE pointer.
 
6
 * Author:   Mateusz Loskot <mateusz@loskot.net>
 
7
 *
 
8
 ******************************************************************************
 
9
 * Copyright (c) 2010, Mateusz Loskot
 
10
 *
 
11
 * All rights reserved.
 
12
 * 
 
13
 * Redistribution and use in source and binary forms, with or without 
 
14
 * modification, are permitted provided that the following 
 
15
 * conditions are met:
 
16
 * 
 
17
 *     * Redistributions of source code must retain the above copyright 
 
18
 *       notice, this list of conditions and the following disclaimer.
 
19
 *     * Redistributions in binary form must reproduce the above copyright 
 
20
 *       notice, this list of conditions and the following disclaimer in 
 
21
 *       the documentation and/or other materials provided 
 
22
 *       with the distribution.
 
23
 *     * Neither the name of the Martin Isenburg or Iowa Department 
 
24
 *       of Natural Resources nor the names of its contributors may be 
 
25
 *       used to endorse or promote products derived from this software 
 
26
 *       without specific prior written permission.
 
27
 * 
 
28
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
 
29
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
 
30
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
 
31
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
 
32
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
 
33
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
 
34
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
 
35
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 
36
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
 
37
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
 
38
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 
39
 * OF SUCH DAMAGE.
 
40
 ****************************************************************************/
 
41
 
 
42
#ifndef LIBLAS_DETAIL_FILE_PTR_STREAM_HPP_INCLUDED
 
43
#define LIBLAS_DETAIL_FILE_PTR_STREAM_HPP_INCLUDED
 
44
 
 
45
#include <cstdio>
 
46
#include <istream>
 
47
#include <ostream>
 
48
#include <streambuf>
 
49
 
 
50
namespace liblas { namespace detail {
 
51
 
 
52
class file_ptr_streambuf : public std::streambuf
 
53
{
 
54
public:
 
55
 
 
56
    file_ptr_streambuf(FILE* fp) : std::streambuf() , fp(fp) {}
 
57
 
 
58
protected:
 
59
 
 
60
    virtual int overflow(int c)
 
61
    {
 
62
        return EOF != c ? std::fputc(c, fp) : EOF;
 
63
    }
 
64
 
 
65
    virtual int underflow()
 
66
    {
 
67
        int const c = std::getc(fp);
 
68
        if (c != EOF)
 
69
        {
 
70
            std::ungetc(c, fp);
 
71
        }
 
72
        return c;
 
73
    }
 
74
 
 
75
    virtual int uflow()
 
76
    {
 
77
        return std::getc(fp);
 
78
    }
 
79
 
 
80
    virtual int pbackfail(int c)
 
81
    {
 
82
        return EOF != c ? std::ungetc(c, fp) : EOF;
 
83
    }
 
84
 
 
85
    virtual int sync()
 
86
    {
 
87
        return std::fflush(fp);
 
88
    }
 
89
 
 
90
private:
 
91
    FILE* fp;
 
92
};
 
93
 
 
94
#pragma warning(push)
 
95
#pragma warning(disable: 4355)
 
96
 
 
97
class file_ptr_istream : private file_ptr_streambuf, public std::istream
 
98
{
 
99
public:
 
100
    explicit file_ptr_istream(FILE* fp) : file_ptr_streambuf(fp), std::istream(this) {}
 
101
};
 
102
 
 
103
class file_ptr_ostream : private file_ptr_streambuf, public std::ostream
 
104
{
 
105
public:
 
106
    explicit file_ptr_ostream(FILE* fp) : file_ptr_streambuf(fp), std::ostream(this) {}
 
107
};
 
108
 
 
109
#pragma warning(pop)
 
110
 
 
111
}} //namespace liblas::detail
 
112
 
 
113
#endif // LIBLAS_DETAIL_FILE_PTR_STREAM_HPP_INCLUDED
 
 
b'\\ No newline at end of file'