Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add doc for new models and simcall
[simgrid.git] / doc / doxygen / inside_extending.doc
index 6332d50..cf71bb1 100644 (file)
@@ -2,9 +2,9 @@
 \page inside_extending Extending SimGrid 
 
 We start to put TAGS in simgrid source code for having tutorials to see where is the important parts ans steps to create:
-\li a new MSG functions or a new API.
-\li a new model in surf.
-\li new tags in xml files
+\li \ref simgrid_dev_guide_api
+\li \ref simgrid_dev_guide_model
+\li \ref simgrid_dev_guide_tag
 
 \section simgrid_dev_guide_api How to add a new MSG function?
 Search for expression \"TUTORIAL: New API\".
@@ -26,18 +26,71 @@ user@caraja:~/workspace/simgrid/src$ cg "TUTORIAL: New API"
 \endverbatim
 
 \section simgrid_dev_guide_model How to add a new model in surf?
-Search for expression \"TUTORIAL: New model\".
-\verbatim
-user@caraja:~/workspace/simgrid/src$ cg "TUTORIAL: New model"
-0 surf/new_model_private.h   2 /* TUTORIAL: New model
-1 surf/surf.c              213 /* TUTORIAL: New model*/
-2 surf/surf_config.c       380 /* TUTORIAL: New model*/
-3 surf/surf_config.c       746 /* TUTORIAL: New model*/
-4 surf/new_model.c           8 /* TUTORIAL: New model*/
-5 include/surf/surf.h      157 /* TUTORIAL: New model*/
-6 include/surf/surf.h      345 /* TUTORIAL: New model*/
-7 include/surf/surf.h      661 /* TUTORIAL: New model*/
-\endverbatim
+A model in simgrid is composed of three classes: Model, Resource and Action
+(surf_interface.hpp). 
+
+Actually there are five kind of models: CpuModel, NetworkModel, WorkstationModel,
+WorkstationVMModel and StorageModel. For each kind of model, there is an
+interface (e.g.: cpu_interface.hpp) and some implementations (e.g.: cpu_cas01.hpp,
+cpu_ti.hpp). 
+
+If you want to create a new implementation of a kind of model you must extend
+the classes of the corresponding interface.
+
+If you want to create a new kind of model, you must create a new interface
+ where you extend the classes Model, Resource and Action, and then create an
+ implementation of this interface.
+
+\section simgrid_dev_guide_simcall How to add a new simcall?
+A simcall is used to go from user mode to kernel mode. The workflow of
+a simcall is the following:
+
+- `<ret> simcall_<name>(<args>)`
+ - `simcall_BODY_<name>(<args>)`
+  - create the simcall
+  - `SIMIX_process_yield` if not maestro
+  - ========== KERNEL MODE ==========
+  - `SIMIX_simcall_pre`
+   - `SIMIX_pre_<name>(simcall, <args>)`
+   - `SIMIX_simcall_answer(simcall)`
+
+To simplify the simcall creation, we have made a python script that
+generate most of the code and give helpers for the remaining stuff.
+The script generating the simcalls (src/simix/simcalls.in) take in input
+the src/simix/simcalls.in file where the simcalls are defined and generate
+the following files:
+
+- simcall_generated_args_getter_setter.h:
+  functions to get and set simcall arguments
+- simcall_generated_res_getter_setter.h:
+  functions to get and set simcall result
+- simcall_generated_body.c:
+  the BODY function of the simcall
+- simcall_generated_case.c:
+  the case of the SIMIX_simcall_pre function
+- simcall_generated_enum.h:
+  the enum of simcalls
+- simcall_generated_string.c:
+  string corresponding to the enum to debug
+
+Furthermode if the simcall_<name> or the SIMIX_pre_<name> function are missing,
+a warning will show up with a prototype of the corresponding fonction to fill.
+
+The simcall.in file list all the simcalls in sections. A line starting by "##"
+define a new section which will be replace by a "ifdef" in the generated code.
+There is a simcall by line which follow this format:
+
+~~~~
+Simcall -> Name HasAnswer Res Args
+Name -> [a-z0-9_]+
+Has_Answer -> "True" | "False"
+Res -> "(" Type MaybeCast ")"
+Args -> Args Arg | Arg
+Arg -> "(" Name "," Type MaybeCast ")"
+Type -> "char" | "const char*" | "int" | "long" | "unsigned char" | "unsigned short" | "unsigned int" | "unsigned long" | "float" | "double" | "void*" | "FPtr" | "const void*" | "size_t" | "sg_size_t" | "void" | "void*"
+MaybeCast -> "," Cast | ""
+Cast -> [a-z0-9_* ]+
+~~~~
 
 \section simgrid_dev_guide_tag What is How to add a new tag for xml files?
 Search for expression \"TUTORIAL: New TAG\".