Sha256: 7254609e21466abf47e687b604d4688e3812be62ce079aeb96af5ab029696baf

Contents?: true

Size: 705 Bytes

Versions: 18

Compression:

Stored size: 705 Bytes

Contents

//
// Created by Alex Snaps on 2016-11-29.
//

#ifndef ENTERPRISE_SCRIPT_SERVICE_SCRIPT_DATA_HPP
#define ENTERPRISE_SCRIPT_SERVICE_SCRIPT_DATA_HPP

#include <msgpack.hpp>
#include "mruby_engine.hpp"

class script_data {
public:
  void read_from(int fd);
  const std::vector<ruby_source> &sources() const;
  const std::vector<uint8_t> &library() const;
  const mrb_value input(me_mruby_engine &engine) const;
  void sources(const std::vector<ruby_source> &sources);
  std::uint64_t size();

private:
  msgpack::object input_;
  std::vector<ruby_source> sources_;
  std::vector<uint8_t> library_;
  msgpack::object_handle result;
  std::uint64_t in_;
};


#endif //ENTERPRISE_SCRIPT_SERVICE_SCRIPT_DATA_HPP

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
script_core-0.3.2 ext/enterprise_script_service/script_data.hpp
script_core-0.3.0 ext/enterprise_script_service/script_data.hpp
script_core-0.2.7 ext/enterprise_script_service/script_data.hpp
script_core-0.2.6 ext/enterprise_script_service/script_data.hpp
script_core-0.2.5 ext/enterprise_script_service/script_data.hpp
script_core-0.2.4 ext/enterprise_script_service/script_data.hpp
script_core-0.2.3 ext/enterprise_script_service/script_data.hpp
script_core-0.2.2 ext/enterprise_script_service/script_data.hpp
script_core-0.2.1 ext/enterprise_script_service/script_data.hpp
script_core-0.2.0 ext/enterprise_script_service/script_data.hpp
script_core-0.1.1 ext/enterprise_script_service/script_data.hpp
script_core-0.1.0 ext/enterprise_script_service/script_data.hpp
script_core-0.0.6 ext/enterprise_script_service/script_data.hpp
script_core-0.0.5 ext/enterprise_script_service/script_data.hpp
script_core-0.0.4 ext/enterprise_script_service/script_data.hpp
script_core-0.0.3 ext/enterprise_script_service/script_data.hpp
script_core-0.0.2 ext/enterprise_script_service/script_data.hpp
script_core-0.0.1 ext/enterprise_script_service/script_data.hpp