blob: 9a282b7d9e906cde03d907cc7aa73f53f4159081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/**
* @file operator-check.cc
* @author Implementation of the CHECK command.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#include "depot.h"
#include "mailbox.h"
#include "operators.h"
#include "pendingupdates.h"
#include "recursivedescent.h"
#include "session.h"
#include <string>
using namespace Binc;
CheckOperator::CheckOperator() {}
CheckOperator::~CheckOperator() {}
const std::string CheckOperator::getName() const
{
return "CHECK";
}
Session::State CheckOperator::getState() const
{
return Session::SELECTED;
}
Operator::ProcessResult CheckOperator::process(Depot &depot, Request &command)
{
Mailbox *mailbox = depot.getSelected();
if (mailbox != nullptr) {
pendingUpdates(mailbox,
PendingUpdates::FLAGS | PendingUpdates::EXISTS | PendingUpdates::RECENT,
true);
}
return Operator::ProcessResult::OK;
}
Parser::ParseResult CheckOperator::parse(Request &c_in, Parser &p)
{
Session &session = Session::getInstance();
if (c_in.getUidMode()) return Parser::ParseResult::REJECT;
if (Parser::ParseResult res = p.expectCRLF(); res != Parser::ParseResult::ACCEPT) {
session.setLastError("Expected CRLF after CHECK");
return res;
}
c_in.setName("CHECK");
return Parser::ParseResult::ACCEPT;
}
|