DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2005-2008. 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/interprocess for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_OFFSET_PTR_HPP #define BOOST_OFFSET_PTR_HPP #if (defined _MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//!\file //!Describes a smart pointer that stores the offset between this pointer and //!target pointee, called offset_ptr. namespace boost { //Predeclarations template
struct has_trivial_constructor; template
struct has_trivial_destructor; namespace interprocess { //!A smart pointer that stores the offset between between the pointer and the //!the object it points. This allows offset allows special properties, since //!the pointer is independent from the address address of the pointee, if the //!pointer and the pointee are still separated by the same offset. This feature //!converts offset_ptr in a smart pointer that can be placed in shared memory and //!memory mapped files mapped in different addresses in every process. template
class offset_ptr { /// @cond typedef offset_ptr
self_t; typedef const PointedType * const_pointer_t; typedef typename detail::add_reference
::type const_reference_t; void unspecified_bool_type_func() const {} typedef void (self_t::*unspecified_bool_type)() const; #if defined(_MSC_VER) && (_MSC_VER >= 1400) __declspec(noinline) //this workaround is needed for msvc-8.0 and msvc-9.0 #endif void set_offset(const volatile void *ptr) { const char *p = static_cast
(const_cast
(ptr)); //offset == 1 && ptr != 0 is not legal for this pointer if(!ptr){ m_offset = 1; } else{ m_offset = p - detail::char_ptr_cast(this); BOOST_ASSERT(m_offset != 1); } } #if defined(_MSC_VER) && (_MSC_VER >= 1400) __declspec(noinline) //this workaround is needed for msvc-8.0 and msvc-9.0 #endif void* get_pointer() const { return (m_offset == 1) ? 0 : (detail::char_ptr_cast(this) + m_offset); } void inc_offset(std::ptrdiff_t bytes) { m_offset += bytes; } void dec_offset(std::ptrdiff_t bytes) { m_offset -= bytes; } std::ptrdiff_t m_offset; //Distance between this object and pointed address /// @endcond public: typedef PointedType * pointer; typedef typename detail:: add_reference
::type reference; typedef PointedType value_type; typedef std::ptrdiff_t difference_type; typedef std::random_access_iterator_tag iterator_category; public: //Public Functions //!Constructor from raw pointer (allows "0" pointer conversion). //!Never throws. offset_ptr(pointer ptr = 0) { this->set_offset(ptr); } //!Constructor from other pointer. //!Never throws. template
offset_ptr(T *ptr) { pointer p (ptr); (void)p; this->set_offset(p); } //!Constructor from other offset_ptr //!Never throws. offset_ptr(const offset_ptr& ptr) { this->set_offset(ptr.get()); } //!Constructor from other offset_ptr. If pointers of pointee types are //!convertible, offset_ptrs will be convertibles. Never throws. template
offset_ptr(const offset_ptr
&ptr) { pointer p(ptr.get()); (void)p; this->set_offset(p); } //!Emulates static_cast operator. //!Never throws. template
offset_ptr(const offset_ptr
& r, detail::static_cast_tag) { this->set_offset(static_cast
(r.get())); } //!Emulates const_cast operator. //!Never throws. template
offset_ptr(const offset_ptr
& r, detail::const_cast_tag) { this->set_offset(const_cast
(r.get())); } //!Emulates dynamic_cast operator. //!Never throws. template
offset_ptr(const offset_ptr
& r, detail::dynamic_cast_tag) { this->set_offset(dynamic_cast
(r.get())); } //!Emulates reinterpret_cast operator. //!Never throws. template
offset_ptr(const offset_ptr
& r, detail::reinterpret_cast_tag) { this->set_offset(reinterpret_cast
(r.get())); } //!Obtains raw pointer from offset. //!Never throws. pointer get()const { return (pointer)this->get_pointer(); } std::ptrdiff_t get_offset() { return m_offset; } //!Pointer-like -> operator. It can return 0 pointer. //!Never throws. pointer operator->() const { return this->get(); } //!Dereferencing operator, if it is a null offset_ptr behavior //! is undefined. Never throws. reference operator* () const { return *(this->get()); } //!Indexing operator. //!Never throws. reference operator[](std::ptrdiff_t idx) const { return this->get()[idx]; } //!Assignment from pointer (saves extra conversion). //!Never throws. offset_ptr& operator= (pointer from) { this->set_offset(from); return *this; } //!Assignment from other offset_ptr. //!Never throws. offset_ptr& operator= (const offset_ptr & pt) { pointer p(pt.get()); (void)p; this->set_offset(p); return *this; } //!Assignment from related offset_ptr. If pointers of pointee types //! are assignable, offset_ptrs will be assignable. Never throws. template
offset_ptr& operator= (const offset_ptr
& pt) { pointer p(pt.get()); this->set_offset(p); return *this; } //!offset_ptr + std::ptrdiff_t. //!Never throws. offset_ptr operator+ (std::ptrdiff_t offset) const { return offset_ptr(this->get()+offset); } //!offset_ptr - std::ptrdiff_t. //!Never throws. offset_ptr operator- (std::ptrdiff_t offset) const { return offset_ptr(this->get()-offset); } //!offset_ptr += std::ptrdiff_t. //!Never throws. offset_ptr &operator+= (std::ptrdiff_t offset) { this->inc_offset(offset * sizeof (PointedType)); return *this; } //!offset_ptr -= std::ptrdiff_t. //!Never throws. offset_ptr &operator-= (std::ptrdiff_t offset) { this->dec_offset(offset * sizeof (PointedType)); return *this; } //!++offset_ptr. //!Never throws. offset_ptr& operator++ (void) { this->inc_offset(sizeof (PointedType)); return *this; } //!offset_ptr++. //!Never throws. offset_ptr operator++ (int) { offset_ptr temp(*this); ++*this; return temp; } //!--offset_ptr. //!Never throws. offset_ptr& operator-- (void) { this->dec_offset(sizeof (PointedType)); return *this; } //!offset_ptr--. //!Never throws. offset_ptr operator-- (int) { offset_ptr temp(*this); --*this; return temp; } //!safe bool conversion operator. //!Never throws. operator unspecified_bool_type() const { return this->get()? &self_t::unspecified_bool_type_func : 0; } //!Not operator. Not needed in theory, but improves portability. //!Never throws bool operator! () const { return this->get() == 0; } /* friend void swap (offset_ptr &pt, offset_ptr &pt2) { value_type *ptr = pt.get(); pt = pt2; pt2 = ptr; } */ }; //!offset_ptr
== offset_ptr
. //!Never throws. template
inline bool operator== (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() == pt2.get(); } //!offset_ptr
!= offset_ptr
. //!Never throws. template
inline bool operator!= (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() != pt2.get(); } //!offset_ptr
< offset_ptr
. //!Never throws. template
inline bool operator< (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() < pt2.get(); } //!offset_ptr
<= offset_ptr
. //!Never throws. template
inline bool operator<= (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() <= pt2.get(); } //!offset_ptr
> offset_ptr
. //!Never throws. template
inline bool operator> (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() > pt2.get(); } //!offset_ptr
>= offset_ptr
. //!Never throws. template
inline bool operator>= (const offset_ptr
&pt1, const offset_ptr
&pt2) { return pt1.get() >= pt2.get(); } //!operator<< //!for offset ptr template
inline std::basic_ostream
& operator<< (std::basic_ostream
& os, offset_ptr
const & p) { return os << p.get_offset(); } //!operator>> //!for offset ptr template
inline std::basic_istream
& operator>> (std::basic_istream
& is, offset_ptr
& p) { return is >> p.get_offset(); } //!std::ptrdiff_t + offset_ptr //!operation template
inline offset_ptr
operator+(std::ptrdiff_t diff, const offset_ptr
& right) { return right + diff; } //!offset_ptr - offset_ptr //!operation template
inline std::ptrdiff_t operator- (const offset_ptr
&pt, const offset_ptr
&pt2) { return pt.get()- pt2.get(); } //!swap specialization //!for offset_ptr template
inline void swap (boost::interprocess::offset_ptr
&pt, boost::interprocess::offset_ptr
&pt2) { typename offset_ptr
::value_type *ptr = pt.get(); pt = pt2; pt2 = ptr; } //!Simulation of static_cast between pointers. Never throws. template
inline boost::interprocess::offset_ptr
static_pointer_cast(boost::interprocess::offset_ptr
const & r) { return boost::interprocess::offset_ptr
(r, boost::interprocess::detail::static_cast_tag()); } //!Simulation of const_cast between pointers. Never throws. template
inline boost::interprocess::offset_ptr
const_pointer_cast(boost::interprocess::offset_ptr
const & r) { return boost::interprocess::offset_ptr
(r, boost::interprocess::detail::const_cast_tag()); } //!Simulation of dynamic_cast between pointers. Never throws. template
inline boost::interprocess::offset_ptr
dynamic_pointer_cast(boost::interprocess::offset_ptr
const & r) { return boost::interprocess::offset_ptr
(r, boost::interprocess::detail::dynamic_cast_tag()); } //!Simulation of reinterpret_cast between pointers. Never throws. template
inline boost::interprocess::offset_ptr
reinterpret_pointer_cast(boost::interprocess::offset_ptr
const & r) { return boost::interprocess::offset_ptr
(r, boost::interprocess::detail::reinterpret_cast_tag()); } } //namespace interprocess { /// @cond //!has_trivial_constructor<> == true_type specialization for optimizations template
struct has_trivial_constructor< boost::interprocess::offset_ptr
> { enum { value = true }; }; ///has_trivial_destructor<> == true_type specialization for optimizations template
struct has_trivial_destructor< boost::interprocess::offset_ptr
> { enum { value = true }; }; //#if !defined(_MSC_VER) || (_MSC_VER >= 1400) namespace interprocess { //#endif //!get_pointer() enables boost::mem_fn to recognize offset_ptr. //!Never throws. template
inline T * get_pointer(boost::interprocess::offset_ptr
const & p) { return p.get(); } //#if !defined(_MSC_VER) || (_MSC_VER >= 1400) } //namespace interprocess //#endif /// @endcond } //namespace boost { /// @cond namespace boost{ //This is to support embedding a bit in the pointer //for intrusive containers, saving space namespace intrusive { //Predeclaration to avoid including header template
struct has_pointer_plus_bit; template
struct has_pointer_plus_bit
, N> { static const bool value = (N % 4u == 0); }; //Predeclaration template
struct pointer_plus_bit; //Specialization template
struct pointer_plus_bit
> { typedef boost::interprocess::offset_ptr
pointer; static pointer get_pointer(const pointer &n) { return (T*)(std::size_t(n.get()) & ~std::size_t(2u)); } static void set_pointer(pointer &n, pointer p) { n = (T*)(std::size_t(p.get()) | (std::size_t(n.get()) & std::size_t(2u))); } static bool get_bit(const pointer &n) { return 0 != (std::size_t(n.get()) & std::size_t(2u)); } static void set_bit(pointer &n, bool c) { n = (T*)(std::size_t(get_pointer(n).get()) | (std::size_t(c) << 1u)); } }; //Predeclaration to avoid including header template
struct has_pointer_plus_2_bits; template
struct has_pointer_plus_2_bits
, N> { static const bool value = (N % 8u == 0); }; //Predeclaration template
struct pointer_plus_2_bits; template
struct pointer_plus_2_bits
> { typedef boost::interprocess::offset_ptr
pointer; static pointer get_pointer(const pointer &n) { return (T*)(std::size_t(n.get()) & ~std::size_t(6u)); } static void set_pointer(pointer &n, pointer p) { n = (T*)(std::size_t(p.get()) | (std::size_t(n.get()) & std::size_t(6u))); } static std::size_t get_bits(const pointer &n) { return(std::size_t(n.get()) & std::size_t(6u)) >> 1u; } static void set_bits(pointer &n, std::size_t b) { assert(b < 4); n = (T*)(std::size_t(get_pointer(n).get()) | (b << 1u)); } }; } //namespace intrusive } //namespace boost{ /// @endcond #include
#endif //#ifndef BOOST_OFFSET_PTR_HPP
offset_ptr.hpp
Page URL
File URL
Prev
12/15
Next
Download
( 14 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.