cmCPluginAPI.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. /* This header file defines the API that loadable commands can use. In many
  11. of these commands C++ instances of cmMakefile of cmSourceFile are passed
  12. in as arguments or returned. In these cases they are passed as a void *
  13. argument. In the function prototypes mf is used to represent a makefile
  14. and sf is used to represent a source file. The functions are grouped
  15. loosely into four groups 1) Utility 2) cmMakefile 3) cmSourceFile 4)
  16. cmSystemTools. Within each grouping functions are listed alphabetically */
  17. /*=========================================================================*/
  18. #ifndef cmCPluginAPI_h
  19. #define cmCPluginAPI_h
  20. #define CMAKE_VERSION_MAJOR 2
  21. #define CMAKE_VERSION_MINOR 5
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. #ifdef __WATCOMC__
  26. #define CCONV __cdecl
  27. #else
  28. #define CCONV
  29. #endif
  30. /*=========================================================================
  31. this is the structure of function entry points that a plugin may call. This
  32. structure must be kept in sync with the static decaled at the bottom of
  33. cmCPLuginAPI.cxx
  34. =========================================================================*/
  35. typedef struct
  36. {
  37. /*=========================================================================
  38. Here we define the set of functions that a plugin may call. The first goup
  39. of functions are utility functions that are specific to the plugin API
  40. =========================================================================*/
  41. /* set/Get the ClientData in the cmLoadedCommandInfo structure, this is how
  42. information is passed from the InitialPass to FInalPass for commands
  43. that need a FinalPass and need information from the InitialPass */
  44. void*(CCONV* GetClientData)(void* info);
  45. /* return the summed size in characters of all the arguments */
  46. int(CCONV* GetTotalArgumentSize)(int argc, char** argv);
  47. /* free all the memory associated with an argc, argv pair */
  48. void(CCONV* FreeArguments)(int argc, char** argv);
  49. /* set/Get the ClientData in the cmLoadedCommandInfo structure, this is how
  50. information is passed from the InitialPass to FInalPass for commands
  51. that need a FinalPass and need information from the InitialPass */
  52. void(CCONV* SetClientData)(void* info, void* cd);
  53. /* when an error occurs, call this function to set the error string */
  54. void(CCONV* SetError)(void* info, const char* err);
  55. /*=========================================================================
  56. The following functions all directly map to methods in the cmMakefile
  57. class. See cmMakefile.h for descriptions of what each method does. All of
  58. these methods take the void * makefile pointer as their first argument.
  59. =========================================================================*/
  60. void(CCONV* AddCacheDefinition)(void* mf, const char* name,
  61. const char* value, const char* doc,
  62. int cachetype);
  63. void(CCONV* AddCustomCommand)(void* mf, const char* source,
  64. const char* command, int numArgs,
  65. const char** args, int numDepends,
  66. const char** depends, int numOutputs,
  67. const char** outputs, const char* target);
  68. void(CCONV* AddDefineFlag)(void* mf, const char* definition);
  69. void(CCONV* AddDefinition)(void* mf, const char* name, const char* value);
  70. void(CCONV* AddExecutable)(void* mf, const char* exename, int numSrcs,
  71. const char** srcs, int win32);
  72. void(CCONV* AddLibrary)(void* mf, const char* libname, int shared,
  73. int numSrcs, const char** srcs);
  74. void(CCONV* AddLinkDirectoryForTarget)(void* mf, const char* tgt,
  75. const char* d);
  76. void(CCONV* AddLinkLibraryForTarget)(void* mf, const char* tgt,
  77. const char* libname, int libtype);
  78. void(CCONV* AddUtilityCommand)(void* mf, const char* utilityName,
  79. const char* command, const char* arguments,
  80. int all, int numDepends, const char** depends,
  81. int numOutputs, const char** outputs);
  82. int(CCONV* CommandExists)(void* mf, const char* name);
  83. int(CCONV* ExecuteCommand)(void* mf, const char* name, int numArgs,
  84. const char** args);
  85. void(CCONV* ExpandSourceListArguments)(void* mf, int argc, const char** argv,
  86. int* resArgc, char*** resArgv,
  87. unsigned int startArgumentIndex);
  88. char*(CCONV* ExpandVariablesInString)(void* mf, const char* source,
  89. int escapeQuotes, int atOnly);
  90. unsigned int(CCONV* GetCacheMajorVersion)(void* mf);
  91. unsigned int(CCONV* GetCacheMinorVersion)(void* mf);
  92. const char*(CCONV* GetCurrentDirectory)(void* mf);
  93. const char*(CCONV* GetCurrentOutputDirectory)(void* mf);
  94. const char*(CCONV* GetDefinition)(void* mf, const char* def);
  95. const char*(CCONV* GetHomeDirectory)(void* mf);
  96. const char*(CCONV* GetHomeOutputDirectory)(void* mf);
  97. unsigned int(CCONV* GetMajorVersion)(void* mf);
  98. unsigned int(CCONV* GetMinorVersion)(void* mf);
  99. const char*(CCONV* GetProjectName)(void* mf);
  100. const char*(CCONV* GetStartDirectory)(void* mf);
  101. const char*(CCONV* GetStartOutputDirectory)(void* mf);
  102. int(CCONV* IsOn)(void* mf, const char* name);
  103. /*=========================================================================
  104. The following functions are designed to operate or manipulate
  105. cmSourceFiles. Please see cmSourceFile.h for additional information on many
  106. of these methods. Some of these methods are in cmMakefile.h.
  107. =========================================================================*/
  108. void*(CCONV* AddSource)(void* mf, void* sf);
  109. void*(CCONV* CreateSourceFile)();
  110. void(CCONV* DestroySourceFile)(void* sf);
  111. void*(CCONV* GetSource)(void* mf, const char* sourceName);
  112. void(CCONV* SourceFileAddDepend)(void* sf, const char* depend);
  113. const char*(CCONV* SourceFileGetProperty)(void* sf, const char* prop);
  114. int(CCONV* SourceFileGetPropertyAsBool)(void* sf, const char* prop);
  115. const char*(CCONV* SourceFileGetSourceName)(void* sf);
  116. const char*(CCONV* SourceFileGetFullPath)(void* sf);
  117. void(CCONV* SourceFileSetName)(void* sf, const char* name, const char* dir,
  118. int numSourceExtensions,
  119. const char** sourceExtensions,
  120. int numHeaderExtensions,
  121. const char** headerExtensions);
  122. void(CCONV* SourceFileSetName2)(void* sf, const char* name, const char* dir,
  123. const char* ext, int headerFileOnly);
  124. void(CCONV* SourceFileSetProperty)(void* sf, const char* prop,
  125. const char* value);
  126. /*=========================================================================
  127. The following methods are from cmSystemTools.h see that file for specific
  128. documentation on each method.
  129. =========================================================================*/
  130. char*(CCONV* Capitalized)(const char*);
  131. void(CCONV* CopyFileIfDifferent)(const char* f1, const char* f2);
  132. char*(CCONV* GetFilenameWithoutExtension)(const char*);
  133. char*(CCONV* GetFilenamePath)(const char*);
  134. void(CCONV* RemoveFile)(const char* f1);
  135. void(CCONV* Free)(void*);
  136. /*=========================================================================
  137. The following are new functions added after 1.6
  138. =========================================================================*/
  139. void(CCONV* AddCustomCommandToOutput)(void* mf, const char* output,
  140. const char* command, int numArgs,
  141. const char** args,
  142. const char* main_dependency,
  143. int numDepends, const char** depends);
  144. void(CCONV* AddCustomCommandToTarget)(void* mf, const char* target,
  145. const char* command, int numArgs,
  146. const char** args, int commandType);
  147. /* display status information */
  148. void(CCONV* DisplaySatus)(void* info, const char* message);
  149. /* new functions added after 2.4 */
  150. void*(CCONV* CreateNewSourceFile)(void* mf);
  151. void(CCONV* DefineSourceFileProperty)(void* mf, const char* name,
  152. const char* briefDocs,
  153. const char* longDocs, int chained);
  154. /* this is the end of the C function stub API structure */
  155. } cmCAPI;
  156. /*=========================================================================
  157. CM_PLUGIN_EXPORT should be used by plugins
  158. =========================================================================*/
  159. #ifdef _WIN32
  160. #define CM_PLUGIN_EXPORT __declspec(dllexport)
  161. #else
  162. #define CM_PLUGIN_EXPORT
  163. #endif
  164. /*=========================================================================
  165. define the different types of cache entries, see cmCacheManager.h for more
  166. information
  167. =========================================================================*/
  168. #define CM_CACHE_BOOL 0
  169. #define CM_CACHE_PATH 1
  170. #define CM_CACHE_FILEPATH 2
  171. #define CM_CACHE_STRING 3
  172. #define CM_CACHE_INTERNAL 4
  173. #define CM_CACHE_STATIC 5
  174. /*=========================================================================
  175. define the different types of compiles a library may be
  176. =========================================================================*/
  177. #define CM_LIBRARY_GENERAL 0
  178. #define CM_LIBRARY_DEBUG 1
  179. #define CM_LIBRARY_OPTIMIZED 2
  180. /*=========================================================================
  181. define the different types of custom commands for a target
  182. =========================================================================*/
  183. #define CM_PRE_BUILD 0
  184. #define CM_PRE_LINK 1
  185. #define CM_POST_BUILD 2
  186. /*=========================================================================
  187. Finally we define the key data structures and function prototypes
  188. =========================================================================*/
  189. typedef const char*(CCONV* CM_DOC_FUNCTION)();
  190. typedef int(CCONV* CM_INITIAL_PASS_FUNCTION)(void* info, void* mf, int argc,
  191. char* []);
  192. typedef void(CCONV* CM_FINAL_PASS_FUNCTION)(void* info, void* mf);
  193. typedef void(CCONV* CM_DESTRUCTOR_FUNCTION)(void* info);
  194. typedef struct
  195. {
  196. unsigned long reserved1; /* Reserved for future use. DO NOT USE. */
  197. unsigned long reserved2; /* Reserved for future use. DO NOT USE. */
  198. cmCAPI* CAPI;
  199. int m_Inherited; /* this ivar is no longer used in CMake 2.2 or later */
  200. CM_INITIAL_PASS_FUNCTION InitialPass;
  201. CM_FINAL_PASS_FUNCTION FinalPass;
  202. CM_DESTRUCTOR_FUNCTION Destructor;
  203. CM_DOC_FUNCTION GetTerseDocumentation;
  204. CM_DOC_FUNCTION GetFullDocumentation;
  205. const char* Name;
  206. char* Error;
  207. void* ClientData;
  208. } cmLoadedCommandInfo;
  209. typedef void(CCONV* CM_INIT_FUNCTION)(cmLoadedCommandInfo*);
  210. #ifdef __cplusplus
  211. }
  212. #endif
  213. #endif