defalloc.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:2k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  */
  15. // Inclusion of this file is DEPRECATED.  This is the original HP
  16. // default allocator.  It is provided only for backward compatibility.
  17. // This file WILL BE REMOVED in a future release.
  18. //
  19. // DO NOT USE THIS FILE unless you have an old container implementation
  20. // that requires an allocator with the HP-style interface.  
  21. //
  22. // Standard-conforming allocators have a very different interface.  The
  23. // standard default allocator is declared in the header <memory>.
  24. #ifndef DEFALLOC_H
  25. #define DEFALLOC_H
  26. #include <new.h>
  27. #include <stddef.h>
  28. #include <stdlib.h>
  29. #include <limits.h>
  30. #include <iostream.h>
  31. #include <algobase.h>
  32. template <class T>
  33. inline T* allocate(ptrdiff_t size, T*) {
  34.     set_new_handler(0);
  35.     T* tmp = (T*)(::operator new((size_t)(size * sizeof(T))));
  36.     if (tmp == 0) {
  37. cerr << "out of memory" << endl; 
  38. exit(1);
  39.     }
  40.     return tmp;
  41. }
  42. template <class T>
  43. inline void deallocate(T* buffer) {
  44.     ::operator delete(buffer);
  45. }
  46. template <class T>
  47. class allocator {
  48. public:
  49.     typedef T value_type;
  50.     typedef T* pointer;
  51.     typedef const T* const_pointer;
  52.     typedef T& reference;
  53.     typedef const T& const_reference;
  54.     typedef size_t size_type;
  55.     typedef ptrdiff_t difference_type;
  56.     pointer allocate(size_type n) { 
  57. return ::allocate((difference_type)n, (pointer)0);
  58.     }
  59.     void deallocate(pointer p) { ::deallocate(p); }
  60.     pointer address(reference x) { return (pointer)&x; }
  61.     const_pointer const_address(const_reference x) { 
  62. return (const_pointer)&x; 
  63.     }
  64.     size_type init_page_size() { 
  65. return max(size_type(1), size_type(4096/sizeof(T))); 
  66.     }
  67.     size_type max_size() const { 
  68. return max(size_type(1), size_type(UINT_MAX/sizeof(T))); 
  69.     }
  70. };
  71. class allocator<void> {
  72. public:
  73.     typedef void* pointer;
  74. };
  75. #endif