Skip to content
Snippets Groups Projects
Forked from asapo / asapo
1760 commits behind the upstream repository.
eventmon_config.h 1.06 KiB
#ifndef ASAPO_EventMon_CONFIG_H
#define ASAPO_EventMon_CONFIG_H

#include "io/io.h"
#include "common/error.h"
#include "logger/logger.h"
#include "asapo_producer.h"
#include "eventmon_config_factory.h"

namespace asapo {

enum class SubSetMode {
    kNone,
    kBatch,
    kMultiSource
};

struct EventMonConfig {
    std::string asapo_endpoint;
    LogLevel log_level = LogLevel::Info;
    std::string tag;
    uint64_t nthreads = 1;
    std::string beamtime_id;
    RequestHandlerType mode = RequestHandlerType::kTcp;
    std::string root_monitored_folder;
    std::vector<std::string> monitored_subfolders;
    std::vector<std::string> ignored_extentions;
    bool remove_after_send = false;
    SubSetMode subset_mode = SubSetMode::kNone;
    uint64_t subset_batch_size = 1;
    uint64_t subset_multisource_nsources = 1;
    uint64_t subset_multisource_sourceid = 1;
    std::string stream;
  private:
    std::string log_level_str;
    std::string mode_str;
    friend EventMonConfigFactory;
};

const EventMonConfig* GetEventMonConfig();

}


#endif //ASAPO_EventMon_CONFIG_H