xsi_key.hpp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2009. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/interprocess for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_INTERPROCESS_XSI_KEY_HPP
  11. #define BOOST_INTERPROCESS_XSI_KEY_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #
  16. #if defined(BOOST_HAS_PRAGMA_ONCE)
  17. # pragma once
  18. #endif
  19. #include <boost/interprocess/detail/config_begin.hpp>
  20. #include <boost/interprocess/detail/workaround.hpp>
  21. #include <boost/detail/workaround.hpp>
  22. #if !defined(BOOST_INTERPROCESS_XSI_SHARED_MEMORY_OBJECTS)
  23. #error "This header can't be used in operating systems without XSI (System V) shared memory support"
  24. #endif
  25. #include <boost/interprocess/creation_tags.hpp>
  26. #include <boost/interprocess/exceptions.hpp>
  27. #include <boost/interprocess/detail/utilities.hpp>
  28. #include <boost/move/utility_core.hpp>
  29. #include <boost/interprocess/detail/os_file_functions.hpp>
  30. #include <boost/interprocess/interprocess_fwd.hpp>
  31. #include <boost/interprocess/exceptions.hpp>
  32. #include <sys/types.h>
  33. #include <sys/ipc.h>
  34. #include <cstddef>
  35. #include <boost/cstdint.hpp>
  36. //!\file
  37. //!Describes a class representing a xsi key type.
  38. namespace boost {
  39. namespace interprocess {
  40. //!A class that wraps XSI (System V) key_t type.
  41. //!This type calculates key_t from path and id using ftok
  42. //!or sets key to IPC_PRIVATE using the default constructor.
  43. class xsi_key
  44. {
  45. public:
  46. //!Default constructor.
  47. //!Represents a private xsi_key.
  48. xsi_key()
  49. : m_key(IPC_PRIVATE)
  50. {}
  51. //!Creates a new XSI shared memory with a key obtained from a call to ftok (with path
  52. //!"path" and id "id"), of size "size" and permissions "perm".
  53. //!If the shared memory previously exists, throws an error.
  54. xsi_key(const char *path, boost::uint8_t id)
  55. {
  56. key_t key;
  57. if(path){
  58. key = ::ftok(path, id);
  59. if(((key_t)-1) == key){
  60. error_info err = system_error_code();
  61. throw interprocess_exception(err);
  62. }
  63. }
  64. else{
  65. key = IPC_PRIVATE;
  66. }
  67. m_key = key;
  68. }
  69. //!Returns the internal key_t value
  70. key_t get_key() const
  71. { return m_key; }
  72. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  73. private:
  74. key_t m_key;
  75. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  76. };
  77. } //namespace interprocess {
  78. } //namespace boost {
  79. #include <boost/interprocess/detail/config_end.hpp>
  80. #endif //BOOST_INTERPROCESS_XSI_KEY_HPP