// 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/merge_file_result.h"
#include "nodegit_wrapper.cc"

 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitMergeFileResult::~GitMergeFileResult() {
    // 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 GitMergeFileResult::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("MergeFileResult").ToLocalChecked());

          Nan::SetPrototypeMethod(tpl, "free", Free, nodegitExternal);
           Nan::SetPrototypeMethod(tpl, "automergeable", Automergeable, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "path", Path, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "mode", Mode, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "ptr", Ptr, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "len", Len, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitMergeFileResult::Template", constructor_template);
    Nan::Set(target, Nan::New("MergeFileResult").ToLocalChecked(), constructor_template);
  }

  
/*
     */
NAN_METHOD(GitMergeFileResult::Free) {
  Nan::EscapableHandleScope scope;

    if (Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue() != NULL) {

  git_error_clear();

  { // lock master scope start
    nodegit::LockMaster lockMaster(
      /*asyncAction: */false
            ,
              Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue()
    );

    git_merge_file_result_free(
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue()
    );

        Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->ClearValue();
      } // lock master scope end
      return info.GetReturnValue().Set(scope.Escape(Nan::Undefined()));
  }
}
       // start field block
    NAN_METHOD(GitMergeFileResult::Automergeable) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           automergeable =
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue()->automergeable;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( automergeable);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitMergeFileResult::Path) {
      v8::Local<v8::Value> v8ConversionSlot;

            const char *
           path =
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(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(GitMergeFileResult::Mode) {
      v8::Local<v8::Value> v8ConversionSlot;

            unsigned int
           mode =
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(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(GitMergeFileResult::Ptr) {
      v8::Local<v8::Value> v8ConversionSlot;

            const char *
           ptr =
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue()->ptr;
 // start convert_to_v8 block
  if (ptr){
       v8ConversionSlot = Nan::New<v8::String>(ptr).ToLocalChecked();
   }
  else {
    v8ConversionSlot = Nan::Null();
  }

  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitMergeFileResult::Len) {
      v8::Local<v8::Value> v8ConversionSlot;

            size_t
           len =
          Nan::ObjectWrap::Unwrap<GitMergeFileResult>(info.This())->GetValue()->len;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( len);
  // 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<GitMergeFileResultTraits>;
 