STYLE: trailing whitespace, doxygen, error messages from fileOperation

This commit is contained in:
Mark Olesen
2017-12-13 17:56:34 +01:00
parent 0af97856f1
commit bc8420e14f
33 changed files with 65 additions and 102 deletions

View File

@ -1,16 +1,13 @@
#!/bin/bash #!/bin/sh
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# Script # Script
# find-trailingspace # git-find-trailingspace
# #
# Description # Description
# Search for files with trailing whitesapce # Use git grep to search for files with trailing whitespace
# #
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
cd $WM_PROJECT_DIR || exit 1
tab=$'\t' git grep -c -P '\s+$' -- $@
git grep -c -E "[ $tab]+"'$' -- $@
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------

View File

@ -1,15 +0,0 @@
Misc. tools for finding and/or repairing common documentation problems
See the comments in the scripts.
1. find-suspiciousTags
2. fix-Class
3. find-tinyDescription
4. find-placeholderDescription
5. find-retagged
Misc Tools
1. find-templateInComments
2. find-its
3. find-junkFiles
4. find-longlines

View File

@ -227,12 +227,6 @@ Foam::fileOperations::collatedFileOperation::collatedFileOperation
} }
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::fileOperations::collatedFileOperation::~collatedFileOperation()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Foam::fileName Foam::fileOperations::collatedFileOperation::objectPath Foam::fileName Foam::fileOperations::collatedFileOperation::objectPath

View File

@ -99,7 +99,7 @@ public:
//- Destructor //- Destructor
virtual ~collatedFileOperation(); virtual ~collatedFileOperation() = default;
// Member Functions // Member Functions

View File

@ -54,10 +54,10 @@ namespace Foam
false false
) )
); );
word fileOperation::processorsDir = "processors";
} }
Foam::word Foam::fileOperation::processorsDir = "processors";
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
@ -143,30 +143,25 @@ bool Foam::fileOperation::isFileOrDir(const bool isFile, const fileName& f)
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::fileOperation::fileOperation()
{}
Foam::autoPtr<Foam::fileOperation> Foam::fileOperation::New Foam::autoPtr<Foam::fileOperation> Foam::fileOperation::New
( (
const word& type, const word& handlerType,
const bool verbose const bool verbose
) )
{ {
if (debug) if (debug)
{ {
InfoInFunction << "Constructing fileOperation" << endl; InfoInFunction << "Constructing fileHandler" << endl;
} }
wordConstructorTable::iterator cstrIter = auto cstrIter = wordConstructorTablePtr_->cfind(handlerType);
wordConstructorTablePtr_->find(type);
if (cstrIter == wordConstructorTablePtr_->end()) if (!cstrIter.found())
{ {
FatalErrorInFunction FatalErrorInFunction
<< "Unknown fileOperation type " << "Unknown fileHandler type "
<< type << nl << nl << handlerType << nl << nl
<< "Valid fileOperation types are" << endl << "Valid fileHandler types :" << endl
<< wordConstructorTablePtr_->sortedToc() << wordConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }
@ -175,12 +170,6 @@ Foam::autoPtr<Foam::fileOperation> Foam::fileOperation::New
} }
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::fileOperation::~fileOperation()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Foam::fileName Foam::fileOperation::objectPath Foam::fileName Foam::fileOperation::objectPath
@ -278,11 +267,9 @@ Foam::fileName Foam::fileOperation::filePath(const fileName& fName) const
{ {
return fName; return fName;
} }
else
{
return fileName::null; return fileName::null;
} }
}
Foam::label Foam::fileOperation::addWatch(const fileName& fName) const Foam::label Foam::fileOperation::addWatch(const fileName& fName) const

View File

@ -24,6 +24,15 @@ License
Class Class
Foam::fileOperation Foam::fileOperation
Description
An encapsulation of filesystem-related operations.
Namespace
Foam::fileOperations
Description
Namespace for implementations of a fileOperation
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#ifndef fileOperation_H #ifndef fileOperation_H
@ -75,7 +84,7 @@ public:
// Static data // Static data
//- Return the processors directory name (usually "processors") //- The processors directory name (usually "processors")
static word processorsDir; static word processorsDir;
//- Default fileHandler //- Default fileHandler
@ -108,7 +117,7 @@ public:
// Constructors // Constructors
//- Construct null //- Construct null
fileOperation(); fileOperation() = default;
// Declare run-time constructor selection table // Declare run-time constructor selection table
@ -127,12 +136,16 @@ public:
// Selectors // Selectors
//- Select type //- Select fileHandler-type
static autoPtr<fileOperation> New(const word& type, const bool verbose); static autoPtr<fileOperation> New
(
const word& handlerType,
const bool verbose
);
//- Destructor //- Destructor
virtual ~fileOperation(); virtual ~fileOperation() = default;
// Member Functions // Member Functions

View File

@ -489,13 +489,6 @@ masterUncollatedFileOperation
} }
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::fileOperations::masterUncollatedFileOperation::
~masterUncollatedFileOperation()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::fileOperations::masterUncollatedFileOperation::mkDir bool Foam::fileOperations::masterUncollatedFileOperation::mkDir

View File

@ -427,7 +427,7 @@ public:
//- Destructor //- Destructor
virtual ~masterUncollatedFileOperation(); virtual ~masterUncollatedFileOperation() = default;
// Member Functions // Member Functions

View File

@ -161,12 +161,6 @@ Foam::fileOperations::uncollatedFileOperation::uncollatedFileOperation
} }
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::fileOperations::uncollatedFileOperation::~uncollatedFileOperation()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::fileOperations::uncollatedFileOperation::mkDir bool Foam::fileOperations::uncollatedFileOperation::mkDir

View File

@ -77,7 +77,7 @@ public:
//- Destructor //- Destructor
virtual ~uncollatedFileOperation(); virtual ~uncollatedFileOperation() = default;
// Member Functions // Member Functions