Point Cloud Library (PCL)  1.14.0-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 #include <utility> // for swap
46 
47 namespace pcl
48 {
49  namespace io
50  {
51  namespace ply
52  {
53  /** \file byte_order.h
54  * defines byte shift operations and endianness.
55  * \author Ares Lagae as part of libply, Nizar Sallem
56  * \ingroup io
57  */
58 
60  {
63 #if BOOST_ENDIAN_BIG_BYTE
64  host_byte_order = big_endian_byte_order,
65 #elif BOOST_ENDIAN_LITTLE_BYTE
66  host_byte_order = little_endian_byte_order,
67 #else
68 #error "unable to determine system endianness"
69 #endif
71  };
72 
73  template <std::size_t N>
74  void swap_byte_order (char* bytes);
75 
76  template <>
77  inline void swap_byte_order<1> (char*) {}
78 
79  template <>
80  inline void swap_byte_order<2> (char* bytes)
81  {
82  std::swap (bytes[0], bytes[1]);
83  }
84 
85  template <>
86  inline void swap_byte_order<4> (char* bytes)
87  {
88  std::swap (bytes[0], bytes[3]);
89  std::swap (bytes[1], bytes[2]);
90  }
91 
92  template <>
93  inline void swap_byte_order<8> (char* bytes)
94  {
95  std::swap (bytes[0], bytes[7]);
96  std::swap (bytes[1], bytes[6]);
97  std::swap (bytes[2], bytes[5]);
98  std::swap (bytes[3], bytes[4]);
99  }
100 
101  template <typename T>
102  void swap_byte_order (T& value)
103  {
104  swap_byte_order<sizeof (T)> (reinterpret_cast<char*> (&value));
105  }
106 
107  } // namespace ply
108  } // namespace io
109 } // namespace pcl
void swap_byte_order(char *bytes)
void swap_byte_order< 1 >(char *)
Definition: byte_order.h:77
@ big_endian_byte_order
Definition: byte_order.h:62
@ network_byte_order
Definition: byte_order.h:70
@ little_endian_byte_order
Definition: byte_order.h:61
void swap_byte_order< 4 >(char *bytes)
Definition: byte_order.h:86
void swap_byte_order< 2 >(char *bytes)
Definition: byte_order.h:80
void swap_byte_order< 8 >(char *bytes)
Definition: byte_order.h:93