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

« back to all changes in this revision

Viewing changes to src/detail/writer/point.cpp

  • 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:  Point Writer implementation for C++ libLAS 
 
6
 * Author:   Howard Butler, hobu.inc@gmail.com
 
7
 *
 
8
 ******************************************************************************
 
9
 * Copyright (c) 2010, Howard Butler
 
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
#include <liblas/header.hpp>
 
43
#include <liblas/variablerecord.hpp>
 
44
#include <liblas/schema.hpp>
 
45
#include <liblas/detail/writer/writer.hpp>
 
46
#include <liblas/detail/writer/point.hpp>
 
47
#include <liblas/detail/private_utility.hpp>
 
48
// boost
 
49
#include <boost/cstdint.hpp>
 
50
// std
 
51
#include <cmath>
 
52
#include <sstream> 
 
53
 
 
54
using namespace boost;
 
55
 
 
56
namespace liblas { namespace detail { namespace writer {
 
57
 
 
58
Point::Point(std::ostream& ofs, boost::uint32_t& count, HeaderPtr header)
 
59
    : m_ofs(ofs)
 
60
    , m_header(header)
 
61
    , m_format(header->GetSchema())
 
62
    , m_pointCount(count)
 
63
{
 
64
    setup();
 
65
}
 
66
 
 
67
Point::~Point()
 
68
{
 
69
 
 
70
}
 
71
 
 
72
void Point::setup()
 
73
{
 
74
    // If we have extra data on each point by virtue of the 
 
75
    // base size of the format being smaller than the total byte 
 
76
    // size of the format, we should make a buffer of blank data 
 
77
    // that we can write into the file as necessary.  We make it 
 
78
    // here instead of at each ::write() invocation to save the 
 
79
    // allocation and writing of the array
 
80
    if (m_format.GetByteSize() != m_format.GetBaseByteSize())
 
81
        {
 
82
        std::size_t const size = m_format.GetByteSize() - m_format.GetBaseByteSize();
 
83
        
 
84
        m_blanks.resize(size);
 
85
        m_blanks.assign(size, 0);
 
86
    }
 
87
}
 
88
 
 
89
void Point::write(const liblas::Point& point)
 
90
{
 
91
    
 
92
    std::vector<boost::uint8_t> const& data = point.GetData();    
 
93
    detail::write_n(m_ofs, data.front(), m_header->GetDataRecordLength());
 
94
    
 
95
    m_pointCount++;
 
96
 
 
97
    // write in our extra data that the user set on the 
 
98
    // point up to the header's specified DataRecordLength
 
99
    // if (m_format.GetByteSize() != m_format.GetBaseByteSize()) {
 
100
    //     std::vector<uint8_t> const& data = point.GetExtraData();
 
101
    // 
 
102
    //     std::size_t size = m_format.GetByteSize() - m_format.GetBaseByteSize();
 
103
    //     
 
104
    //     if (size < 0) {
 
105
    //         throw std::runtime_error("ByteSize of format was less than BaseByteSize, this cannot happen!");
 
106
    //     }
 
107
    //     
 
108
    //     if (data.size() == 0) {
 
109
    // 
 
110
    //         detail::write_n(GetStream(), m_blanks.front(), static_cast<std::streamsize>(size));
 
111
    //         
 
112
    //     } else if (data.size() < size){ 
 
113
    //         // size can be casted now that we have already checked if it is less than 0
 
114
    //         int16_t difference = static_cast<uint16_t>(size) - static_cast<uint16_t>(data.size());
 
115
    //         detail::write_n(GetStream(), data.front(), data.size());
 
116
    //         detail::write_n(GetStream(), m_blanks.front(), static_cast<std::streamsize>(difference));
 
117
    // 
 
118
    //     } else {
 
119
    //         detail::write_n(GetStream(), data.front(), static_cast<std::streamsize>(size));
 
120
    //     }
 
121
    // }
 
122
}
 
123
 
 
124
 
 
125
}}} // namespace liblas::detail::reader