// 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/remote_head.h"
#include "nodegit_wrapper.cc"

  #include "../include/functions/free.h"
  #include "../include/oid.h"
 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitRemoteHead::~GitRemoteHead() {
    // 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 GitRemoteHead::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("RemoteHead").ToLocalChecked());

         Nan::SetPrototypeMethod(tpl, "local", Local, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "oid", Oid, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "loid", Loid, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "name", Name, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "symrefTarget", SymrefTarget, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitRemoteHead::Template", constructor_template);
    Nan::Set(target, Nan::New("RemoteHead").ToLocalChecked(), constructor_template);
  }

      // start field block
    NAN_METHOD(GitRemoteHead::Local) {
      v8::Local<v8::Value> v8ConversionSlot;

            int
           local =
          Nan::ObjectWrap::Unwrap<GitRemoteHead>(info.This())->GetValue()->local;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( local);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitRemoteHead::Oid) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_oid
*            oid =
          &
           Nan::ObjectWrap::Unwrap<GitRemoteHead>(info.This())->GetValue()->oid;
 // start convert_to_v8 block
    if (oid != NULL) {
      v8::Local<v8::Array> owners = Nan::New<Array>(0);
         Nan::Set(owners, owners->Length(), info.This());
          v8ConversionSlot = GitOid::New(
        oid,
        true
          , owners
       );
   }
  else {
    v8ConversionSlot = Nan::Null();
  }
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitRemoteHead::Loid) {
      v8::Local<v8::Value> v8ConversionSlot;

            git_oid
*            loid =
          &
           Nan::ObjectWrap::Unwrap<GitRemoteHead>(info.This())->GetValue()->loid;
 // start convert_to_v8 block
    if (loid != NULL) {
      v8::Local<v8::Array> owners = Nan::New<Array>(0);
         Nan::Set(owners, owners->Length(), info.This());
          v8ConversionSlot = GitOid::New(
        loid,
        true
          , owners
       );
   }
  else {
    v8ConversionSlot = Nan::Null();
  }
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitRemoteHead::Name) {
      v8::Local<v8::Value> v8ConversionSlot;

            char *
           name =
          Nan::ObjectWrap::Unwrap<GitRemoteHead>(info.This())->GetValue()->name;
 // start convert_to_v8 block
  if (name){
       v8ConversionSlot = Nan::New<v8::String>(name).ToLocalChecked();
   }
  else {
    v8ConversionSlot = Nan::Null();
  }

  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitRemoteHead::SymrefTarget) {
      v8::Local<v8::Value> v8ConversionSlot;

            char *
           symref_target =
          Nan::ObjectWrap::Unwrap<GitRemoteHead>(info.This())->GetValue()->symref_target;
 // start convert_to_v8 block
  if (symref_target){
       v8ConversionSlot = Nan::New<v8::String>(symref_target).ToLocalChecked();
   }
  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<GitRemoteHeadTraits>;
 