// 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_file.h"
#include "nodegit_wrapper.cc"

  #include "../include/oid.h"
 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitDiffFile::~GitDiffFile() {
    // 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 GitDiffFile::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("DiffFile").ToLocalChecked());

         Nan::SetPrototypeMethod(tpl, "id", Id, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "path", Path, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "size", Size, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "flags", Flags, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "mode", Mode, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "idAbbrev", IdAbbrev, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitDiffFile::Template", constructor_template);
    Nan::Set(target, Nan::New("DiffFile").ToLocalChecked(), constructor_template);
  }

      // start field block
    NAN_METHOD(GitDiffFile::Id) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_oid
*            id =
          &
           Nan::ObjectWrap::Unwrap<GitDiffFile>(info.This())->GetValue()->id;
 // start convert_to_v8 block
    if (id != NULL) {
      v8::Local<v8::Array> owners = Nan::New<Array>(0);
         Nan::Set(owners, owners->Length(), info.This());
          v8ConversionSlot = GitOid::New(
        id,
        true
          , owners
       );
   }
  else {
    v8ConversionSlot = Nan::Null();
  }
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffFile::Path) {
      v8::Local<v8::Value> v8ConversionSlot;

            const char *
           path =
          Nan::ObjectWrap::Unwrap<GitDiffFile>(info.This())->GetValue()->path;
 // start convert_to_v8 block
  if (path){
       v8ConversionSlot = Nan::New<v8::String>(path).ToLocalChecked();
   }
  else {
    v8ConversionSlot = Nan::Null();
  }

  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffFile::Size) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_object_size_t
           size =
          Nan::ObjectWrap::Unwrap<GitDiffFile>(info.This())->GetValue()->size;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( size);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffFile::Flags) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint32_t
           flags =
          Nan::ObjectWrap::Unwrap<GitDiffFile>(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(GitDiffFile::Mode) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint16_t
           mode =
          Nan::ObjectWrap::Unwrap<GitDiffFile>(info.This())->GetValue()->mode;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( mode);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffFile::IdAbbrev) {
      v8::Local<v8::Value> v8ConversionSlot;

            uint16_t
           id_abbrev =
          Nan::ObjectWrap::Unwrap<GitDiffFile>(info.This())->GetValue()->id_abbrev;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( id_abbrev);
  // 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<GitDiffFileTraits>;
 