2002-09-17 00:27:00 +04:00
|
|
|
#include "cmCPluginAPI.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char *LibraryName;
|
2004-05-03 20:02:00 +04:00
|
|
|
int Argc;
|
|
|
|
char** Argv;
|
2002-09-17 00:27:00 +04:00
|
|
|
} cmVTKWrapTclData;
|
|
|
|
|
|
|
|
/* do almost everything in the initial pass */
|
2006-01-17 18:21:45 +03:00
|
|
|
static int CCONV InitialPass(void *inf, void *mf, int argc, char *argv[])
|
2002-09-17 00:27:00 +04:00
|
|
|
{
|
2003-07-22 20:21:15 +04:00
|
|
|
char* file;
|
2004-05-03 16:52:03 +04:00
|
|
|
char* str;
|
2005-09-20 20:50:27 +04:00
|
|
|
char *srcs;
|
2004-05-03 16:52:03 +04:00
|
|
|
const char* cstr;
|
2003-07-22 20:21:15 +04:00
|
|
|
char buffer[1024];
|
|
|
|
void *source_file;
|
2005-09-20 20:50:27 +04:00
|
|
|
char *args[2];
|
2006-07-21 18:26:05 +04:00
|
|
|
char *ccArgs[4];
|
|
|
|
char *ccDep[1];
|
|
|
|
char *ccOut[1];
|
2002-09-17 00:27:00 +04:00
|
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
2005-09-20 20:50:27 +04:00
|
|
|
|
2002-09-17 00:27:00 +04:00
|
|
|
cmVTKWrapTclData *cdata =
|
|
|
|
(cmVTKWrapTclData *)malloc(sizeof(cmVTKWrapTclData));
|
|
|
|
cdata->LibraryName = "BOO";
|
2004-05-03 20:02:00 +04:00
|
|
|
cdata->Argc = argc;
|
|
|
|
cdata->Argv = argv;
|
2002-09-17 00:27:00 +04:00
|
|
|
info->CAPI->SetClientData(info,cdata);
|
2005-09-20 20:50:27 +04:00
|
|
|
|
2002-09-20 18:06:00 +04:00
|
|
|
/* 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 */
|
2002-09-17 00:27:00 +04:00
|
|
|
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";
|
2003-07-22 20:21:15 +04:00
|
|
|
|
|
|
|
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->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");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
source_file = info->CAPI->CreateNewSourceFile(mf);
|
2004-05-03 16:52:03 +04:00
|
|
|
cstr = info->CAPI->SourceFileGetSourceName(source_file);
|
|
|
|
sprintf(buffer, "Shold be empty (source file name): [%s]", cstr);
|
2003-07-22 20:21:15 +04:00
|
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
2004-05-03 16:52:03 +04:00
|
|
|
cstr = info->CAPI->SourceFileGetFullPath(source_file);
|
2006-12-07 17:45:32 +03:00
|
|
|
sprintf(buffer, "Should be empty (source file full path): [%s]", cstr);
|
2003-07-22 20:21:15 +04:00
|
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
2006-12-07 17:45:32 +03:00
|
|
|
info->CAPI->DefineSourceFileProperty(mf,"SOME_PROPERTY","unused old prop",
|
|
|
|
"This property is no longer used",
|
|
|
|
0);
|
2003-07-22 20:21:15 +04:00
|
|
|
if ( info->CAPI->SourceFileGetPropertyAsBool(source_file, "SOME_PROPERTY") )
|
|
|
|
{
|
|
|
|
info->CAPI->SetError(mf, "Property SOME_PROPERTY should not be defined");
|
|
|
|
return 0;
|
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
info->CAPI->DefineSourceFileProperty(mf,"SOME_PROPERTY2","nice prop",
|
|
|
|
"This property is for testing.",
|
|
|
|
0);
|
2005-09-20 20:50:27 +04:00
|
|
|
info->CAPI->SourceFileSetProperty(source_file, "SOME_PROPERTY2", "HERE");
|
2004-05-03 16:52:03 +04:00
|
|
|
cstr = info->CAPI->SourceFileGetProperty(source_file, "ABSTRACT");
|
2005-09-20 20:50:27 +04:00
|
|
|
sprintf(buffer, "Should be 0 (source file abstract property): [%p]", cstr);
|
2003-07-22 20:21:15 +04:00
|
|
|
info->CAPI->DisplaySatus(mf, buffer);
|
|
|
|
|
|
|
|
info->CAPI->DestroySourceFile(source_file);
|
|
|
|
|
2006-07-25 20:38:17 +04:00
|
|
|
srcs = argv[2];
|
|
|
|
info->CAPI->AddExecutable(mf,"LoadedCommand",1, &srcs, 0);
|
|
|
|
|
2006-07-21 18:26:05 +04:00
|
|
|
/* add customs commands to generate the source file */
|
|
|
|
ccArgs[0] = "-E";
|
|
|
|
ccArgs[1] = "copy";
|
|
|
|
ccArgs[2] = argv[0];
|
|
|
|
ccArgs[3] = argv[1];
|
|
|
|
ccDep[0] = ccArgs[2];
|
|
|
|
ccOut[0] = ccArgs[3];
|
2006-07-21 22:05:32 +04:00
|
|
|
info->CAPI->AddCustomCommand(mf, "LoadedCommand.cxx.in",
|
2006-07-21 18:26:05 +04:00
|
|
|
file,
|
|
|
|
4, ccArgs,
|
|
|
|
1, ccDep,
|
|
|
|
1, ccOut,
|
|
|
|
"LoadedCommand");
|
|
|
|
|
|
|
|
|
|
|
|
ccArgs[2] = argv[1];
|
|
|
|
ccArgs[3] = argv[2];
|
|
|
|
ccDep[0] = ccArgs[2];
|
|
|
|
ccOut[0] = ccArgs[3];
|
|
|
|
info->CAPI->AddCustomCommandToOutput(mf, ccOut[0],
|
|
|
|
file,
|
|
|
|
4, ccArgs,
|
|
|
|
ccDep[0],
|
|
|
|
0, 0);
|
|
|
|
|
2006-07-24 23:40:52 +04:00
|
|
|
|
|
|
|
ccArgs[1] = "echo";
|
|
|
|
ccArgs[2] = "Build has finished";
|
|
|
|
info->CAPI->AddCustomCommandToTarget(mf, "LoadedCommand",
|
|
|
|
file,
|
|
|
|
3, ccArgs,
|
|
|
|
CM_POST_BUILD);
|
|
|
|
|
2006-07-21 18:26:05 +04:00
|
|
|
info->CAPI->Free(file);
|
|
|
|
|
2005-09-20 20:50:27 +04:00
|
|
|
args[0] = "TEST_EXEC";
|
|
|
|
args[1] = "TRUE";
|
|
|
|
|
|
|
|
/* code coverage */
|
|
|
|
if (info->CAPI->GetTotalArgumentSize(2,args) != 13)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
info->CAPI->ExecuteCommand(mf,"SET",2,args);
|
|
|
|
|
2006-07-26 17:11:04 +04:00
|
|
|
/* make sure we can find the source file */
|
2006-07-24 23:40:52 +04:00
|
|
|
if (!info->CAPI->GetSource(mf,argv[1]))
|
|
|
|
{
|
|
|
|
info->CAPI->SetError(mf, "Source file could not be found!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-17 00:27:00 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-01-17 18:21:45 +03:00
|
|
|
static void CCONV FinalPass(void *inf, void *mf)
|
2002-09-17 00:27:00 +04:00
|
|
|
{
|
|
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
2002-09-20 18:06:00 +04:00
|
|
|
/* get our client data from initial pass */
|
2002-09-17 00:27:00 +04:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|
2006-01-17 18:21:45 +03:00
|
|
|
static void CCONV Destructor(void *inf)
|
2002-09-17 18:38:34 +04:00
|
|
|
{
|
|
|
|
cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf;
|
2002-09-20 18:06:00 +04:00
|
|
|
/* get our client data from initial pass */
|
2002-09-17 18:38:34 +04:00
|
|
|
cmVTKWrapTclData *cdata =
|
|
|
|
(cmVTKWrapTclData *)info->CAPI->GetClientData(info);
|
|
|
|
free(cdata);
|
|
|
|
}
|
|
|
|
|
2002-09-18 19:38:15 +04:00
|
|
|
#ifdef MUCHO_MUDSLIDE
|
2006-01-17 18:21:45 +03:00
|
|
|
void CM_PLUGIN_EXPORT CCONV CMAKE_TEST_COMMANDInit(cmLoadedCommandInfo *info)
|
2002-09-17 00:27:00 +04:00
|
|
|
{
|
|
|
|
info->InitialPass = InitialPass;
|
|
|
|
info->FinalPass = FinalPass;
|
2002-09-17 18:38:34 +04:00
|
|
|
info->Destructor = Destructor;
|
2002-09-17 00:27:00 +04:00
|
|
|
info->m_Inherited = 0;
|
2002-09-23 22:57:41 +04:00
|
|
|
info->Name = "CMAKE_TEST_COMMAND";
|
2002-09-17 00:27:00 +04:00
|
|
|
}
|
2002-09-18 19:38:15 +04:00
|
|
|
#endif
|
2002-09-17 00:27:00 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|