// 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/diff_delta.h"
#include "nodegit_wrapper.cc"

  #include "../include/diff_file.h"
 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitDiffDelta::~GitDiffDelta() {
    // 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 GitDiffDelta::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("DiffDelta").ToLocalChecked());

         Nan::SetPrototypeMethod(tpl, "status", Status, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "flags", Flags, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "similarity", Similarity, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "nfiles", Nfiles, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "oldFile", OldFile, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "newFile", NewFile, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitDiffDelta::Template", constructor_template);
    Nan::Set(target, Nan::New("DiffDelta").ToLocalChecked(), constructor_template);
  }

      // start field block
    NAN_METHOD(GitDiffDelta::Status) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_delta_t
           status =
          Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->status;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( status);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffDelta::Flags) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint32_t
           flags =
          Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->flags;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( flags);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffDelta::Similarity) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint16_t
           similarity =
          Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->similarity;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( similarity);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffDelta::Nfiles) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint16_t
           nfiles =
          Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->nfiles;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( nfiles);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffDelta::OldFile) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_diff_file
*            old_file =
          &
           Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->old_file;
 // start convert_to_v8 block
    if (old_file != NULL) {
      v8::Local<v8::Array> owners = Nan::New<Array>(0);
         Nan::Set(owners, owners->Length(), info.This());
          v8ConversionSlot = GitDiffFile::New(
        old_file,
        false
          , owners
       );
   }
  else {
    v8ConversionSlot = Nan::Null();
  }
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffDelta::NewFile) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_diff_file
*            new_file =
          &
           Nan::ObjectWrap::Unwrap<GitDiffDelta>(info.This())->GetValue()->new_file;
 // start convert_to_v8 block
    if (new_file != NULL) {
      v8::Local<v8::Array> owners = Nan::New<Array>(0);
         Nan::Set(owners, owners->Length(), info.This());
          v8ConversionSlot = GitDiffFile::New(
        new_file,
        false
          , owners
       );
   }
  else {
    v8ConversionSlot = Nan::Null();
  }
  // 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<GitDiffDeltaTraits>;
 