Point Cloud Library (PCL)  1.6.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 Willow Garage, Inc. 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: byte_order.h 4868 2012-03-01 02:50:19Z rusu $
37  *
38  */
39 
40 #ifndef PCL_IO_PLY_BYTE_ORDER_H
41 #define PCL_IO_PLY_BYTE_ORDER_H
42 
43 namespace pcl
44 {
45  namespace io
46  {
47  namespace ply
48  {
55 #if defined (PLY_BIG_ENDIAN) || defined (PLY_LITTLE_ENDIAN)
56 # error
57 #endif
58 
59 #if (defined (__powerpc) || defined (__powerpc__) || defined (__POWERPC__) || defined (__ppc__) || defined (_M_PPC) || defined (__ARCH_PPC))
60 # define PLY_BIG_ENDIAN
61 #elif (defined (i386) || defined (__i386__) || defined (__i386) || defined (_M_IX86) || defined (_X86_) || defined (__THW_INTEL__) || defined (__I86__) || defined (__INTEL__)) \
62  || (defined (__amd64__) || defined (__amd64) || defined (__x86_64__) || defined (__x86_64) || defined (_M_X64) || defined (ANDROID))
63 # define PLY_LITTLE_ENDIAN
64 #else
65 # error
66 #endif
67 
69  {
72 #if defined (PLY_BIG_ENDIAN)
73  host_byte_order = big_endian_byte_order,
74 #elif defined (PLY_LITTLE_ENDIAN)
75  host_byte_order = little_endian_byte_order,
76 #else
77 # error
78 #endif
80  };
81 
82 #undef PLY_BIG_ENDIAN
83 #undef PLY_LITTLE_ENDIAN
84 
85  template <std::size_t N>
86  void swap_byte_order (char* bytes);
87 
88  template <>
89  inline void swap_byte_order<1> (char*) {}
90 
91  template <>
92  inline void swap_byte_order<2> (char* bytes)
93  {
94  std::swap (bytes[0], bytes[1]);
95  }
96 
97  template <>
98  inline void swap_byte_order<4> (char* bytes)
99  {
100  std::swap (bytes[0], bytes[3]);
101  std::swap (bytes[1], bytes[2]);
102  }
103 
104  template <>
105  inline void swap_byte_order<8> (char* bytes)
106  {
107  std::swap (bytes[0], bytes[7]);
108  std::swap (bytes[1], bytes[6]);
109  std::swap (bytes[2], bytes[5]);
110  std::swap (bytes[3], bytes[4]);
111  }
112 
113  template <typename T>
114  void swap_byte_order (T& value)
115  {
116  swap_byte_order<sizeof (T)> (reinterpret_cast<char*> (&value));
117  }
118 
119  } // namespace ply
120  } // namespace io
121 } // namespace pcl
122 
123 #endif // PLY_BYTE_ORDER_H