* added classes for loading a Sonargraph project * added Sonargraph options to project setup wizard * added test for generating indexer commands from Sonargraph modules * fixed sqlite storage crashing in constructor when parent directory of provided path does not exist * removed unused FileRegister from Java indexing * removed unused info from IndexerCommandJava * refactored loading and saving of SourceGroupSettings * extracted sourcepaths settings to own class that can be re-used * merged CDB wizard contentents for source file and indexed paths * unified wizard content for sonargraph project path * removed include filters from default source groups * extracted generation of RefreshInfo from Project to RefreshInfoGenerator * added tests for RefreshInfoGenerator * added language and standard selection to sonargraph project setup * added auto-detection for indexed header paths of sonargraph cmake json modules * Sonargraph::Project can enable/disable support for specific modules * warn if sonargraph project contains no matching modules * indexed headers can be detected from sonargraph project
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
#ifndef SOURCE_GROUP_JAVA_H
|
|
#define SOURCE_GROUP_JAVA_H
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
#include "project/SourceGroup.h"
|
|
|
|
class SourceGroupSettingsJava;
|
|
|
|
class SourceGroupJava: public SourceGroup
|
|
{
|
|
public:
|
|
std::set<FilePath> filterToContainedFilePaths(const std::set<FilePath>& filePaths) const override;
|
|
std::set<FilePath> getAllSourceFilePaths() const override;
|
|
std::vector<std::shared_ptr<IndexerCommand>> getIndexerCommands(const std::set<FilePath>& filesToIndex) const override;
|
|
|
|
private:
|
|
virtual std::vector<FilePath> getAllSourcePaths() const = 0;
|
|
virtual std::vector<FilePath> doGetClassPath() const = 0;
|
|
virtual std::shared_ptr<SourceGroupSettingsJava> getSourceGroupSettingsJava() = 0;
|
|
virtual std::shared_ptr<const SourceGroupSettingsJava> getSourceGroupSettingsJava() const = 0;
|
|
std::shared_ptr<SourceGroupSettings> getSourceGroupSettings() override;
|
|
std::shared_ptr<const SourceGroupSettings> getSourceGroupSettings() const override;
|
|
|
|
std::vector<FilePath> getClassPath() const;
|
|
};
|
|
|
|
#endif // SOURCE_GROUP_JAVA_H
|