From 44388ac49531af9e2565f76ef99ff7afb757b3fb Mon Sep 17 00:00:00 2001 From: Erwin Hoffmann Date: Thu, 21 Sep 2023 17:36:16 +0200 Subject: all sources --- src/operator-check.cc | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/operator-check.cc (limited to 'src/operator-check.cc') diff --git a/src/operator-check.cc b/src/operator-check.cc new file mode 100644 index 0000000..ee58d8f --- /dev/null +++ b/src/operator-check.cc @@ -0,0 +1,71 @@ +/** -------------------------------------------------------------------- + * @file operator-check.cc + * @author Implementation of the CHECK command. + * @author Andreas Aardal Hanssen + * @date 2002-2005 + * ----------------------------------------------------------------- **/ +#include + +#include "depot.h" +#include "mailbox.h" +#include "operators.h" +#include "recursivedescent.h" +#include "pendingupdates.h" +#include "session.h" + +using namespace ::std; +using namespace Binc; + +//---------------------------------------------------------------------- +CheckOperator::CheckOperator(void) +{ +} + + +//---------------------------------------------------------------------- +CheckOperator::~CheckOperator(void) +{ +} + +//---------------------------------------------------------------------- +const string CheckOperator::getName(void) const +{ + return "CHECK"; +} + +//---------------------------------------------------------------------- +int CheckOperator::getState(void) const +{ + return Session::SELECTED; +} + +//------------------------------------------------------------------------ +Operator::ProcessResult CheckOperator::process(Depot &depot, + Request &command) +{ + Mailbox *mailbox = depot.getSelected(); + if (mailbox != 0) + pendingUpdates(mailbox, PendingUpdates::FLAGS + | PendingUpdates::EXISTS + | PendingUpdates::RECENT, true); + + return OK; +} + +//---------------------------------------------------------------------- +Operator::ParseResult CheckOperator::parse(Request &c_in) const +{ + Session &session = Session::getInstance(); + + if (c_in.getUidMode()) return REJECT; + + Operator::ParseResult res; + if ((res = expectCRLF()) != ACCEPT) { + session.setLastError("Expected CRLF after CHECK"); + return res; + } + + c_in.setName("CHECK"); + return ACCEPT; +} + -- cgit v1.2.3