1. Mar 11, 2022
    • Ramon Nou's avatar
      Parallax backend added · e4eebd35
      Ramon Nou authored
      Add command line option for kreon
      
      Resolve CRTP specific function name
      
      Testing Infrastructure for different databases
      
      add path
      
      Reactivated destructors, kreondb is destroyed to reduce CI space
      
      Returning string_view in fs_data added dbbackend property
      
      Updated Readme and MetatadaFactory
      
      Adding extra options for kreondb, README+CHANGELOG updated
      
      Update .gitlab-ci.yml
      
      updating script test...
      
      Updated dl_dep tests
      
      Kreon test (for metadata) backend.
      
      Add command line option for kreon
      
      Resolve CRTP specific function name
      
      Testing Infrastructure for different databases
      
      add path
      
      Reactivated destructors, kreondb is destroyed to reduce CI space
      
      Returning string_view in fs_data added dbbackend property
      
      Adding extra options for kreondb, README+CHANGELOG updated
      
      updating script test...
      
      Updated dl_dep tests
      
      Remove Kreon - Add Parallax
      
      Add Parallax
      
      Add DockerFile
      
      adding parallaxdb option
      
      Docker update
      
      Missing Parallax hpp
      
      Removed Kreon from code, lib conflicts
      
      Updated Parallax master
      
      Updated DockerFile deps
      
      Reformat
      
      Changed Base
      
      Added ps
      
      Reduced Logging and added ps in docker
      
      Add Path
      
      increase testing timeout
      
      Create options.yml automatically
      
      Updated out tests
      e4eebd35
  2. Feb 22, 2022
  3. Jan 26, 2022
  4. May 28, 2021
  5. Mar 30, 2021
  6. Feb 07, 2021
  7. Dec 17, 2020
  8. Dec 09, 2020
  9. Nov 25, 2020
  10. Sep 11, 2020
  11. Sep 10, 2020
  12. May 19, 2020
  13. May 12, 2020
  14. Feb 25, 2020
  15. Feb 24, 2020
  16. Feb 20, 2020
  17. Feb 19, 2020
  18. Feb 10, 2020
  19. Feb 09, 2020
  20. Feb 07, 2020
    • Marc Vef's avatar
      Code Maintenance: Configurations, definitions, adafs to gkfs · 053cd9a5
      Marc Vef authored
      Restructuring code w.r.t. configurations and definitions:
      - #defines have been mostly removed from configurations
      - a dedicated config file has been added for configurations with constexpr
      - past configure file is now only a cmake wrapper
      - wrapping global functions into namespaces
      
      Removed all adafs and ifs occurrences. Now called gkfs
      053cd9a5
  21. Sep 09, 2019
  22. Sep 06, 2019
  23. Jul 04, 2019
  24. Jun 28, 2019
  25. Apr 24, 2019
  26. Apr 10, 2019
  27. Apr 03, 2019
    • Tommaso Tocci's avatar
      Use getaddrinfo instead of parsing /etc/hosts · 98468c06
      Tommaso Tocci authored
      We now use getaddrinfo syscall instead of parsing /etc/hosts in order to
      resolve hostnames
      98468c06
    • Tommaso Tocci's avatar
      Add support for endpoint shared lookup file · a1b20dcc
      Tommaso Tocci authored
      For some comunication layers an out of band communication is required for putting in place the specific protocol handshake.
      
      In those case a shared lookup file could be used to distribute deamon's endpoints information to all the clients.
      
      This file need to resides on a shared filesystem and can be specified using the new CLI parameter `--lookup-file`.
      a1b20dcc
  28. Mar 06, 2019
    • Tommaso Tocci's avatar
      Drop access RPC · 60b1a186
      Tommaso Tocci authored
      The access RPC have been removed. The POSIX access functionality now is implemented through the stat RPC. This makes code easier to maintain and modify.
      
      There would be a little performance degradation on the POSIX access
      function because we are now retrieving also the metadata
      associated to the file.
      
      This change makes a lot easier to add symlink support
      60b1a186
  29. Mar 05, 2019
  30. Jan 31, 2019
    • Tommaso Tocci's avatar
      improved statfs and statvfs · 23c5faf1
      Tommaso Tocci authored
       - improved statfs system call
       - intercepted statvfs library call
      
      Both of the above function now report the aggregated real size
      of all the data-nodes.
      
      You can test this with `df "/tmp/gekkofs_mountpoint"` command
      23c5faf1
  31. Nov 26, 2018
  32. Nov 07, 2018
  33. Nov 03, 2018
  34. Oct 31, 2018
    • Tommaso Tocci's avatar
      Prevent random data on stat output · b3e2f834
      Tommaso Tocci authored
      Some of the variables of stat struct are not initialized, thus they will
      remains will unpredictable junks data from memory. This random values
      could induct strange behaviours on user applications.
      
      Even if we don't support some of the fields in the struct stat, it is
      necessary to set them to some default value.
      b3e2f834