atoi_pearson.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * $XConsortium: atoi_pearson.h /main/3 1996/06/11 17:35:50 cde-hal $
  25. *
  26. * Copyright (c) 1992 HaL Computer Systems, Inc. All rights reserved.
  27. * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
  28. * States. Use of a copyright notice is precautionary only and does not
  29. * imply publication or disclosure.
  30. *
  31. * This software contains confidential information and trade secrets of HaL
  32. * Computer Systems, Inc. Use, disclosure, or reproduction is prohibited
  33. * without the prior express written permission of HaL Computer Systems, Inc.
  34. *
  35. * RESTRICTED RIGHTS LEGEND
  36. * Use, duplication, or disclosure by the Government is subject to
  37. * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
  38. * Technical Data and Computer Software clause at DFARS 252.227-7013.
  39. * HaL Computer Systems, Inc.
  40. * 1315 Dell Avenue, Campbell, CA 95008
  41. *
  42. */
  43. #ifndef _atoi_pearson_h
  44. #define _atoi_pearson_h 1
  45. #include "utility/funcs.h"
  46. #include "utility/pm_random.h"
  47. #include "utility/key.h"
  48. // Based on Pearson's algorithm presented in CACM 90/6.
  49. // rewritten to speed up atoi()
  50. class atoi_pearson
  51. {
  52. public:
  53. atoi_pearson(int _range, int _entries) ;
  54. atoi_pearson(int _range, int _entries, pm_random&) ;
  55. atoi_pearson(int _range, int _entries, char* v_tbl) ;
  56. virtual ~atoi_pearson() ;
  57. virtual int atoi(const key_type& k, int offset = 0) const ;
  58. int atoi(const char* str, int _offset = 0, int range = 0) const ;
  59. int atoi(const char* str, int sz, int _offset = 0, int range = 0) const ;
  60. int size() { return v_entries; } ;
  61. char* tblPtr() { return v_tbl; } ;
  62. friend ostream& operator<<(ostream&, atoi_pearson&);
  63. private:
  64. void init(int _range, int _entries, pm_random&);
  65. protected:
  66. unsigned int v_entries;
  67. unsigned int v_range;
  68. unsigned v_mask;
  69. unsigned int v_no_bytes;
  70. char *v_tbl;
  71. Boolean v_shared;
  72. };
  73. #endif