cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
168 lines
4.0 KiB
C++
168 lines
4.0 KiB
C++
#include "clang-c/CXCompilationDatabase.h"
|
|
#include "CXString.h"
|
|
#include "clang/Tooling/CompilationDatabase.h"
|
|
#include <cstdio>
|
|
|
|
using namespace clang;
|
|
using namespace clang::tooling;
|
|
|
|
// FIXME: do something more useful with the error message
|
|
CXCompilationDatabase
|
|
clang_CompilationDatabase_fromDirectory(const char *BuildDir,
|
|
CXCompilationDatabase_Error *ErrorCode)
|
|
{
|
|
std::string ErrorMsg;
|
|
CXCompilationDatabase_Error Err = CXCompilationDatabase_NoError;
|
|
|
|
std::unique_ptr<CompilationDatabase> db =
|
|
CompilationDatabase::loadFromDirectory(BuildDir, ErrorMsg);
|
|
|
|
if (!db) {
|
|
fprintf(stderr, "LIBCLANG TOOLING ERROR: %s\n", ErrorMsg.c_str());
|
|
Err = CXCompilationDatabase_CanNotLoadDatabase;
|
|
}
|
|
|
|
if (ErrorCode)
|
|
*ErrorCode = Err;
|
|
|
|
return db.release();
|
|
}
|
|
|
|
void
|
|
clang_CompilationDatabase_dispose(CXCompilationDatabase CDb)
|
|
{
|
|
delete static_cast<CompilationDatabase *>(CDb);
|
|
}
|
|
|
|
struct AllocatedCXCompileCommands
|
|
{
|
|
std::vector<CompileCommand> CCmd;
|
|
|
|
AllocatedCXCompileCommands(std::vector<CompileCommand> Cmd)
|
|
: CCmd(std::move(Cmd)) {}
|
|
};
|
|
|
|
CXCompileCommands
|
|
clang_CompilationDatabase_getCompileCommands(CXCompilationDatabase CDb,
|
|
const char *CompleteFileName)
|
|
{
|
|
if (CompilationDatabase *db = static_cast<CompilationDatabase *>(CDb)) {
|
|
std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName));
|
|
if (!CCmd.empty())
|
|
return new AllocatedCXCompileCommands(std::move(CCmd));
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
CXCompileCommands
|
|
clang_CompilationDatabase_getAllCompileCommands(CXCompilationDatabase CDb) {
|
|
if (CompilationDatabase *db = static_cast<CompilationDatabase *>(CDb)) {
|
|
std::vector<CompileCommand> CCmd(db->getAllCompileCommands());
|
|
if (!CCmd.empty())
|
|
return new AllocatedCXCompileCommands(std::move(CCmd));
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void
|
|
clang_CompileCommands_dispose(CXCompileCommands Cmds)
|
|
{
|
|
delete static_cast<AllocatedCXCompileCommands *>(Cmds);
|
|
}
|
|
|
|
unsigned
|
|
clang_CompileCommands_getSize(CXCompileCommands Cmds)
|
|
{
|
|
if (!Cmds)
|
|
return 0;
|
|
|
|
AllocatedCXCompileCommands *ACC =
|
|
static_cast<AllocatedCXCompileCommands *>(Cmds);
|
|
|
|
return ACC->CCmd.size();
|
|
}
|
|
|
|
CXCompileCommand
|
|
clang_CompileCommands_getCommand(CXCompileCommands Cmds, unsigned I)
|
|
{
|
|
if (!Cmds)
|
|
return nullptr;
|
|
|
|
AllocatedCXCompileCommands *ACC =
|
|
static_cast<AllocatedCXCompileCommands *>(Cmds);
|
|
|
|
if (I >= ACC->CCmd.size())
|
|
return nullptr;
|
|
|
|
return &ACC->CCmd[I];
|
|
}
|
|
|
|
CXString
|
|
clang_CompileCommand_getDirectory(CXCompileCommand CCmd)
|
|
{
|
|
if (!CCmd)
|
|
return cxstring::createNull();
|
|
|
|
CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
|
|
return cxstring::createRef(cmd->Directory.c_str());
|
|
}
|
|
|
|
CXString
|
|
clang_CompileCommand_getFilename(CXCompileCommand CCmd)
|
|
{
|
|
if (!CCmd)
|
|
return cxstring::createNull();
|
|
|
|
CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
|
|
return cxstring::createRef(cmd->Filename.c_str());
|
|
}
|
|
|
|
unsigned
|
|
clang_CompileCommand_getNumArgs(CXCompileCommand CCmd)
|
|
{
|
|
if (!CCmd)
|
|
return 0;
|
|
|
|
return static_cast<CompileCommand *>(CCmd)->CommandLine.size();
|
|
}
|
|
|
|
CXString
|
|
clang_CompileCommand_getArg(CXCompileCommand CCmd, unsigned Arg)
|
|
{
|
|
if (!CCmd)
|
|
return cxstring::createNull();
|
|
|
|
CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd);
|
|
|
|
if (Arg >= Cmd->CommandLine.size())
|
|
return cxstring::createNull();
|
|
|
|
return cxstring::createRef(Cmd->CommandLine[Arg].c_str());
|
|
}
|
|
|
|
unsigned
|
|
clang_CompileCommand_getNumMappedSources(CXCompileCommand CCmd)
|
|
{
|
|
// Left here for backward compatibility. No mapped sources exists in the C++
|
|
// backend anymore.
|
|
return 0;
|
|
}
|
|
|
|
CXString
|
|
clang_CompileCommand_getMappedSourcePath(CXCompileCommand CCmd, unsigned I)
|
|
{
|
|
// Left here for backward compatibility. No mapped sources exists in the C++
|
|
// backend anymore.
|
|
return cxstring::createNull();
|
|
}
|
|
|
|
CXString
|
|
clang_CompileCommand_getMappedSourceContent(CXCompileCommand CCmd, unsigned I)
|
|
{
|
|
// Left here for backward compatibility. No mapped sources exists in the C++
|
|
// backend anymore.
|
|
return cxstring::createNull();
|
|
}
|