From c94b8729cdda91b699c5087ba0b13a0f82e52aa1 Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 1 Aug 2006 01:56:13 +0000 Subject: [PATCH] Make room for the other lessons on data description git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2673 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- doc/Doxyfile.in | 7 ++++- doc/gtut-main.doc | 30 ++++++++++++------- doc/gtut-tour-11-staticstruct.doc | 26 +++++++++++++++++ doc/gtut-tour-12-pointers.doc | 26 +++++++++++++++++ doc/gtut-tour-13-dynar.doc | 26 +++++++++++++++++ doc/gtut-tour-14-manualdatadef.doc | 26 +++++++++++++++++ doc/gtut-tour-15-exchangecb.doc | 26 +++++++++++++++++ doc/gtut-tour.doc | 46 ++++++++++++++++++++++++------ 8 files changed, 193 insertions(+), 20 deletions(-) create mode 100644 doc/gtut-tour-11-staticstruct.doc create mode 100644 doc/gtut-tour-12-pointers.doc create mode 100644 doc/gtut-tour-13-dynar.doc create mode 100644 doc/gtut-tour-14-manualdatadef.doc create mode 100644 doc/gtut-tour-15-exchangecb.doc diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index b2cfb6f740..70103aae65 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -419,7 +419,12 @@ INPUT = @srcdir@/index.doc \ @srcdir@/gtut-tour-08-exceptions.doc \ @srcdir@/gtut-tour-09-simpledata.doc \ @srcdir@/gtut-tour-10-rpc.doc \ - \ + @srcdir@/gtut-tour-11-staticstruct.doc \ + @srcdir@/gtut-tour-12-pointers.doc \ + @srcdir@/gtut-tour-13-dynar.doc \ + @srcdir@/gtut-tour-14-manualdatadef.doc \ + @srcdir@/gtut-tour-15-exchangecb.doc \ + \ ./logcategories.doc \ \ @top_srcdir@/include/ \ diff --git a/doc/gtut-main.doc b/doc/gtut-main.doc index 73273f4ca9..d5be11b968 100644 --- a/doc/gtut-main.doc +++ b/doc/gtut-main.doc @@ -17,16 +17,26 @@ This section constitutes a tutorial to the GRAS programming environment. explains how to install the framework and setup your own projects. Then, an example distributed application is builded incrementaly to show the several aspects of the framework. - - \ref GRAS_tut_tour_install - - \ref GRAS_tut_tour_setup - - \ref GRAS_tut_tour_simpleexchange - - \ref GRAS_tut_tour_args - - \ref GRAS_tut_tour_callbacks - - \ref GRAS_tut_tour_globals - - \ref GRAS_tut_tour_logs - - \ref GRAS_tut_tour_timers - - \ref GRAS_tut_tour_exceptions - - \ref GRAS_tut_tour_rpc + - Part 1: Bases + - \ref GRAS_tut_tour_install + - \ref GRAS_tut_tour_setup + - Part 2: Message passing + - \ref GRAS_tut_tour_simpleexchange + - \ref GRAS_tut_tour_args + - \ref GRAS_tut_tour_callbacks + - \ref GRAS_tut_tour_globals + - \ref GRAS_tut_tour_logs + - \ref GRAS_tut_tour_timers + - \ref GRAS_tut_tour_exceptions + - \ref GRAS_tut_tour_simpledata + - \ref GRAS_tut_tour_rpc + - Part 3: Data description + - \ref GRAS_tut_tour_staticstruct + - \ref GRAS_tut_tour_pointers + - \ref GRAS_tut_tour_dynar + - \ref GRAS_tut_tour_manualdatadef + - \ref GRAS_tut_tour_exchangecb + - Part 4: Advanced topics (TODO) \htmlonly \endhtmlonly Part 1: Bases @@ -75,6 +80,9 @@ all features available in GRAS. - \ref GRAS_tut_tour_simpledata - \ref GRAS_tut_tour_simpledata_intro + - \ref GRAS_tut_tour_simpledata_intro_conv + - \ref GRAS_tut_tour_simpledata_intro_gras + - \ref GRAS_tut_tour_simpledata_use - \ref GRAS_tut_tour_simpledata_example - \ref GRAS_tut_tour_simpledata_recap @@ -83,18 +91,38 @@ all features available in GRAS. - \ref GRAS_tut_tour_rpc_use - \ref GRAS_tut_tour_rpc_recap +Part 3: Data description + + - \ref GRAS_tut_tour_staticstruct Automatic parsing of static data types + - \ref GRAS_tut_tour_staticstruct_intro + - \ref GRAS_tut_tour_staticstruct_use + - \ref GRAS_tut_tour_staticstruct_recap + + - \ref GRAS_tut_tour_pointers Automatic parsing of datatypes containing pointers + - \ref GRAS_tut_tour_pointers_intro + - \ref GRAS_tut_tour_pointers_use + - \ref GRAS_tut_tour_pointers_recap + + - \ref GRAS_tut_tour_dynar Exchanging dynars (and matrices) + - \ref GRAS_tut_tour_dynar_intro + - \ref GRAS_tut_tour_dynar_use + - \ref GRAS_tut_tour_dynar_recap + + - \ref GRAS_tut_tour_manualdatadef Manual data description: the full power + - \ref GRAS_tut_tour_manualdatadef_intro + - \ref GRAS_tut_tour_manualdatadef_use + - \ref GRAS_tut_tour_manualdatadef_recap + + - \ref GRAS_tut_tour_exchangecb Exchange callbacks: yes you can + - \ref GRAS_tut_tour_exchangecb_intro + - \ref GRAS_tut_tour_exchangecb_use + - \ref GRAS_tut_tour_exchangecb_recap + +Part 4: Advanced topics + Unfortunately, the tour is not terminated yet, but I already know the kind of missi^W lessons I want to add: -Part 3: Data description - - Exchanging simple data through ping-pong - - Automatic parsing of static data types - - Automatic parsing of datatypes containing pointers - - Exchanging dynars (and matrices) - - Manual data description: the full power - - Exchange callbacks: yes you can - -Part 4: Advanced topics - Computation virtualization - Splitting in several files (logs, datadesc) - Debugging GRAS programs -- 2.20.1