// This is a generated file, modify: generate/templates/templates/class_content.cc

#include <nan.h>
#include <string.h>

extern "C" {
  #include <git2.h>
 }

#include "../include/nodegit.h"
#include "../include/lock_master.h"
#include "../include/functions/copy.h"
#include "../include/indexer_progress.h"
#include "nodegit_wrapper.cc"

 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitIndexerProgress::~GitIndexerProgress() {
    // this will cause an error if you have a non-self-freeing object that also needs
    // to save values. Since the object that will eventually free the object has no
    // way of knowing to free these values.
   }

  void GitIndexerProgress::InitializeComponent(v8::Local<v8::Object> target, nodegit::Context *nodegitContext) {
    Nan::HandleScope scope;

    v8::Local<v8::External> nodegitExternal = Nan::New<v8::External>(nodegitContext);
    v8::Local<FunctionTemplate> tpl = Nan::New<FunctionTemplate>(JSNewFunction, nodegitExternal);

    tpl->InstanceTemplate()->SetInternalFieldCount(1);
    tpl->SetClassName(Nan::New("IndexerProgress").ToLocalChecked());

         Nan::SetPrototypeMethod(tpl, "totalObjects", TotalObjects, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "indexedObjects", IndexedObjects, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "receivedObjects", ReceivedObjects, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "localObjects", LocalObjects, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "totalDeltas", TotalDeltas, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "indexedDeltas", IndexedDeltas, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "receivedBytes", ReceivedBytes, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitIndexerProgress::Template", constructor_template);
    Nan::Set(target, Nan::New("IndexerProgress").ToLocalChecked(), constructor_template);
  }

      // start field block
    NAN_METHOD(GitIndexerProgress::TotalObjects) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           total_objects =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->total_objects;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( total_objects);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::IndexedObjects) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           indexed_objects =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->indexed_objects;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( indexed_objects);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::ReceivedObjects) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           received_objects =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->received_objects;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( received_objects);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::LocalObjects) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           local_objects =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->local_objects;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( local_objects);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::TotalDeltas) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           total_deltas =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->total_deltas;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( total_deltas);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::IndexedDeltas) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           indexed_deltas =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->indexed_deltas;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( indexed_deltas);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitIndexerProgress::ReceivedBytes) {
      v8::Local<v8::Value> v8ConversionSlot;

            size_t
           received_bytes =
          Nan::ObjectWrap::Unwrap<GitIndexerProgress>(info.This())->GetValue()->received_bytes;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( received_bytes);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
  // force base class template instantiation, to make sure we get all the
// methods, statics, etc.
template class NodeGitWrapper<GitIndexerProgressTraits>;
 