/*
  Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>

  Permission to use, copy, modify, and/or distribute this software for any
  purpose with or without fee is hereby granted, provided that the above
  copyright notice and this permission notice appear in all copies.

  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

#include "errno.hpp"
#include "fs.hpp"
#include "fs_exists.hpp"
#include "fs_info.hpp"
#include "fs_path.hpp"
#include "fs_statvfs_cache.hpp"
#include "policy.hpp"
#include "policy_error.hpp"

#include <limits>
#include <string>
#include <vector>

using std::string;
using std::vector;

namespace epmfs
{
  static
  int
  create(const Branches        &branches_,
         const char            *fusepath,
         const uint64_t         minfreespace,
         vector<const string*> &paths)
  {
    int rv;
    int error;
    uint64_t epmfs;
    fs::info_t info;
    const Branch *branch;
    const string *epmfsbasepath;

    error = ENOENT;
    epmfs = std::numeric_limits<uint64_t>::min();
    epmfsbasepath = NULL;
    for(size_t i = 0, ei = branches_.size(); i != ei; i++)
      {
        branch = &branches_[i];

        if(!fs::exists(branch->path,fusepath))
          error_and_continue(error,ENOENT);
        if(branch->ro_or_nc())
          error_and_continue(error,EROFS);
        rv = fs::info(&branch->path,&info);
        if(rv == -1)
          error_and_continue(error,ENOENT);
        if(info.readonly)
          error_and_continue(error,EROFS);
        if(info.spaceavail < minfreespace)
          error_and_continue(error,ENOSPC);
        if(info.spaceavail < epmfs)
          continue;

        epmfs = info.spaceavail;
        epmfsbasepath = &branch->path;
      }

    if(epmfsbasepath == NULL)
      return (errno=error,-1);

    paths.push_back(epmfsbasepath);

    return 0;
  }

  static
  int
  action(const Branches        &branches_,
         const char            *fusepath,
         vector<const string*> &paths)
  {
    int rv;
    int error;
    uint64_t epmfs;
    fs::info_t info;
    const Branch *branch;
    const string *epmfsbasepath;

    error = ENOENT;
    epmfs = std::numeric_limits<uint64_t>::min();
    epmfsbasepath = NULL;
    for(size_t i = 0, ei = branches_.size(); i != ei; i++)
      {
        branch = &branches_[i];

        if(!fs::exists(branch->path,fusepath))
          error_and_continue(error,ENOENT);
        if(branch->ro())
          error_and_continue(error,EROFS);
        rv = fs::info(&branch->path,&info);
        if(rv == -1)
          error_and_continue(error,ENOENT);
        if(info.readonly)
          error_and_continue(error,EROFS);
        if(info.spaceavail < epmfs)
          continue;

        epmfs = info.spaceavail;
        epmfsbasepath = &branch->path;
      }

    if(epmfsbasepath == NULL)
      return (errno=error,-1);

    paths.push_back(epmfsbasepath);

    return 0;
  }

  static
  int
  search(const Branches        &branches_,
         const char            *fusepath,
         vector<const string*> &paths)
  {
    int rv;
    uint64_t epmfs;
    uint64_t spaceavail;
    const Branch *branch;
    const string *epmfsbasepath;

    epmfs = 0;
    epmfsbasepath = NULL;
    for(size_t i = 0, ei = branches_.size(); i != ei; i++)
      {
        branch = &branches_[i];

        if(!fs::exists(branch->path,fusepath))
          continue;
        rv = fs::statvfs_cache_spaceavail(branch->path,&spaceavail);
        if(rv == -1)
          continue;
        if(spaceavail < epmfs)
          continue;

        epmfs = spaceavail;
        epmfsbasepath = &branch->path;
      }

    if(epmfsbasepath == NULL)
      return (errno=ENOENT,-1);

    paths.push_back(epmfsbasepath);

    return 0;
  }
}

int
Policy::Func::epmfs(const Category::Enum::Type  type,
                    const Branches             &branches_,
                    const char                 *fusepath,
                    const uint64_t              minfreespace,
                    vector<const string*>      &paths)
{
  switch(type)
    {
    case Category::Enum::create:
      return epmfs::create(branches_,fusepath,minfreespace,paths);
    case Category::Enum::action:
      return epmfs::action(branches_,fusepath,paths);
    case Category::Enum::search:
    default:
      return epmfs::search(branches_,fusepath,paths);
    }
}