From c14b996c858bc37dd623dcf796cc2f46dbed8487 Mon Sep 17 00:00:00 2001 From: Vicente Adolfo Bolea Sanchez Date: Wed, 15 Nov 2017 17:48:37 +0900 Subject: [PATCH 1/3] Added UML diagrams and brought wiki pages to doxygen --- .travis.yml | 3 +++ README.md | 24 ++++++++++++------------ doc/Doxyfile | 9 +++++---- doc/manual | 2 +- 4 files changed, 21 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index ae0f5f6b..384ed646 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,10 +54,13 @@ after_success: | cd .. git config --global user.email "Travis" git config --global user.name "Travis" + git submodule init + git submodule update git submodule add -b gh-pages -f git@github.com:DICL/VeloxDFS ./doc/html git submodule update --init -- ./doc/html cd doc/html git checkout gh-pages + rm -rf * cd ../ doxygen cd html diff --git a/README.md b/README.md index 4d39bdf0..cc15785c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ -VeloxDFS {#mainpage} -======== ---- +VeloxDFS {#mainpage} +======== + +--- [![Build Status](https://travis-ci.org/DICL/VeloxDFS.svg?branch=master)](https://travis-ci.org/DICL/VeloxDFS) [![Slack room](https://img.shields.io/badge/slack-join-pink.svg)](https://dicl.slack.com/messages/general/) [![ZenHub](https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png)](https://zenhub.com) [![Analytics](https://ga-beacon.appspot.com/UA-87474237-1/veloxdfs)](https://github.com/DICL/VeloxDFS) --- + _VeloxDFS_ is a decentralized distributed file system based on _ChordDHT_ and _HDFS_. @@ -18,8 +20,6 @@ Key features of current VeloxDFS implementation includes: - Instead for each file there is a file leader node which holds its metadata. - Highly secure and stable, total replication of the system's state. ---- - USAGE ===== VeloxDFS default launcher is not included in this repository, if you want to use it you can find it [here](https://github.com/DICL/eclipsed). @@ -29,9 +29,9 @@ The reason not to include the launcher inside the package is to let the user to - puppet/chef/salt Once the system is up and running, you can interact with VeloxDFS with the following commands: -``` - $ dfs put|get|cat|ls|rm|format|pget|update|append -``` + + $ dfs put|get|cat|ls|rm|format|pget|update|append + COMPILING & INSTALLING ====================== @@ -62,7 +62,7 @@ For single user installation for developers ### This last command will be needed whenever you want to recompile the source $ make [-j#] install # Compile & install add -j flag to speed up -Now edit in your **~/.bashrc** or **~/.profile**: +Now edit in your `~/.bashrc` or `~/.profile`: export PATH="/home/*..PATH/To/eclipse/..*/sandbox/bin":$PATH export LIBRARY_PATH="/home/*..PATH/To/eclipse/..*/sandbox/lib" @@ -96,9 +96,9 @@ FAQ - _Question_ : `configure` stops with errors related to boost library. - _Answer_ : It probably means that you do not have boost library installed in the default location, in such case you should specify the boost library location. - ``` - sh ../VeloxDFS/configure --prefix ~/sandbox --with-boost=/usr/local --with-boost-libdir=/usr/local/lib - ``` + + sh ../VeloxDFS/configure --prefix ~/sandbox --with-boost=/usr/local --with-boost-libdir=/usr/local/lib + In this example we assume that the boost headers are in `/usr/local/include` while the library files are inside `/usr/local/lib`. diff --git a/doc/Doxyfile b/doc/Doxyfile index 4481a4de..ea8fda87 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -410,7 +410,7 @@ LOOKUP_CACHE_SIZE = 0 # normally produced when WARNINGS is set to YES. # The default value is: NO. -EXTRACT_ALL = NO +EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will # be included in the documentation. @@ -754,7 +754,8 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = ../src +INPUT = ../src +INPUT += manual/ INPUT += ../README.md USE_MDFILE_AS_MAINPAGE = ../README.md @@ -791,7 +792,7 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = ../doc ../tests +EXCLUDE = ../tests manual/Home.md # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -2156,7 +2157,7 @@ GROUP_GRAPHS = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -UML_LOOK = NO +UML_LOOK = YES # If the UML_LOOK tag is enabled, the fields and methods are shown inside the # class node. If there are many fields or methods and many nodes the graph may diff --git a/doc/manual b/doc/manual index d4a436e7..c3b0a172 160000 --- a/doc/manual +++ b/doc/manual @@ -1 +1 @@ -Subproject commit d4a436e7fc98e000042ebfb53aaa40c528c9fe87 +Subproject commit c3b0a172422f5d1e2b6c5a7cd0cc0135c9c5bca9 From 140d917ac6cc092b9d0b355f87f73439cd252930 Mon Sep 17 00:00:00 2001 From: Vicente Adolfo Bolea Sanchez Date: Thu, 16 Nov 2017 18:04:52 +0900 Subject: [PATCH 2/3] add doxygen site them and removed deprecated doc --- README.md | 25 +++++++++------ doc/Doxyfile | 10 +++--- doc/eclipsed_complete.bash | 21 ------------- doc/eclipsefs.1 | 62 ------------------------------------- doc/header.html | 35 +++++++++++++++++++++ doc/manual | 2 +- doc/velox_logo.png | Bin 0 -> 4269 bytes 7 files changed, 56 insertions(+), 99 deletions(-) delete mode 100644 doc/eclipsed_complete.bash delete mode 100644 doc/eclipsefs.1 create mode 100644 doc/header.html create mode 100644 doc/velox_logo.png diff --git a/README.md b/README.md index cc15785c..66669173 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ -VeloxDFS {#mainpage} +VeloxDFS {#mainpage} ======== --- [![Build Status](https://travis-ci.org/DICL/VeloxDFS.svg?branch=master)](https://travis-ci.org/DICL/VeloxDFS) [![Slack room](https://img.shields.io/badge/slack-join-pink.svg)](https://dicl.slack.com/messages/general/) -[![ZenHub](https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png)](https://zenhub.com) [![Analytics](https://ga-beacon.appspot.com/UA-87474237-1/veloxdfs)](https://github.com/DICL/VeloxDFS) --- @@ -22,21 +21,21 @@ Key features of current VeloxDFS implementation includes: USAGE ===== -VeloxDFS default launcher is not included in this repository, if you want to use it you can find it [here](https://github.com/DICL/eclipsed). - -The reason not to include the launcher inside the package is to let the user to choose any launcher or service managers such as: +VeloxDFS default [launcher] [eclipsed] is not included in this repository since its a temporary hack and +we want to let the user to choose any launcher or service managers such as: - systemd/init.d - puppet/chef/salt Once the system is up and running, you can interact with VeloxDFS with the following commands: - $ dfs put|get|cat|ls|rm|format|pget|update|append + $ dfs put|get|cat|ls|rm|format|show COMPILING & INSTALLING ====================== - -_Detailed information can be found in the wiki of this repository_ + +Further information can be found it in: [Installation](https://github.com/DICL/VeloxDFS/wiki/Installation) + Compiling requirements ---------------------- @@ -68,7 +67,6 @@ Now edit in your `~/.bashrc` or `~/.profile`: export LIBRARY_PATH="/home/*..PATH/To/eclipse/..*/sandbox/lib" export C_INCLUDE_PATH="/home/*..PATH/To/eclipse/..*/sandbox/include" - Default settings for VELOXDFS ----------------------------- @@ -90,6 +88,10 @@ Default settings for VELOXDFS "replica" : 1 } + +Further information can be found it in: [Conf reference](https://github.com/DICL/VeloxDFS/wiki/Configuration-file-reference) + + FAQ --- @@ -97,7 +99,7 @@ FAQ - _Answer_ : It probably means that you do not have boost library installed in the default location, in such case you should specify the boost library location. - sh ../VeloxDFS/configure --prefix ~/sandbox --with-boost=/usr/local --with-boost-libdir=/usr/local/lib + sh ../VeloxDFS/configure --prefix ~/sandbox --with-boost=/usr/local --with-boost-libdir=/usr/local/lib In this example we assume that the boost headers are in `/usr/local/include` while the library files are inside `/usr/local/lib`. @@ -112,3 +114,6 @@ AUTHORS - __AUTHOR:__ [Deukyeon Hwang](https://github.com/deukyeon) - __AUTHOR:__ [Prof. Nam Beomseok](http://dicl.unist.ac.kr) - __INSTITUTION:__ [DICL laboratory](http://dicl.unist.ac.kr) at _UNIST_ + + +[eclipsed]: https://github.com/DICL/eclipsed diff --git a/doc/Doxyfile b/doc/Doxyfile index ea8fda87..a66f1b98 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -52,7 +52,7 @@ PROJECT_BRIEF = "Distributed file system for Big Data processing" # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo # to the output directory. -PROJECT_LOGO = +PROJECT_LOGO = velox_logo.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is @@ -1068,7 +1068,7 @@ HTML_FILE_EXTENSION = .html # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_HEADER = +HTML_HEADER = ./header.html # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard @@ -1124,7 +1124,7 @@ HTML_EXTRA_FILES = # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_HUE = 220 +HTML_COLORSTYLE_HUE = 198 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A @@ -1132,7 +1132,7 @@ HTML_COLORSTYLE_HUE = 220 # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_SAT = 100 +HTML_COLORSTYLE_SAT = 79 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 @@ -1143,7 +1143,7 @@ HTML_COLORSTYLE_SAT = 100 # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_GAMMA = 80 +HTML_COLORSTYLE_GAMMA = 105 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this diff --git a/doc/eclipsed_complete.bash b/doc/eclipsed_complete.bash deleted file mode 100644 index 57f80ad6..00000000 --- a/doc/eclipsed_complete.bash +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -function _eclipsed() -{ - local cur prev opts - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - prev="${COMP_WORDS[COMP_CWORD-1]}" - opts="launch status close submit kill put get rm cat ls config cc clear" - dashopts="--help --version" - - if ((COMP_CWORD == 1)); then - if [[ ${cur} == -* ]]; then - COMPREPLY=( $(compgen -W "${dashopts}" -- ${cur}) ) - else - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 - fi - fi -} -complete -F _eclipsed -o default eclipsed diff --git a/doc/eclipsefs.1 b/doc/eclipsefs.1 deleted file mode 100644 index a5397792..00000000 --- a/doc/eclipsefs.1 +++ /dev/null @@ -1,62 +0,0 @@ -.TH eclipsefs 1 "June 2015" -.\" vim : ft=groff - -.SH NAME -eclipsefs \- Distributed MapReduce experimental middle-ware - -.SH SYNOPSIS -The framework is mainly governed by ecfs: - -.I ecfs -.B [-v|--help] launch|close|status - -ecfs will intelligently call the inner binaries: - -.I client master cacheserver and eclipse - -.SH REQUIREMENTS - Due to the nature of the simulator, eclipsefs is expected to be executed in a cluster - with a NFS common partition among all the nodes - - + A shared partition in all the nodes (usually home partition). - + Individual partiton in each node (usually called scratch by convention). - + A ruby interpreter (version >= 2.0.0) with the next gems: - - awesome_print - - pry - - ffi - + [OPTIONAL] UnitTest++ installed for running the tests - -.SH FILES -.B ~/.eclipse.json -or -.B /etc/eclipse.json -for multi-user install - { - "port" : 8004, - "dhtport" : 8005, - "max_job" : 1024, - "config_relative_path" : "/etc/eclipse.json", - "headers_path" : "/home/vicente/sandbox/include", - "libs_path" : "/home/vicente/sandbox/lib", - "fs_path" : "/home/vicente/mr_storage", - "localdir" : "/scratch/vicente", - "fs_scratch_path" : "/scratch/vicente/mr_storage", - "IPC_path" : "/scratch/vicente/socket", - "master_address" : "192.168.1.201", - "nodes" : [ - "192.168.1.1", - "192.168.1.2", - "192.168.1.3", - "192.168.1.4", - "192.168.1.5", - "192.168.1.6", - "192.168.1.7", - "192.168.1.8", - "192.168.1.9", - "192.168.1.10" - ] - } - - - - diff --git a/doc/header.html b/doc/header.html new file mode 100644 index 00000000..8c9ac369 --- /dev/null +++ b/doc/header.html @@ -0,0 +1,35 @@ + + + + + + + +$projectname: $title +$title + + + +$treeview +$search +$mathjax + +$extrastylesheet + + +
+ + +
+ + Logo + + + + + $searchbox + + +
+ + diff --git a/doc/manual b/doc/manual index c3b0a172..98a0f8ce 160000 --- a/doc/manual +++ b/doc/manual @@ -1 +1 @@ -Subproject commit c3b0a172422f5d1e2b6c5a7cd0cc0135c9c5bca9 +Subproject commit 98a0f8ce3eafffcb700f77600057c20a8dfc9ecd diff --git a/doc/velox_logo.png b/doc/velox_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..6e0c4b8bf9def475c1881ae3314b93e9f8997ad9 GIT binary patch literal 4269 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 P00000NkvXXu0mjfNwMp| literal 0 HcmV?d00001 From 6c3abae187887732cf9215e60c21ccc7c2a372bb Mon Sep 17 00:00:00 2001 From: Vicente Adolfo Bolea Sanchez Date: Tue, 30 Jan 2018 17:10:38 +0900 Subject: [PATCH 3/3] Updated docs --- Makefile.am | 1 - README.md | 13 ++++++------- doc/html | 1 + doc/manual | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) create mode 160000 doc/html diff --git a/Makefile.am b/Makefile.am index f3601dfb..696f8c3c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,7 +95,6 @@ sysconf_DATA = doc/eclipse.json endif dist_doc_DATA = README.md LICENSE doc/eclipse.json -man1_MANS = doc/eclipsefs.1 EXTRA_DIST = doc .autotools_aux $(shell find @srcdir@/src -name "*.hh" -o -name "*.in") \ $(sh_scripts) doc/eclipse.json diff --git a/README.md b/README.md index 66669173..b2ae46c9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ VeloxDFS {#mainpage} --- [![Build Status](https://travis-ci.org/DICL/VeloxDFS.svg?branch=master)](https://travis-ci.org/DICL/VeloxDFS) [![Slack room](https://img.shields.io/badge/slack-join-pink.svg)](https://dicl.slack.com/messages/general/) -[![Analytics](https://ga-beacon.appspot.com/UA-87474237-1/veloxdfs)](https://github.com/DICL/VeloxDFS) --- @@ -107,12 +106,12 @@ FAQ AUTHORS ======= - - __AUTHOR:__ [Vicente Adolfo Bolea Sanchez](http://vicentebolea.me) - - __AUTHOR:__ [MooHyeon Nam](https://github.com/nammh) - - __AUTHOR:__ [WonBae Kim](https://github.com/zwigul) - - __AUTHOR:__ [KiBeom Jin](https://github.com/kbjin) - - __AUTHOR:__ [Deukyeon Hwang](https://github.com/deukyeon) - - __AUTHOR:__ [Prof. Nam Beomseok](http://dicl.unist.ac.kr) + - [Vicente Adolfo Bolea Sanchez](http://vicentebolea.me) + - [MooHyeon Nam](https://github.com/nammh) + - [WonBae Kim](https://github.com/zwigul) + - [KiBeom Jin](https://github.com/kbjin) + - [Deukyeon Hwang](https://github.com/deukyeon) + - [Prof. Nam Beomseok](http://dicl.unist.ac.kr) - __INSTITUTION:__ [DICL laboratory](http://dicl.unist.ac.kr) at _UNIST_ diff --git a/doc/html b/doc/html new file mode 160000 index 00000000..14b78df2 --- /dev/null +++ b/doc/html @@ -0,0 +1 @@ +Subproject commit 14b78df20030203eb9e070038863d2b5d0f57997 diff --git a/doc/manual b/doc/manual index 98a0f8ce..d79796cc 160000 --- a/doc/manual +++ b/doc/manual @@ -1 +1 @@ -Subproject commit 98a0f8ce3eafffcb700f77600057c20a8dfc9ecd +Subproject commit d79796cc9ecda0ad43ba80ff9e919904f6aed125