X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMApplication.h;h=18cb7c52bde7edd9ea52b7c2199caf03c2487315;hb=0cc6a7e002ad79de9453517108d7456fd44ddfdb;hp=97d3a79e8f4ea69bc1128175d5d5348209ad91c7;hpb=609d8d48cae96384e664ec6b000e8ecfcbad6459;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMApplication.h b/lib/creaDevManagerLib/modelCDMApplication.h index 97d3a79..18cb7c5 100644 --- a/lib/creaDevManagerLib/modelCDMApplication.h +++ b/lib/creaDevManagerLib/modelCDMApplication.h @@ -37,32 +37,111 @@ #include #include +#include -#include"modelCDMFolder.h" +#include "modelCDMFolder.h" +#include "modelCDMFile.h" +/** + * Class representing an application in a Crea project. An Application is an stand alone application that uses the project libraries to show their functionalities. + */ class modelCDMApplication : public modelCDMFolder { public: + /** + * Default Constructor. + */ modelCDMApplication(); - modelCDMApplication(const std::string& path, const int& level = 2); + /** + * Application Constructor + * @param parent Parent node of the application node. + * @param path Full path of the application node. + * @param name Name of the applcation folder node. + * @param level Level of the application node folder in the project. + */ + modelCDMApplication(modelCDMIProjectTreeNode* parent, const std::string& path, const std::string& name, const int& level = 2); + /** + * Destructor. + */ ~modelCDMApplication(); - const std::string& GetNameApplication() const; + /** + * Returns the executable name of the application node + * @return + */ const std::string& GetExecutableName() const; + /** + * Returns the main source file of the application node. That is, the file that contains the main method. + * @return File reference to main file. + */ + modelCDMFile* GetMainFile() const; + + /** + * Sets the executable name for the application. + * @param fileName Name of the application executable. + * @param result Result message. + * @return True if the operation was successful. + */ + bool SetExecutableName(const std::string& fileName, std::string*& result); - void SetMainFile(const std::string& fileName); + /** + * Creates a folder in the application folder node. This takes effect in the system as well as in the project model. + * @param name Name of the new folder. + * @param result Result message. + * @return True if the operation was successful. + */ + modelCDMFolder* CreateFolder(const std::string& name, std::string*& result); - bool CreateFolder( - const std::string& name, - std::string*& result, - const std::string& path = "/" - ); + /** + * Refreshes the structure of the application. Removes folders and files deleted since the last refresh. Also, adds folders and files created since the las refresh. + * @param result Result message. + * @return True if the operation was successful. + */ virtual const bool Refresh(std::string*& result); + /** + * Checks the CMakeLists file and the application structure to identify registration errors before compiling the project. + * @param properties Properties found in the structure. + */ + void CheckStructure(std::map& properties); + + /** + * Checks the application's CMakeLists file to check which third party libraries are enabled. + * @return A map with the name of the library and if it's included in the CMakeLists file. + */ + std::map Get3rdPartyLibraries(); + + /** + * Sets the 3rd party library inclusion in the application's CMakeLists file. + * @return if the operation was successful. + */ + bool Set3rdPartyLibrary(const std::string& library_name, const bool& toInclude); + + /** + * Checks the application's CMakeLists file to check which custom libraries are enabled. + * @return A map with the name of the library and if it's included in the CMakeLists file. + */ + std::map GetCustomLibraries(); + + /** + * Sets the custom library inclusion in the application's CMakeLists file. + * @return if the operation was successful. + */ + bool SetCustomLibrary(const std::string& library_name, const bool& toInclude); + private: - std::string nameApplication; + /** + * Name of the application executable file. + */ std::string executableName; - std::vector applications; + /** + * Reference to the main file of the application. + */ + modelCDMFile* mainFile; + /** + * Reference array of the children folders of the application. + */ + std::vector folders; }; #endif /* MODELCDMAPPLICATION_H_ */