File: pConsoleCommand.cpp

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (149 lines) | stat: -rw-r--r-- 3,728 bytes parent folder | download | duplicates (3)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/****************************************************************************
    Copyright (C) 2005 - 2011  Filipe AZEVEDO & The Monkey Studio Team
    http://monkeystudio.org licensing under the GNU GPL.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/
#include "pConsoleCommand.h"

#include <QDebug>

pConsoleCommand::pConsoleCommand( const QStringList& commands )
{
    mCommands = commands;
}

pConsoleCommand::~pConsoleCommand()
{
}

pConsoleCommand::pConsoleCommand( const pConsoleCommand& other )
{
    operator=( other );
}

pConsoleCommand& pConsoleCommand::operator=( const pConsoleCommand& other )
{
    if( *this != other )
    {
        mCommands = other.mCommands;
    }

    return *this;
}

bool pConsoleCommand::operator==( const pConsoleCommand& other ) const
{
    return mCommands == other.mCommands;
}

bool pConsoleCommand::operator!=( const pConsoleCommand& other ) const
{
    return !operator==( other );
}

QStringList pConsoleCommand::commands() const
{
    return mCommands;
}

QStringList pConsoleCommand::parseCommand( const QString& command ) const
{
    QString cmd = command;
    QStringList result;
    bool isExtended = false;
    int pos = 0;
    
    while ( ( pos = cmd.indexOf( QRegExp( "\"|\\s" ), pos ) ) != -1 )
    {
        QChar pc = pos > 0 ? cmd[ pos -1 ] : QChar();
        QChar c = cmd[ pos ];
        
        if ( c == '"' )
        {
            pos++;
            
            if ( pc != '\\' )
            {
                if ( isExtended )
                {
                    isExtended = false;
                    result << cmd.left( pos -1 ).replace( "\\\"", "\"" );
                    cmd.remove( 0, pos );
                    pos = 0;
                }
                else
                {
                    isExtended = true;
                    cmd.remove( 0, 1 );
                    pos = 0;
                }
            }
        }
        else
        {
            pos++;
            
            if ( !isExtended )
            {
                result << cmd.left( pos -1 );
                cmd.remove( 0, pos );
                pos = 0;
            }
        }
        
        cmd = cmd.trimmed();
    }
    
    if ( !cmd.isEmpty() )
    {
        result << cmd;
    }
    
    return result;
}

QStringList pConsoleCommand::autoCompleteList( const QString& command ) const
{
    QStringList result;
    
    foreach ( const QString& cmd, mCommands )
    {
        if ( cmd.startsWith( command ) )
        {
            result << cmd;
        }
    }
    
    return result;
}

bool pConsoleCommand::isComplete( const QString& command ) const
{
    return mCommands.contains( parseCommand( command ).value( 0 ) );
}

QString pConsoleCommand::usage( const QString& command ) const
{
    Q_UNUSED( command );
    return QString::null;
}

QString pConsoleCommand::interpret( const QString& command, int* result ) const
{
    Q_UNUSED( command );
    Q_UNUSED( result );
    return QString::null;
}