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 2008 CodeRage, LLC (turkanis at coderage dot com) // (C) Copyright 2003-2007 Jonathan Turkanis // 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/iostreams for documentation. #ifndef BOOST_IOSTREAMS_DETAIL_BUFFERS_HPP_INCLUDED #define BOOST_IOSTREAMS_DETAIL_BUFFERS_HPP_INCLUDED #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include
// swap. #include
// allocator. #include
// member templates. #include
#include
// streamsize. #include
#include
// int_type_of. #include
#include
#include
namespace boost { namespace iostreams { namespace detail { //----------------Buffers-----------------------------------------------------// // // Template name: buffer // Description: Character buffer. // Template paramters: // Ch - The character type. // Alloc - The Allocator type. // template< typename Ch, typename Alloc = std::allocator
> class basic_buffer { private: #ifndef BOOST_NO_STD_ALLOCATOR typedef typename Alloc::template rebind
::other allocator_type; #else typedef std::allocator
allocator_type; #endif public: basic_buffer(); basic_buffer(int buffer_size); ~basic_buffer(); void resize(int buffer_size); Ch* begin() const { return buf_; } Ch* end() const { return buf_ + size_; } Ch* data() const { return buf_; } std::streamsize size() const { return size_; } void swap(basic_buffer& rhs); private: // Disallow copying and assignment. basic_buffer(const basic_buffer&); basic_buffer& operator=(const basic_buffer&); Ch* buf_; std::streamsize size_; }; template
void swap(basic_buffer
& lhs, basic_buffer
& rhs) { lhs.swap(rhs); } // // Template name: buffer // Description: Character buffer with two pointers accessible via ptr() and // eptr(). // Template paramters: // Ch - A character type. // template< typename Ch, typename Alloc = std::allocator
> class buffer : public basic_buffer
{ private: typedef basic_buffer
base; public: typedef iostreams::char_traits
traits_type; using base::resize; using base::data; using base::size; typedef Ch* const const_pointer; buffer(int buffer_size); Ch* & ptr() { return ptr_; } const_pointer& ptr() const { return ptr_; } Ch* & eptr() { return eptr_; } const_pointer& eptr() const { return eptr_; } void set(std::streamsize ptr, std::streamsize end); void swap(buffer& rhs); // Returns an int_type as a status code. template
typename int_type_of
::type fill(Source& src) { using namespace std; std::streamsize keep; if ((keep = static_cast
(eptr_ - ptr_)) > 0) traits_type::move(this->data(), ptr_, keep); set(0, keep); std::streamsize result = iostreams::read(src, this->data() + keep, this->size() - keep); if (result != -1) this->set(0, keep + result); //return result == this->size() - keep ? // traits_type::good() : // keep == -1 ? // traits_type::eof() : // traits_type::would_block(); return result == -1 ? traits_type::eof() : result == 0 ? traits_type::would_block() : traits_type::good(); } // Returns true if one or more characters were written. template
bool flush(Sink& dest) { using namespace std; std::streamsize amt = static_cast
(eptr_ - ptr_); std::streamsize result = iostreams::write_if(dest, ptr_, amt); if (result < amt) { traits_type::move( this->data(), ptr_ + result, amt - result ); } this->set(0, amt - result); return result != 0; } private: Ch *ptr_, *eptr_; }; template
void swap(buffer
& lhs, buffer
& rhs) { lhs.swap(rhs); } //--------------Implementation of basic_buffer--------------------------------// template
basic_buffer
::basic_buffer() : buf_(0), size_(0) { } template
basic_buffer
::basic_buffer(int buffer_size) : buf_(static_cast
(allocator_type().allocate(buffer_size, 0))), size_(buffer_size) // Cast for SunPro 5.3. { } template
inline basic_buffer
::~basic_buffer() { if (buf_) allocator_type().deallocate(buf_, size_); } template
inline void basic_buffer
::resize(int buffer_size) { if (size_ != buffer_size) { basic_buffer
temp(buffer_size); std::swap(size_, temp.size_); std::swap(buf_, temp.buf_); } } template
void basic_buffer
::swap(basic_buffer& rhs) { std::swap(buf_, rhs.buf_); std::swap(size_, rhs.size_); } //--------------Implementation of buffer--------------------------------------// template
buffer
::buffer(int buffer_size) : basic_buffer
(buffer_size) { } template
inline void buffer
::set(std::streamsize ptr, std::streamsize end) { ptr_ = data() + ptr; eptr_ = data() + end; } template
inline void buffer
::swap(buffer& rhs) { base::swap(rhs); std::swap(ptr_, rhs.ptr_); std::swap(eptr_, rhs.eptr_); } //----------------------------------------------------------------------------// } } } // End namespaces detail, iostreams, boost. #endif // #ifndef BOOST_IOSTREAMS_DETAIL_BUFFERS_HPP_INCLUDED
buffer.hpp
Page URL
File URL
Prev
5/38
Next
Download
( 6 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.