Coverage Report

Created: 2025-08-29 06:04

/src/mosh/src/terminal/parsertransition.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
    Mosh: the mobile shell
3
    Copyright 2012 Keith Winstein
4
5
    This program is free software: you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by
7
    the Free Software Foundation, either version 3 of the License, or
8
    (at your option) any later version.
9
10
    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
    GNU General Public License for more details.
14
15
    You should have received a copy of the GNU General Public License
16
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
    In addition, as a special exception, the copyright holders give
19
    permission to link the code of portions of this program with the
20
    OpenSSL library under certain conditions as described in each
21
    individual source file, and distribute linked combinations including
22
    the two.
23
24
    You must obey the GNU General Public License in all respects for all
25
    of the code used other than OpenSSL. If you modify file(s) with this
26
    exception, you may extend this exception to your version of the
27
    file(s), but you are not obligated to do so. If you do not wish to do
28
    so, delete this exception statement from your version. If you delete
29
    this exception statement from all source files in the program, then
30
    also delete it here.
31
*/
32
33
#ifndef PARSERTRANSITION_HPP
34
#define PARSERTRANSITION_HPP
35
36
#include <cstdlib>
37
38
#include "src/terminal/parseraction.h"
39
40
namespace Parser {
41
class State;
42
43
class Transition
44
{
45
public:
46
  // Transition is only a courier for an Action; it should
47
  // never create/delete one on its own.
48
  ActionPointer action;
49
  State* next_state;
50
51
867k
  Transition( const Transition& x ) : action( x.action ), next_state( x.next_state ) {}
52
  Transition& operator=( const Transition& t )
53
0
  {
54
0
    action = t.action;
55
0
    next_state = t.next_state;
56
0
57
0
    return *this;
58
0
  }
59
  Transition( ActionPointer s_action = std::make_shared<Ignore>(), State* s_next_state = NULL )
60
6.09M
    : action( s_action ), next_state( s_next_state )
61
6.09M
  {}
62
63
  // This is only ever used in the 1-argument form;
64
  // we use this instead of an initializer to
65
  // tell Coverity the object never owns *action.
66
  Transition( State* s_next_state, ActionPointer s_action = std::make_shared<Ignore>() )
67
8.68M
    : action( s_action ), next_state( s_next_state )
68
8.68M
  {}
69
};
70
}
71
72
#endif