summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeimport/pythonimport.h
blob: d5c62a91b3f3b499451380e6a7c867ba122a5059 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *  copyright (C) 2006                                                     *
 *  Umbrello UML Modeller Authors <uml-devel@uml.sf.net>                   *
 ***************************************************************************/

#ifndef PYTHONIMPORT_H
#define PYTHONIMPORT_H

#include "nativeimportbase.h"

/**
 * Python code import
 * @author Oliver Kellogg
 * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
 */
class PythonImport : public NativeImportBase {
public:
    PythonImport();
    virtual ~PythonImport();

protected:
    /**
     * Reimplement operation from NativeImportBase.
     */
    void initVars();

    /**
     * Implement abstract operation from NativeImportBase.
     */
    bool parseStmt();

    /**
     * Implement abstract operation from NativeImportBase.
     */
    void fillSource(const TQString& line);

    /**
     * Reimplement operation from NativeImportBase.
     * In addition to handling multiline comments, this method transforms
     * changes in leading indentation into braces (opening brace for increase
     * in indentation, closing brace for decrease in indentation) in m_source.
     * Removal of Python's indentation sensitivity simplifies subsequent
     * processing using Umbrello's native import framework.
     */
    bool preprocess(TQString& line);

    /**
     * Skip ahead to outermost closing brace
     */
    void skipBody();

    /**
     * Buffer for number of indentation characters (whitespace,
     * i.e. tabs or spaces) at beginning of input line.
     */
    int m_srcIndent[100];

    /**
     * Index for m_srcIndent[]. Index 0 is reserved and contains 0.
     */
    int m_srcIndentIndex;

    /**
     * Auxiliary flag denoting the opening of a block
     */
    bool m_braceWasOpened;
};

#endif