157 lines
4.8 KiB
C
157 lines
4.8 KiB
C
#include "cmCPluginAPI.h"
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
typedef struct
|
|
{
|
|
char *LibraryName;
|
|
int Argc;
|
|
char** Argv;
|
|
} cmVTKWrapTclData;
|
|
|
|
|
|
/* do almost everything in the initial pass */
|
|
static int InitialPass(void *inf, void *mf, int argc, char *argv[])
|
|
{
|
|
char* file;
|
|
char* str;
|
|
const char* cstr;
|
|
char buffer[1024];
|
|
void *source_file;
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
|
|
|
cmVTKWrapTclData *cdata =
|
|
(cmVTKWrapTclData *)malloc(sizeof(cmVTKWrapTclData));
|
|
cdata->LibraryName = "BOO";
|
|
cdata->Argc = argc;
|
|
cdata->Argv = argv;
|
|
info->CAPI->SetClientData(info,cdata);
|
|
|
|
/* Now check and see if the value has been stored in the cache */
|
|
/* already, if so use that value and don't look for the program */
|
|
if(!info->CAPI->IsOn(mf,"TEST_COMMAND_TEST1"))
|
|
{
|
|
info->CAPI->AddDefinition(mf, "TEST_DEF", "HOO");
|
|
return 1;
|
|
}
|
|
|
|
info->CAPI->AddDefinition(mf, "TEST_DEF", "HOO");
|
|
cdata->LibraryName = "HOO";
|
|
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE", "ON",
|
|
"Test cache variable",
|
|
CM_CACHE_BOOL);
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE1", "",
|
|
"Test cache variable 1",
|
|
CM_CACHE_PATH);
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE2", "",
|
|
"Test cache variable 2",
|
|
CM_CACHE_FILEPATH);
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE3", "",
|
|
"Test cache variable 3",
|
|
CM_CACHE_STRING);
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE4", "",
|
|
"Test cache variable 4",
|
|
CM_CACHE_INTERNAL);
|
|
info->CAPI->AddCacheDefinition(mf, "SOME_CACHE_VARIABLE5", "",
|
|
"Test cache variable 5",
|
|
CM_CACHE_STATIC);
|
|
|
|
|
|
file = info->CAPI->ExpandVariablesInString(mf, "${CMAKE_COMMAND}", 0, 0);
|
|
|
|
str = info->CAPI->GetFilenameWithoutExtension(file);
|
|
info->CAPI->DisplaySatus(mf, str);
|
|
info->CAPI->Free(str);
|
|
str = info->CAPI->GetFilenamePath(file);
|
|
info->CAPI->DisplaySatus(mf, str);
|
|
info->CAPI->Free(str);
|
|
str = info->CAPI->Capitalized("cmake");
|
|
info->CAPI->DisplaySatus(mf, str);
|
|
info->CAPI->Free(str);
|
|
|
|
info->CAPI->Free(file);
|
|
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetProjectName(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetHomeDirectory(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetHomeOutputDirectory(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetStartDirectory(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetStartOutputDirectory(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetCurrentDirectory(mf));
|
|
info->CAPI->DisplaySatus(mf, info->CAPI->GetCurrentOutputDirectory(mf));
|
|
sprintf(buffer, "Cache version: %d.%d, CMake version: %d.%d",
|
|
info->CAPI->GetCacheMajorVersion(mf),
|
|
info->CAPI->GetCacheMinorVersion(mf),
|
|
info->CAPI->GetMajorVersion(mf),
|
|
info->CAPI->GetMinorVersion(mf));
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
|
if ( info->CAPI->CommandExists(mf, "SET") )
|
|
{
|
|
info->CAPI->DisplaySatus(mf, "Command SET exists");
|
|
}
|
|
if ( info->CAPI->CommandExists(mf, "SET_FOO_BAR") )
|
|
{
|
|
info->CAPI->SetError(mf, "Command SET_FOO_BAR should not exists");
|
|
return 0;
|
|
}
|
|
info->CAPI->AddDefineFlag(mf, "-DADDED_DEFINITION");
|
|
|
|
source_file = info->CAPI->CreateSourceFile();
|
|
cstr = info->CAPI->SourceFileGetSourceName(source_file);
|
|
sprintf(buffer, "Shold be empty (source file name): [%s]", cstr);
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
|
cstr = info->CAPI->SourceFileGetFullPath(source_file);
|
|
sprintf(buffer, "Shold be empty (source file full path): [%s]", cstr);
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
|
if ( info->CAPI->SourceFileGetPropertyAsBool(source_file, "SOME_PROPERTY") )
|
|
{
|
|
info->CAPI->SetError(mf, "Property SOME_PROPERTY should not be defined");
|
|
return 0;
|
|
}
|
|
cstr = info->CAPI->SourceFileGetProperty(source_file, "ABSTRACT");
|
|
sprintf(buffer, "Shold be 0 (source file abstract property): [%p]", cstr);
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
|
|
|
info->CAPI->DestroySourceFile(source_file);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static void FinalPass(void *inf, void *mf)
|
|
{
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
|
/* get our client data from initial pass */
|
|
cmVTKWrapTclData *cdata =
|
|
(cmVTKWrapTclData *)info->CAPI->GetClientData(info);
|
|
if (strcmp(info->CAPI->GetDefinition(mf, "TEST_DEF"),"HOO") ||
|
|
strcmp(cdata->LibraryName,"HOO"))
|
|
{
|
|
fprintf(stderr,"*** Failed LOADED COMMAND Final Pass\n");
|
|
}
|
|
}
|
|
|
|
static void Destructor(void *inf)
|
|
{
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
|
/* get our client data from initial pass */
|
|
cmVTKWrapTclData *cdata =
|
|
(cmVTKWrapTclData *)info->CAPI->GetClientData(info);
|
|
free(cdata);
|
|
}
|
|
|
|
#ifdef MUCHO_MUDSLIDE
|
|
void CM_PLUGIN_EXPORT CMAKE_TEST_COMMANDInit(cmLoadedCommandInfo *info)
|
|
{
|
|
info->InitialPass = InitialPass;
|
|
info->FinalPass = FinalPass;
|
|
info->Destructor = Destructor;
|
|
info->m_Inherited = 0;
|
|
info->Name = "CMAKE_TEST_COMMAND";
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
|