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
/*============================================================================= Copyright (c) 1998-2003 Joel de Guzman Copyright (c) 2002 Raghavendra Satish Copyright (c) 2002 Jeff Westfahl http://spirit.sourceforge.net/ Use, modification and distribution is subject to 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) =============================================================================*/ #if !defined(BOOST_SPIRIT_LOOPS_HPP) #define BOOST_SPIRIT_LOOPS_HPP /////////////////////////////////////////////////////////////////////////////// #include
#include
/////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // // fixed_loop class // // This class takes care of the construct: // // repeat_p (exact) [p] // // where 'p' is a parser and 'exact' is the number of times to // repeat. The parser iterates over the input exactly 'exact' times. // The parse function fails if the parser does not match the input // exactly 'exact' times. // // This class is parametizable and can accept constant arguments // (e.g. repeat_p (5) [p]) as well as references to variables (e.g. // repeat_p (ref (n)) [p]). // /////////////////////////////////////////////////////////////////////////// template
class fixed_loop : public unary
> > { public: typedef fixed_loop
self_t; typedef unary
> base_t; fixed_loop (ParserT const & subject, ExactT const & exact) : base_t(subject), m_exact(exact) {} template
typename parser_result
::type parse (ScannerT const & scan) const { typedef typename parser_result
::type result_t; result_t hit = scan.empty_match(); std::size_t n = m_exact; for (std::size_t i = 0; i < n; ++i) { if (result_t next = this->subject().parse(scan)) { scan.concat_match(hit, next); } else { return scan.no_match(); } } return hit; } template
struct result { typedef typename match_result
::type type; }; private: ExactT m_exact; }; /////////////////////////////////////////////////////////////////////////////// // // finite_loop class // // This class takes care of the construct: // // repeat_p (min, max) [p] // // where 'p' is a parser, 'min' and 'max' specifies the minimum and // maximum iterations over 'p'. The parser iterates over the input // at least 'min' times and at most 'max' times. The parse function // fails if the parser does not match the input at least 'min' times // and at most 'max' times. // // This class is parametizable and can accept constant arguments // (e.g. repeat_p (5, 10) [p]) as well as references to variables // (e.g. repeat_p (ref (n1), ref (n2)) [p]). // /////////////////////////////////////////////////////////////////////////////// template
class finite_loop : public unary
> > { public: typedef finite_loop
self_t; typedef unary
> base_t; finite_loop (ParserT const & subject, MinT const & min, MaxT const & max) : base_t(subject), m_min(min), m_max(max) {} template
typename parser_result
::type parse(ScannerT const & scan) const { BOOST_SPIRIT_ASSERT(m_min <= m_max); typedef typename parser_result
::type result_t; result_t hit = scan.empty_match(); std::size_t n1 = m_min; std::size_t n2 = m_max; for (std::size_t i = 0; i < n2; ++i) { typename ScannerT::iterator_t save = scan.first; result_t next = this->subject().parse(scan); if (!next) { if (i >= n1) { scan.first = save; break; } else { return scan.no_match(); } } scan.concat_match(hit, next); } return hit; } template
struct result { typedef typename match_result
::type type; }; private: MinT m_min; MaxT m_max; }; /////////////////////////////////////////////////////////////////////////////// // // infinite_loop class // // This class takes care of the construct: // // repeat_p (min, more) [p] // // where 'p' is a parser, 'min' is the minimum iteration over 'p' // and more specifies that the iteration should proceed // indefinitely. The parser iterates over the input at least 'min' // times and continues indefinitely until 'p' fails or all of the // input is parsed. The parse function fails if the parser does not // match the input at least 'min' times. // // This class is parametizable and can accept constant arguments // (e.g. repeat_p (5, more) [p]) as well as references to variables // (e.g. repeat_p (ref (n), more) [p]). // /////////////////////////////////////////////////////////////////////////////// struct more_t {}; more_t const more = more_t (); template
class infinite_loop : public unary
> > { public: typedef infinite_loop
self_t; typedef unary
> base_t; infinite_loop ( ParserT const& subject, MinT const& min, more_t const& ) : base_t(subject), m_min(min) {} template
typename parser_result
::type parse(ScannerT const & scan) const { typedef typename parser_result
::type result_t; result_t hit = scan.empty_match(); std::size_t n = m_min; for (std::size_t i = 0; ; ++i) { typename ScannerT::iterator_t save = scan.first; result_t next = this->subject().parse(scan); if (!next) { if (i >= n) { scan.first = save; break; } else { return scan.no_match(); } } scan.concat_match(hit, next); } return hit; } template
struct result { typedef typename match_result
::type type; }; private: MinT m_min; }; template
struct fixed_loop_gen { fixed_loop_gen (ExactT const & exact) : m_exact (exact) {} template
fixed_loop
operator[](parser
const & subject) const { return fixed_loop
(subject.derived (), m_exact); } ExactT m_exact; }; namespace impl { template
struct loop_traits { typedef typename mpl::if_< boost::is_same
, infinite_loop
, finite_loop
>::type type; }; } // namespace impl template
struct nonfixed_loop_gen { nonfixed_loop_gen (MinT min, MaxT max) : m_min (min), m_max (max) {} template
typename impl::loop_traits
::type operator[](parser
const & subject) const { typedef typename impl::loop_traits
::type ret_t; return ret_t( subject.derived(), m_min, m_max); } MinT m_min; MaxT m_max; }; template
fixed_loop_gen
repeat_p(ExactT const & exact) { return fixed_loop_gen
(exact); } template
nonfixed_loop_gen
repeat_p(MinT const & min, MaxT const & max) { return nonfixed_loop_gen
(min, max); } }} // namespace boost::spirit #endif // #if !defined(BOOST_SPIRIT_LOOPS_HPP)
loops.hpp
Page URL
File URL
Prev
15/19
Next
Download
( 9 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.