2017-09-30 19:35:09 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <set>
|
|
|
|
#include "plugin.hxx"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Check for places where we declare a block directly inside a block
|
|
|
|
*/
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class BlockBlock:
|
|
|
|
public RecursiveASTVisitor<BlockBlock>, public loplugin::RewritePlugin
|
|
|
|
{
|
|
|
|
public:
|
2017-11-07 11:50:47 +01:00
|
|
|
explicit BlockBlock(loplugin::InstantiationData const & data):
|
|
|
|
RewritePlugin(data) {}
|
2017-09-30 19:35:09 +02:00
|
|
|
|
|
|
|
virtual void run() override
|
|
|
|
{
|
2018-05-29 11:28:07 +02:00
|
|
|
StringRef fn(handler.getMainFileName());
|
2018-03-26 13:26:46 +02:00
|
|
|
if (loplugin::isSamePathname(fn, SRCDIR "/sal/osl/unx/file_misc.cxx"))
|
2017-09-30 19:35:09 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VisitCompoundStmt(CompoundStmt const * );
|
|
|
|
};
|
|
|
|
|
|
|
|
bool BlockBlock::VisitCompoundStmt(CompoundStmt const * compound)
|
|
|
|
{
|
|
|
|
if (ignoreLocation(compound))
|
|
|
|
return true;
|
|
|
|
if (compound->size() != 1)
|
|
|
|
return true;
|
|
|
|
auto inner = *compound->body_begin();
|
|
|
|
if (!isa<CompoundStmt>(inner))
|
|
|
|
return true;
|
|
|
|
if (compiler.getSourceManager().isMacroBodyExpansion(compound->getLocStart()))
|
|
|
|
return true;
|
|
|
|
if (compiler.getSourceManager().isMacroBodyExpansion(inner->getLocStart()))
|
|
|
|
return true;
|
2017-10-04 12:03:23 +02:00
|
|
|
if (containsPreprocessingConditionalInclusion(compound->getSourceRange())) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-09-30 19:35:09 +02:00
|
|
|
report(
|
|
|
|
DiagnosticsEngine::Warning,
|
|
|
|
"block directly inside block",
|
|
|
|
compound->getLocStart())
|
|
|
|
<< compound->getSourceRange();
|
|
|
|
report(
|
|
|
|
DiagnosticsEngine::Note,
|
|
|
|
"inner block here",
|
|
|
|
inner->getLocStart())
|
|
|
|
<< inner->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
loplugin::Plugin::Registration< BlockBlock > X("blockblock", true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|