summaryrefslogtreecommitdiff
path: root/src/plugins/duieditor/duieditor.cpp
blob: 23aeaa9a2778e2f4114d3777d8b28e2eda8a64cb (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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact:  Qt Software Information (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
**************************************************************************/

#include "duieditor.h"
#include "duieditorconstants.h"
#include "duihighlighter.h"
#include "duieditorplugin.h"
#include "duidocument.h"

#include "rewriter_p.h"

#include "qmljsastvisitor_p.h"
#include "qmljsast_p.h"
#include "qmljsengine_p.h"

#include <coreplugin/icore.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <texteditor/basetextdocument.h>
#include <texteditor/fontsettings.h>
#include <texteditor/textblockiterator.h>
#include <texteditor/texteditorconstants.h>
#include <texteditor/texteditorsettings.h>

#include <utils/uncommentselection.h>

#include <QtCore/QTimer>
#include <QtCore/QtDebug>

#include <QtGui/QMenu>
#include <QtGui/QComboBox>
#include <QtGui/QInputDialog>
#include <QtGui/QMainWindow>

enum {
	UPDATE_DOCUMENT_DEFAULT_INTERVAL = 250
};

using namespace QmlJS;
using namespace QmlJS::AST;


namespace DuiEditor {
namespace Internal {

class FindWords: protected Visitor
{
public:
	QStringList operator()(AST::Node *node)
	{
		_words.clear();
		accept(node);
		return QStringList(_words.toList());
	}

protected:
	void accept(AST::Node *node)
	{ AST::Node::acceptChild(node, this); }

	using Visitor::visit;
	using Visitor::endVisit;

	void addWords(AST::UiQualifiedId *id)
	{
		for (; id; id = id->next) {
			if (id->name)
				_words.insert(id->name->asString());
		}
	}

	virtual bool visit(AST::UiPublicMember *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		return true;
	}

	virtual bool visit(AST::UiQualifiedId *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		return true;
	}

	virtual bool visit(AST::IdentifierExpression *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		return true;
	}

	virtual bool visit(AST::FieldMemberExpression *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		return true;
	}

	virtual bool visit(AST::FunctionExpression *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		for (AST::FormalParameterList *it = node->formals; it; it = it->next) {
			if (it->name)
				_words.insert(it->name->asString());
		}

		return true;
	}

	virtual bool visit(AST::FunctionDeclaration *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		for (AST::FormalParameterList *it = node->formals; it; it = it->next) {
			if (it->name)
				_words.insert(it->name->asString());
		}

		return true;
	}

	virtual bool visit(AST::VariableDeclaration *node)
	{
		if (node->name)
			_words.insert(node->name->asString());

		return true;
	}

private:
	QSet<QString> _words;
};

class FindIdDeclarations: protected Visitor
{
public:
	typedef QMap<QString, QList<AST::SourceLocation> > Result;

	Result operator()(AST::Node *node)
	{
		_ids.clear();
		_maybeIds.clear();
		accept(node);
		return _ids;
	}

protected:
	QString asString(AST::UiQualifiedId *id)
	{
		QString text;
		for (; id; id = id->next) {
			if (id->name)
				text += id->name->asString();
			else
				text += QLatin1Char('?');

			if (id->next)
				text += QLatin1Char('.');
		}

		return text;
	}

	void accept(AST::Node *node)
	{ AST::Node::acceptChild(node, this); }

	using Visitor::visit;
	using Visitor::endVisit;

	virtual bool visit(AST::UiScriptBinding *node)
	{
		if (asString(node->qualifiedId) == QLatin1String("id")) {
			if (AST::ExpressionStatement *stmt = AST::cast<AST::ExpressionStatement*>(node->statement)) {
				if (AST::IdentifierExpression *idExpr = AST::cast<AST::IdentifierExpression *>(stmt->expression)) {
					if (idExpr->name) {
						const QString id = idExpr->name->asString();
						QList<AST::SourceLocation> *locs = &_ids[id];
						locs->append(idExpr->firstSourceLocation());
						locs->append(_maybeIds.value(id));
						_maybeIds.remove(id);
						return false;
					}
				}
			}
		}

		accept(node->statement);

		return false;
	}

	virtual bool visit(AST::IdentifierExpression *node)
	{
		if (node->name) {
			const QString name = node->name->asString();

			if (_ids.contains(name))
				_ids[name].append(node->identifierToken);
			else
				_maybeIds[name].append(node->identifierToken);
		}
		return false;
	}

private:
	Result _ids;
	Result _maybeIds;
};

class FindDeclarations: protected Visitor
{
	QList<Declaration> _declarations;
	int _depth;

public:
	QList<Declaration> operator()(AST::Node *node)
	{
		_depth = -1;
		_declarations.clear();
		accept(node);
		return _declarations;
	}

protected:
	using Visitor::visit;
	using Visitor::endVisit;

	QString asString(AST::UiQualifiedId *id)
	{
		QString text;
		for (; id; id = id->next) {
			if (id->name)
				text += id->name->asString();
			else
				text += QLatin1Char('?');

			if (id->next)
				text += QLatin1Char('.');
		}

		return text;
	}

	void accept(AST::Node *node)
	{ AST::Node::acceptChild(node, this); }

	void init(Declaration *decl, AST::UiObjectMember *member)
	{
		const SourceLocation first = member->firstSourceLocation();
		const SourceLocation last = member->lastSourceLocation();
		decl->startLine = first.startLine;
		decl->startColumn = first.startColumn;
		decl->endLine = last.startLine;
		decl->endColumn = last.startColumn + last.length;
	}

	virtual bool visit(AST::UiObjectDefinition *node)
	{
		++_depth;

		Declaration decl;
		init(&decl, node);

		decl.text.fill(QLatin1Char(' '), _depth);
		if (node->qualifiedTypeNameId)
			decl.text.append(asString(node->qualifiedTypeNameId));
		else
			decl.text.append(QLatin1Char('?'));

		_declarations.append(decl);

		return true; // search for more bindings
	}

	virtual void endVisit(AST::UiObjectDefinition *)
	{
		--_depth;
	}

	virtual bool visit(AST::UiObjectBinding *node)
	{
		++_depth;

		Declaration decl;
		init(&decl, node);

		decl.text.fill(QLatin1Char(' '), _depth);

		decl.text.append(asString(node->qualifiedId));
		decl.text.append(QLatin1String(": "));

		if (node->qualifiedTypeNameId)
			decl.text.append(asString(node->qualifiedTypeNameId));
		else
			decl.text.append(QLatin1Char('?'));

		_declarations.append(decl);

		return true; // search for more bindings
	}

	virtual void endVisit(AST::UiObjectBinding *)
	{
		--_depth;
	}

#if 0 // ### ignore script bindings for now.
	virtual bool visit(AST::UiScriptBinding *node)
	{
		++_depth;

		Declaration decl;
		init(&decl, node);

		decl.text.fill(QLatin1Char(' '), _depth);
		decl.text.append(asString(node->qualifiedId));

		_declarations.append(decl);

		return false; // more more bindings in this subtree.
	}

	virtual void endVisit(AST::UiScriptBinding *)
	{
		--_depth;
	}
#endif
};

ScriptEditorEditable::ScriptEditorEditable(ScriptEditor *editor, const QList<int>& context)
	: BaseTextEditorEditable(editor), m_context(context)
{
}

ScriptEditor::ScriptEditor(const Context &context,
						   QWidget *parent) :
	TextEditor::BaseTextEditor(parent),
	m_context(context),
	m_methodCombo(0)
{
	setParenthesesMatchingEnabled(true);
	setMarksVisible(true);
	setCodeFoldingSupported(true);
	setCodeFoldingVisible(true);
	setMimeType(DuiEditor::Constants::C_DUIEDITOR_MIMETYPE);

	m_updateDocumentTimer = new QTimer(this);
	m_updateDocumentTimer->setInterval(UPDATE_DOCUMENT_DEFAULT_INTERVAL);
	m_updateDocumentTimer->setSingleShot(true);

	connect(m_updateDocumentTimer, SIGNAL(timeout()), this, SLOT(updateDocumentNow()));

	connect(this, SIGNAL(textChanged()), this, SLOT(updateDocument()));

	baseTextDocument()->setSyntaxHighlighter(new DuiHighlighter);
}

ScriptEditor::~ScriptEditor()
{
}

QList<Declaration> ScriptEditor::declarations() const
{ return m_declarations; }

QStringList ScriptEditor::words() const
{ return m_words; }

Core::IEditor *ScriptEditorEditable::duplicate(QWidget *parent)
{
	ScriptEditor *newEditor = new ScriptEditor(m_context, parent);
	newEditor->duplicateFrom(editor());
	DuiEditorPlugin::instance()->initializeEditor(newEditor);
	return newEditor->editableInterface();
}

const char *ScriptEditorEditable::kind() const
{
	return DuiEditor::Constants::C_DUIEDITOR;
}

ScriptEditor::Context ScriptEditorEditable::context() const
{
	return m_context;
}

void ScriptEditor::updateDocument()
{
	m_updateDocumentTimer->start(UPDATE_DOCUMENT_DEFAULT_INTERVAL);
}

void ScriptEditor::updateDocumentNow()
{
	// ### move in the parser thread.

	m_updateDocumentTimer->stop();

	const QString fileName = file()->fileName();
	const QString source = toPlainText();

	DuiDocument::Ptr doc = DuiDocument::create(fileName);
	doc->setSource(source);
	bool parsed = doc->parse();
	m_document = doc;

	FindIdDeclarations updateIds;
	m_ids = updateIds(doc->program());

	if (parsed) {
		FindDeclarations findDeclarations;
		m_declarations = findDeclarations(doc->program());

		FindWords findWords;
		m_words = findWords(doc->program());

		QStringList items;
		items.append(tr("<Select Symbol>"));

		foreach (Declaration decl, m_declarations)
			items.append(decl.text);

		m_methodCombo->clear();
		m_methodCombo->addItems(items);
		updateMethodBoxIndex();
	}

	QList<QTextEdit::ExtraSelection> selections;

	QTextCharFormat errorFormat;
	errorFormat.setUnderlineColor(Qt::red);
	errorFormat.setUnderlineStyle(QTextCharFormat::WaveUnderline);

	QTextEdit::ExtraSelection sel;

	m_diagnosticMessages = doc->diagnosticMessages();

	foreach (const DiagnosticMessage &d, m_diagnosticMessages) {
		int line = d.loc.startLine;
		int column = d.loc.startColumn;

		if (column == 0)
			column = 1;

		QTextCursor c(document()->findBlockByNumber(line - 1));
		sel.cursor = c;

		sel.cursor.setPosition(c.position() + column - 1);
		if (sel.cursor.atBlockEnd())
			sel.cursor.movePosition(QTextCursor::StartOfWord, QTextCursor::KeepAnchor);
		else
			sel.cursor.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);

		sel.format = errorFormat;

		selections.append(sel);
	}

	setExtraSelections(CodeWarningsSelection, selections);
}

void ScriptEditor::jumpToMethod(int index)
{
	if (index) {
		Declaration d = m_declarations.at(index - 1);
		gotoLine(d.startLine, d.startColumn - 1);
		setFocus();
	}
}

void ScriptEditor::updateMethodBoxIndex()
{
	int line = 0, column = 0;
	convertPosition(position(), &line, &column);

	int currentSymbolIndex = 0;

	int index = 0;
	while (index < m_declarations.size()) {
		const Declaration &d = m_declarations.at(index++);

		if (line < d.startLine)
			break;
		else
			currentSymbolIndex = index;
	}

	m_methodCombo->setCurrentIndex(currentSymbolIndex);

	QList<QTextEdit::ExtraSelection> selections;
	foreach (const AST::SourceLocation &loc, m_ids.value(wordUnderCursor())) {
		if (! loc.isValid())
			continue;

		QTextEdit::ExtraSelection sel;
		sel.format.setBackground(Qt::yellow);
		sel.cursor = textCursor();
		sel.cursor.setPosition(loc.begin());
		sel.cursor.setPosition(loc.end(), QTextCursor::KeepAnchor);
		selections.append(sel);
	}

	setExtraSelections(CodeSemanticsSelection, selections);
}

void ScriptEditor::updateMethodBoxToolTip()
{
}

void ScriptEditor::updateFileName()
{
}

void ScriptEditor::renameIdUnderCursor()
{
	const QString id = wordUnderCursor();
	bool ok = false;
	const QString newId = QInputDialog::getText(Core::ICore::instance()->mainWindow(),
												tr("Rename..."),
												tr("New id:"),
												QLineEdit::Normal,
												id, &ok);
	if (ok) {
		TextWriter writer;

		QString code = toPlainText();

		foreach (const AST::SourceLocation &loc, m_ids.value(id)) {
			writer.replace(loc.offset, loc.length, newId);
		}

		QTextCursor tc = textCursor();
		writer.write(&tc);
	}
}

QStringList ScriptEditor::keywords() const
{
	QStringList words;

	if (DuiHighlighter *highlighter = qobject_cast<DuiHighlighter*>(baseTextDocument()->syntaxHighlighter())) {
		words = highlighter->keywords().toList();
	}

	return words;
}

void ScriptEditor::setFontSettings(const TextEditor::FontSettings &fs)
{
	TextEditor::BaseTextEditor::setFontSettings(fs);
	DuiHighlighter *highlighter = qobject_cast<DuiHighlighter*>(baseTextDocument()->syntaxHighlighter());
	if (!highlighter)
		return;

	static QVector<QString> categories;
	if (categories.isEmpty()) {
		categories << QLatin1String(TextEditor::Constants::C_NUMBER)
				   << QLatin1String(TextEditor::Constants::C_STRING)
				   << QLatin1String(TextEditor::Constants::C_TYPE)
				   << QLatin1String(TextEditor::Constants::C_KEYWORD)
				   << QLatin1String(TextEditor::Constants::C_PREPROCESSOR)
				   << QLatin1String(TextEditor::Constants::C_LABEL)
				   << QLatin1String(TextEditor::Constants::C_COMMENT);
	}

	highlighter->setFormats(fs.toTextCharFormats(categories));
	highlighter->rehighlight();
}

QString ScriptEditor::wordUnderCursor() const
{
	QTextCursor tc = textCursor();
	tc.movePosition(QTextCursor::StartOfWord);
	tc.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);
	const QString word= tc.selectedText();
	return word;
}

bool ScriptEditor::isElectricCharacter(const QChar &ch) const
{
	if (ch == QLatin1Char('}'))
		return true;
	return false;
}

void ScriptEditor::indentBlock(QTextDocument *, QTextBlock block, QChar typedChar)
{
	TextEditor::TabSettings ts = tabSettings();

	if (typedChar == QLatin1Char('}')) {
		QTextCursor tc = textCursor();
		if (TextEditor::TextBlockUserData::findPreviousBlockOpenParenthesis(&tc)) {
			const QString text = tc.block().text();
			int indent = ts.columnAt(text, ts.firstNonSpace(text));
			ts.indentLine(block, indent);
			return;
		}
	}

	int indent = 0;
	int extraIndent = 0;

	if (block.previous().isValid()) {
		const int braceDepth = qMax(0, block.previous().userState() >> 8);
		const int previousBraceDepth = qMax(0, block.previous().previous().userState() >> 8);

		if (braceDepth > previousBraceDepth)
			extraIndent = ts.m_indentSize * (braceDepth - previousBraceDepth);
	}

	QTextBlock it = block.previous();
	for (; it.isValid(); it = it.previous()) {
		const QString text = it.text();

		if (! text.isEmpty()) {
			indent = ts.columnAt(text, ts.firstNonSpace(text));
			break;
		}
	}

	ts.indentLine(block, extraIndent + indent);
}

TextEditor::BaseTextEditorEditable *ScriptEditor::createEditableInterface()
{
	ScriptEditorEditable *editable = new ScriptEditorEditable(this, m_context);
	createToolBar(editable);
	return editable;
}

void ScriptEditor::createToolBar(ScriptEditorEditable *editable)
{
	m_methodCombo = new QComboBox;
	m_methodCombo->setMinimumContentsLength(22);
	//m_methodCombo->setSizeAdjustPolicy(QComboBox::AdjustToContents);

	// Make the combo box prefer to expand
	QSizePolicy policy = m_methodCombo->sizePolicy();
	policy.setHorizontalPolicy(QSizePolicy::Expanding);
	m_methodCombo->setSizePolicy(policy);

	connect(m_methodCombo, SIGNAL(activated(int)), this, SLOT(jumpToMethod(int)));
	connect(this, SIGNAL(cursorPositionChanged()), this, SLOT(updateMethodBoxIndex()));
	connect(m_methodCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(updateMethodBoxToolTip()));

	connect(file(), SIGNAL(changed()), this, SLOT(updateFileName()));

	QToolBar *toolBar = editable->toolBar();

	QList<QAction*> actions = toolBar->actions();
	toolBar->insertWidget(actions.first(), m_methodCombo);
}

void ScriptEditor::contextMenuEvent(QContextMenuEvent *e)
{
	QMenu *menu = createStandardContextMenu();

	if (Core::ActionContainer *mcontext = Core::ICore::instance()->actionManager()->actionContainer(DuiEditor::Constants::M_CONTEXT)) {
		QMenu *contextMenu = mcontext->menu();
		foreach (QAction *action, contextMenu->actions())
			menu->addAction(action);
	}

	const QString id = wordUnderCursor();
	const QList<AST::SourceLocation> &locations = m_ids.value(id);
	if (! locations.isEmpty()) {
		menu->addSeparator();
		QAction *a = menu->addAction(tr("Rename id '%1'...").arg(id));
		connect(a, SIGNAL(triggered()), this, SLOT(renameIdUnderCursor()));
	}

	menu->exec(e->globalPos());
	menu->deleteLater();
}

void ScriptEditor::unCommentSelection()
{
	Core::Utils::unCommentSelection(this);
}

} // namespace Internal
} // namespace DuiEditor