]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/sort/example/generalizedstruct.cpp
update sources to v12.2.4
[ceph.git] / ceph / src / boost / libs / sort / example / generalizedstruct.cpp
index eed82c9e91111873fb94f0d42c3eded3ff022e3a..a8d4bd7890d84ce7fe8ed07bf3689dc5acf772a4 100644 (file)
-// This example shows how to sort structs using complex multiple part keys using
-// string_sort.
-//
-//  Copyright Steven Ross 2009-2014.
-//
-// Distributed under the Boost Software License, Version 1.0.
-//    (See accompanying file LICENSE_1_0.txt or copy at
-//          http://www.boost.org/LICENSE_1_0.txt)
-
-//  See http://www.boost.org/libs/sort for library home page.
-
-#include <boost/sort/spreadsort/string_sort.hpp>
-#include <boost/sort/spreadsort/float_sort.hpp>
-#include <time.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <algorithm>
-#include <vector>
-#include <iostream>
-#include <fstream>
-#include <string>
-using std::string;
-using namespace boost::sort::spreadsort;
-
-//[generalized_functors
-struct DATA_TYPE {
-  time_t birth;
-  float net_worth;
-  string first_name;
-  string last_name;
-};
-
-static const int birth_size = sizeof(time_t);
-static const int first_name_offset = birth_size + sizeof(float);
-static const boost::uint64_t base_mask = 0xff;
-
-struct lessthan {
-  inline bool operator()(const DATA_TYPE &x, const DATA_TYPE &y) const {
-    if (x.birth != y.birth) {
-      return x.birth < y.birth;
-    }
-    if (x.net_worth != y.net_worth) {
-      return x.net_worth < y.net_worth;
-    }
-    if (x.first_name != y.first_name) {
-      return x.first_name < y.first_name;
-    }
-    return x.last_name < y.last_name;
-  }
-};
-
-struct bracket {
-  inline unsigned char operator()(const DATA_TYPE &x, size_t offset) const {
-    // Sort date as a signed int, returning the appropriate byte.
-    if (offset < birth_size) {
-      const int bit_shift = 8 * (birth_size - offset - 1);
-      unsigned char result = (x.birth & (base_mask << bit_shift)) >> bit_shift;
-      // Handling the sign bit.  Unnecessary if the data is always positive.
-      if (offset == 0) {
-        return result ^ 128;
-      }
-
-      return result;
-    }
-
-    // Sort a signed float.  This requires reversing the order of negatives
-    // because of the way floats are represented in bits.
-    if (offset < first_name_offset) {
-      const int bit_shift = 8 * (first_name_offset - offset - 1);
-      unsigned key = float_mem_cast<float, unsigned>(x.net_worth);
-      unsigned char result = (key & (base_mask << bit_shift)) >> bit_shift;
-      // Handling the sign.
-      if (x.net_worth < 0) {
-        return 255 - result;
-      }
-      // Increasing positives so they are higher than negatives.
-      if (offset == birth_size) {
-        return 128 + result;
-      }
-
-      return result;
-    }
-
-    // Sort a string that is before the end.  This approach supports embedded
-    // nulls.  If embedded nulls are not required, then just delete the "* 2"
-    // and the inside of the following if just becomes:
-    // return x.first_name[offset - first_name_offset];
-    const unsigned first_name_end_offset =
-      first_name_offset + x.first_name.size() * 2;
-    if (offset < first_name_end_offset) {
-      int char_offset = offset - first_name_offset;
-      // This signals that the string continues.
-      if (!(char_offset & 1)) {
-        return 1;
-      }
-      return x.first_name[char_offset >> 1];
-    }
-
-    // This signals that the string has ended, so that shorter strings come
-    // before longer ones.
-    if (offset == first_name_end_offset) {
-      return 0;
-    }
-
-    // The final string needs no special consideration.
-    return x.last_name[offset - first_name_end_offset - 1];
-  }
-};
-
-struct getsize {
-  inline size_t operator()(const DATA_TYPE &x) const {
-    return first_name_offset + x.first_name.size() * 2 + 1 +
-      x.last_name.size();
-  }
-};
-//] [/generalized_functors]
-
-//Pass in an argument to test std::sort
-int main(int argc, const char ** argv) {
-  std::ifstream indata;
-  std::ofstream outfile;
-  bool stdSort = false;
-  unsigned loopCount = 1;
-  for (int u = 1; u < argc; ++u) {
-    if (std::string(argv[u]) == "-std")
-      stdSort = true;
-    else
-      loopCount = atoi(argv[u]);
-  }
-  double total = 0.0;
-  //Run multiple loops, if requested
-  std::vector<DATA_TYPE> array;
-  for (unsigned u = 0; u < loopCount; ++u) {
-    indata.open("input.txt", std::ios_base::in | std::ios_base::binary);
-    if (indata.bad()) {
-      printf("input.txt could not be opened\n");
-      return 1;
-    }
-
-    // Read in the data.
-    DATA_TYPE inval;
-    while (!indata.eof() ) {
-      indata >> inval.first_name;
-      indata >> inval.last_name;
-      indata.read(reinterpret_cast<char *>(&(inval.birth)), birth_size);
-      indata.read(reinterpret_cast<char *>(&(inval.net_worth)), sizeof(float));
-      // Handling nan.
-      if (inval.net_worth != inval.net_worth) {
-        inval.net_worth = 0;
-      }
-      if (indata.eof())
-        break;
-      array.push_back(inval);
-    }
-    indata.close();
-
-    // Sort the data.
-    clock_t start, end;
-    double elapsed;
-    start = clock();
-    if (stdSort) {
-      std::sort(array.begin(), array.end(), lessthan());
-    } else {
-//[generalized_functors_call
-      string_sort(array.begin(), array.end(), bracket(), getsize(), lessthan());
-//] [/generalized_functors_call]
-    }
-    end = clock();
-    elapsed = static_cast<double>(end - start);
-    if (stdSort) {
-      outfile.open("standard_sort_out.txt", std::ios_base::out |
-                   std::ios_base::binary | std::ios_base::trunc);
-    } else {
-      outfile.open("boost_sort_out.txt", std::ios_base::out |
-                   std::ios_base::binary | std::ios_base::trunc);
-    }
-    if (outfile.good()) {
-      for (unsigned u = 0; u < array.size(); ++u)
-        outfile << array[u].birth << " " << array[u].net_worth << " "
-                << array[u].first_name << " " << array[u].last_name << "\n";
-      outfile.close();
-    }
-    total += elapsed;
-    array.clear();
-  }
-  if (stdSort) {
-    printf("std::sort elapsed time %f\n", total / CLOCKS_PER_SEC);
-  } else {
-    printf("spreadsort elapsed time %f\n", total / CLOCKS_PER_SEC);
-  }
-  return 0;
-}
+// This example shows how to sort structs using complex multiple part keys using\r
+// string_sort.\r
+//\r
+//  Copyright Steven Ross 2009-2014.\r
+//\r
+// Distributed under the Boost Software License, Version 1.0.\r
+//    (See accompanying file LICENSE_1_0.txt or copy at\r
+//          http://www.boost.org/LICENSE_1_0.txt)\r
+\r
+//  See http://www.boost.org/libs/sort for library home page.\r
+\r
+#include <boost/sort/spreadsort/string_sort.hpp>\r
+#include <boost/sort/spreadsort/float_sort.hpp>\r
+#include <time.h>\r
+#include <stdio.h>\r
+#include <stdlib.h>\r
+#include <algorithm>\r
+#include <vector>\r
+#include <iostream>\r
+#include <fstream>\r
+#include <string>\r
+using std::string;\r
+using namespace boost::sort::spreadsort;\r
+\r
+//[generalized_functors\r
+struct DATA_TYPE {\r
+  time_t birth;\r
+  float net_worth;\r
+  string first_name;\r
+  string last_name;\r
+};\r
+\r
+static const int birth_size = sizeof(time_t);\r
+static const int first_name_offset = birth_size + sizeof(float);\r
+static const boost::uint64_t base_mask = 0xff;\r
+\r
+struct lessthan {\r
+  inline bool operator()(const DATA_TYPE &x, const DATA_TYPE &y) const {\r
+    if (x.birth != y.birth) {\r
+      return x.birth < y.birth;\r
+    }\r
+    if (x.net_worth != y.net_worth) {\r
+      return x.net_worth < y.net_worth;\r
+    }\r
+    if (x.first_name != y.first_name) {\r
+      return x.first_name < y.first_name;\r
+    }\r
+    return x.last_name < y.last_name;\r
+  }\r
+};\r
+\r
+struct bracket {\r
+  inline unsigned char operator()(const DATA_TYPE &x, size_t offset) const {\r
+    // Sort date as a signed int, returning the appropriate byte.\r
+    if (offset < birth_size) {\r
+      const int bit_shift = 8 * (birth_size - offset - 1);\r
+      unsigned char result = (x.birth & (base_mask << bit_shift)) >> bit_shift;\r
+      // Handling the sign bit.  Unnecessary if the data is always positive.\r
+      if (offset == 0) {\r
+        return result ^ 128;\r
+      }\r
+\r
+      return result;\r
+    }\r
+\r
+    // Sort a signed float.  This requires reversing the order of negatives\r
+    // because of the way floats are represented in bits.\r
+    if (offset < first_name_offset) {\r
+      const int bit_shift = 8 * (first_name_offset - offset - 1);\r
+      unsigned key = float_mem_cast<float, unsigned>(x.net_worth);\r
+      unsigned char result = (key & (base_mask << bit_shift)) >> bit_shift;\r
+      // Handling the sign.\r
+      if (x.net_worth < 0) {\r
+        return 255 - result;\r
+      }\r
+      // Increasing positives so they are higher than negatives.\r
+      if (offset == birth_size) {\r
+        return 128 + result;\r
+      }\r
+\r
+      return result;\r
+    }\r
+\r
+    // Sort a string that is before the end.  This approach supports embedded\r
+    // nulls.  If embedded nulls are not required, then just delete the "* 2"\r
+    // and the inside of the following if just becomes:\r
+    // return x.first_name[offset - first_name_offset];\r
+    const unsigned first_name_end_offset =\r
+      first_name_offset + x.first_name.size() * 2;\r
+    if (offset < first_name_end_offset) {\r
+      int char_offset = offset - first_name_offset;\r
+      // This signals that the string continues.\r
+      if (!(char_offset & 1)) {\r
+        return 1;\r
+      }\r
+      return x.first_name[char_offset >> 1];\r
+    }\r
+\r
+    // This signals that the string has ended, so that shorter strings come\r
+    // before longer ones.\r
+    if (offset == first_name_end_offset) {\r
+      return 0;\r
+    }\r
+\r
+    // The final string needs no special consideration.\r
+    return x.last_name[offset - first_name_end_offset - 1];\r
+  }\r
+};\r
+\r
+struct getsize {\r
+  inline size_t operator()(const DATA_TYPE &x) const {\r
+    return first_name_offset + x.first_name.size() * 2 + 1 +\r
+      x.last_name.size();\r
+  }\r
+};\r
+//] [/generalized_functors]\r
+\r
+//Pass in an argument to test std::sort\r
+int main(int argc, const char ** argv) {\r
+  std::ifstream indata;\r
+  std::ofstream outfile;\r
+  bool stdSort = false;\r
+  unsigned loopCount = 1;\r
+  for (int u = 1; u < argc; ++u) {\r
+    if (std::string(argv[u]) == "-std")\r
+      stdSort = true;\r
+    else\r
+      loopCount = atoi(argv[u]);\r
+  }\r
+  double total = 0.0;\r
+  //Run multiple loops, if requested\r
+  std::vector<DATA_TYPE> array;\r
+  for (unsigned u = 0; u < loopCount; ++u) {\r
+    indata.open("input.txt", std::ios_base::in | std::ios_base::binary);\r
+    if (indata.bad()) {\r
+      printf("input.txt could not be opened\n");\r
+      return 1;\r
+    }\r
+\r
+    // Read in the data.\r
+    DATA_TYPE inval;\r
+    while (!indata.eof() ) {\r
+      indata >> inval.first_name;\r
+      indata >> inval.last_name;\r
+      indata.read(reinterpret_cast<char *>(&(inval.birth)), birth_size);\r
+      indata.read(reinterpret_cast<char *>(&(inval.net_worth)), sizeof(float));\r
+      // Handling nan.\r
+      if (inval.net_worth != inval.net_worth) {\r
+        inval.net_worth = 0;\r
+      }\r
+      if (indata.eof())\r
+        break;\r
+      array.push_back(inval);\r
+    }\r
+    indata.close();\r
+\r
+    // Sort the data.\r
+    clock_t start, end;\r
+    double elapsed;\r
+    start = clock();\r
+    if (stdSort) {\r
+      std::sort(array.begin(), array.end(), lessthan());\r
+    } else {\r
+//[generalized_functors_call\r
+      string_sort(array.begin(), array.end(), bracket(), getsize(), lessthan());\r
+//] [/generalized_functors_call]\r
+    }\r
+    end = clock();\r
+    elapsed = static_cast<double>(end - start);\r
+    if (stdSort) {\r
+      outfile.open("standard_sort_out.txt", std::ios_base::out |\r
+                   std::ios_base::binary | std::ios_base::trunc);\r
+    } else {\r
+      outfile.open("boost_sort_out.txt", std::ios_base::out |\r
+                   std::ios_base::binary | std::ios_base::trunc);\r
+    }\r
+    if (outfile.good()) {\r
+      for (unsigned u = 0; u < array.size(); ++u)\r
+        outfile << array[u].birth << " " << array[u].net_worth << " "\r
+                << array[u].first_name << " " << array[u].last_name << "\n";\r
+      outfile.close();\r
+    }\r
+    total += elapsed;\r
+    array.clear();\r
+  }\r
+  if (stdSort) {\r
+    printf("std::sort elapsed time %f\n", total / CLOCKS_PER_SEC);\r
+  } else {\r
+    printf("spreadsort elapsed time %f\n", total / CLOCKS_PER_SEC);\r
+  }\r
+  return 0;\r
+}\r