Point Cloud Library (PCL)  1.11.1-dev
byte_order.h
Go to the documentation of this file.
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2007-2012, Ares Lagae
6  * Copyright (c) 2012, Willow Garage, Inc.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of the copyright holder(s) nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  * $Id$
37  *
38  */
39 
40 #pragma once
41 
42 #include <boost/predef/other/endian.h>
43 
44 #include <cstddef>
45 
46 namespace pcl
47 {
48  namespace io
49  {
50  namespace ply
51  {
52  /** \file byte_order.h
53  * defines byte shift operations and endianness.
54  * \author Ares Lagae as part of libply, Nizar Sallem
55  * \ingroup io
56  */
57 
59  {
62 #if BOOST_ENDIAN_BIG_BYTE
63  host_byte_order = big_endian_byte_order,
64 #elif BOOST_ENDIAN_LITTLE_BYTE
65  host_byte_order = little_endian_byte_order,
66 #else
67 #error "unable to determine system endianness"
68 #endif
70  };
71 
72  template <std::size_t N>
73  void swap_byte_order (char* bytes);
74 
75  template <>
76  inline void swap_byte_order<1> (char*) {}
77 
78  template <>
79  inline void swap_byte_order<2> (char* bytes)
80  {
81  std::swap (bytes[0], bytes[1]);
82  }
83 
84  template <>
85  inline void swap_byte_order<4> (char* bytes)
86  {
87  std::swap (bytes[0], bytes[3]);
88  std::swap (bytes[1], bytes[2]);
89  }
90 
91  template <>
92  inline void swap_byte_order<8> (char* bytes)
93  {
94  std::swap (bytes[0], bytes[7]);
95  std::swap (bytes[1], bytes[6]);
96  std::swap (bytes[2], bytes[5]);
97  std::swap (bytes[3], bytes[4]);
98  }
99 
100  template <typename T>
101  void swap_byte_order (T& value)
102  {
103  swap_byte_order<sizeof (T)> (reinterpret_cast<char*> (&value));
104  }
105 
106  } // namespace ply
107  } // namespace io
108 } // namespace pcl
pcl
Definition: convolution.h:46
pcl::io::ply::little_endian_byte_order
@ little_endian_byte_order
Definition: byte_order.h:60
pcl::io::ply::big_endian_byte_order
@ big_endian_byte_order
Definition: byte_order.h:61
pcl::io::ply::swap_byte_order< 1 >
void swap_byte_order< 1 >(char *)
Definition: byte_order.h:76
pcl::io::ply::swap_byte_order< 8 >
void swap_byte_order< 8 >(char *bytes)
Definition: byte_order.h:92
pcl::io::ply::byte_order
byte_order
Definition: byte_order.h:58
pcl::io::ply::swap_byte_order
void swap_byte_order(char *bytes)
pcl::io::ply::swap_byte_order< 2 >
void swap_byte_order< 2 >(char *bytes)
Definition: byte_order.h:79
pcl::io::ply::swap_byte_order< 4 >
void swap_byte_order< 4 >(char *bytes)
Definition: byte_order.h:85
pcl::io::ply::network_byte_order
@ network_byte_order
Definition: byte_order.h:69