summaryrefslogtreecommitdiff
path: root/src/operator-noop.cc
blob: 1d8ae1b90f67d83871afd828a6414e47c897d822 (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
/**
 *  @file  operator-noop.cc
 *  @brief Operator for the NOOP command.
 *  @author Andreas Aardal Hanssen
 *  @date 2002-2005
 */

#include "depot.h"
#include "operators.h"
#include "recursivedescent.h"
#include "session.h"

#include <iostream>
#include <string>

using namespace Binc;

NoopOperator::NoopOperator() {}

NoopOperator::~NoopOperator() {}

const std::string NoopOperator::getName() const
{
  return "NOOP";
}

Session::State NoopOperator::getState() const
{
  return Session::State(Session::NONAUTHENTICATED | Session::AUTHENTICATED
                        | Session::SELECTED);
}

Operator::ProcessResult NoopOperator::process(Depot &depot, Request &command)
{
  return Operator::ProcessResult::OK;
}

Parser::ParseResult NoopOperator::parse(Request &c_in, Parser &p)
{
  Session &session = Session::getInstance();

  if (c_in.getUidMode()) return Parser::ParseResult::REJECT;

  Parser::ParseResult res;
  if ((res = p.expectCRLF()) != Parser::ParseResult::ACCEPT) {
    session.setLastError("Expected CRLF after NOOP");
    return res;
  }

  c_in.setName("NOOP");

  return Parser::ParseResult::ACCEPT;
}