Class: Rugged::Submodule

Inherits:
Object
  • Object
show all
Defined in:
ext/rugged/rugged_submodule.c

Instance Method Summary collapse

Instance Method Details

#add_to_index([options]) ⇒ Object

Add current submodule HEAD commit to the index of superproject.

The following options can be passed in the options Hash:

:write_index

(default true) If this should immediately write the index file. If passed as false, Rugged::Repository#index can be used to explicitly call Rugged::Index#write to save the change.



415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
# File 'ext/rugged/rugged_submodule.c', line 415

static VALUE rb_git_submodule_add_to_index(int argc, VALUE *argv, VALUE self)
{
	git_submodule *submodule;
	VALUE rb_options;
	int write_index = 1;

	Data_Get_Struct(self, git_submodule, submodule);

	rb_scan_args(argc, argv, ":", &rb_options);

	if (!NIL_P(rb_options)) {
		VALUE rb_val;

		rb_val = rb_hash_aref(rb_options, CSTR2SYM("write_index"));
		write_index = (rb_val != Qfalse);
	}

	rugged_exception_check(
		git_submodule_add_to_index(submodule, write_index)
	);

	return self;
}

#added_to_index?Boolean

Returns true if submodule is in index, not in HEAD.

Returns:

  • (Boolean)


258
259
260
261
# File 'ext/rugged/rugged_submodule.c', line 258

static VALUE rb_git_submodule_status_added_to_index(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_ADDED)
}

#added_to_workdir?Boolean

Returns true if submodule is in workdir, not index.

Returns:

  • (Boolean)


302
303
304
305
# File 'ext/rugged/rugged_submodule.c', line 302

static VALUE rb_git_submodule_status_added_to_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_ADDED)
}

#deleted_from_index?Boolean

Returns true if submodule is in HEAD, not in index

Returns:

  • (Boolean)


269
270
271
272
# File 'ext/rugged/rugged_submodule.c', line 269

static VALUE rb_git_submodule_status_deleted_from_index(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_DELETED)
}

#deleted_from_workdir?Boolean

Returns true if submodule is in index, not workdir.

Returns:

  • (Boolean)


313
314
315
316
# File 'ext/rugged/rugged_submodule.c', line 313

static VALUE rb_git_submodule_status_deleted_from_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_DELETED)
}

#dirty_workdir?Boolean

Returns true if the submodule workdir is dirty.

The workdir is considered dirty if the workdir index is modified, there are modified files in the workdir or if there are untracked files in the workdir.

Returns:

  • (Boolean)


397
398
399
400
# File 'ext/rugged/rugged_submodule.c', line 397

static VALUE rb_git_submodule_status_dirty_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_WD_DIRTY)
}

#dirty_workdir_index?Boolean

Returns true if submodule workdir index is dirty.

Returns:

  • (Boolean)


335
336
337
338
# File 'ext/rugged/rugged_submodule.c', line 335

static VALUE rb_git_submodule_status_dirty_workdir_index(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED)
}

#fetch_recurse_submodules?Boolean

Returns the fetchRecurseSubmodules rule for a submodule.

This accesses the submodule.<name>.fetchRecurseSubmodules value for the submodule that controls fetching behavior for the submodule.

Note that at this time, Rugged does not honor this setting and the fetch functionality currently ignores submodules.

Returns:

  • (Boolean)


642
643
644
645
646
647
648
# File 'ext/rugged/rugged_submodule.c', line 642

static VALUE rb_git_submodule_fetch_recurse_submodules(VALUE self)
{
	git_submodule *submodule;
	Data_Get_Struct(self, git_submodule, submodule);

	return git_submodule_fetch_recurse_submodules(submodule) ? Qtrue : Qfalse;
}

#finalize_addObject

Resolve the setup of a new submodule.

This should be called on a submodule once Rugged::SubmoduleCollection#setup_add is finished and the sumodule repo is cloned.

This adds the .gitmodules file and the newly cloned submodule to the index to be ready to be committed (but doesn’t actually do the commit).



786
787
788
789
790
791
792
793
794
795
796
# File 'ext/rugged/rugged_submodule.c', line 786

static VALUE rb_git_submodule_finalize_add(VALUE self)
{
	git_submodule *submodule;
	Data_Get_Struct(self, git_submodule, submodule);

	rugged_exception_check(
		git_submodule_add_finalize(submodule)
	);

	return self;
}

#head_oidString?

Returns the OID for the submodule in the current HEAD tree or nil if the submodule is not in the HEAD.

Returns:

  • (String, nil)


595
596
597
598
# File 'ext/rugged/rugged_submodule.c', line 595

static VALUE rb_git_submodule_head_id(VALUE self)
{
	RB_GIT_OID_GETTER(submodule, head_id);
}

#ignore_ruleObject

Returns the ignore rule for a submodule.

There are four ignore values:

:none (default)

will consider any change to the contents of the submodule from a clean checkout to be dirty, including the addition of untracked files.

:untracked

examines the contents of the working tree but untracked files will not count as making the submodule dirty.

:dirty

means to only check if the HEAD of the submodule has moved for status. This is fast since it does not need to scan the working tree of the submodule at all.

:all

means not to open the submodule repository. The working directory will be considered clean so long as there is a checked out version present.

See #status on how ignore rules reflect the returned status info for a submodule.



691
692
693
694
695
696
697
698
699
700
# File 'ext/rugged/rugged_submodule.c', line 691

static VALUE rb_git_submodule_ignore_rule(VALUE self)
{
	git_submodule *submodule;
	git_submodule_ignore_t ignore;

	Data_Get_Struct(self, git_submodule, submodule);
	ignore = git_submodule_ignore(submodule);

	return rb_git_subm_ignore_rule_fromC(ignore);
}

#in_config?Boolean

Returns true if superproject .gitmodules has submodule.

Returns:

  • (Boolean)


222
223
224
225
# File 'ext/rugged/rugged_submodule.c', line 222

static VALUE rb_git_submodule_status_in_config(VALUE self)
{
	RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_CONFIG)
}

#in_head?Boolean

Returns true if superproject HEAD contains submodule.

Returns:

  • (Boolean)


200
201
202
203
# File 'ext/rugged/rugged_submodule.c', line 200

static VALUE rb_git_submodule_status_in_head(VALUE self)
{
	RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_HEAD)
}

#in_index?Boolean

Returns true if superproject index contains submodule.

Returns:

  • (Boolean)


211
212
213
214
# File 'ext/rugged/rugged_submodule.c', line 211

static VALUE rb_git_submodule_status_in_index(VALUE self)
{
	RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_INDEX)
}

#in_workdir?Boolean

Returns true if superproject workdir has submodule.

Returns:

  • (Boolean)


233
234
235
236
# File 'ext/rugged/rugged_submodule.c', line 233

static VALUE rb_git_submodule_status_in_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_LOCATION_FLAG_CHECK(GIT_SUBMODULE_STATUS_IN_WD)
}

#index_oidString?

Returns the OID for the submodule in the index or nil if the submodule is not in the index.

Returns:

  • (String, nil)


607
608
609
610
# File 'ext/rugged/rugged_submodule.c', line 607

static VALUE rb_git_submodule_index_id(VALUE self)
{
	RB_GIT_OID_GETTER(submodule, index_id);
}

#init([options]) ⇒ Object

Copy submodule info into .git/config file.

Just like "git submodule init", this copies information about the submodule into .git/config.

The following options can be passed in the options Hash:

:overwrite

(defaults to false) - By default, existing entries will not be overwritten, but setting this to true forces them to be updated.



499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# File 'ext/rugged/rugged_submodule.c', line 499

static VALUE rb_git_submodule_init(int argc, VALUE *argv, VALUE self)
{
	git_submodule *submodule;
	VALUE rb_options;
	int overwrite = 0;

	Data_Get_Struct(self, git_submodule, submodule);

	rb_scan_args(argc, argv, ":", &rb_options);

	if (!NIL_P(rb_options)) {
		VALUE rb_val;

		rb_val = rb_hash_aref(rb_options, CSTR2SYM("overwrite"));
		overwrite = RTEST(rb_val);
	}

	rugged_exception_check(
		git_submodule_init(submodule, overwrite)
	);

	return self;
}

#modified_files_in_workdir?Boolean

Returns true if submodule workdir has modified files.

Returns:

  • (Boolean)


346
347
348
349
# File 'ext/rugged/rugged_submodule.c', line 346

static VALUE rb_git_submodule_status_modified_files_in_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_WD_MODIFIED)
}

#modified_in_index?Boolean

Returns true if submodule in index and HEAD don’t match.

Returns:

  • (Boolean)


280
281
282
283
# File 'ext/rugged/rugged_submodule.c', line 280

static VALUE rb_git_submodule_status_modified_in_index(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_INDEX_MODIFIED)
}

#modified_in_workdir?Boolean

Returns true if submodule in index and workdir HEAD don’t match.

Returns:

  • (Boolean)


324
325
326
327
# File 'ext/rugged/rugged_submodule.c', line 324

static VALUE rb_git_submodule_status_modified_in_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_MODIFIED)
}

#nameString

Returns the name of the submodule.

Returns:

  • (String)


529
530
531
532
533
534
535
536
537
538
539
# File 'ext/rugged/rugged_submodule.c', line 529

static VALUE rb_git_submodule_name(VALUE self)
{
	git_submodule *submodule;
	const char *name;

	Data_Get_Struct(self, git_submodule, submodule);

	name = git_submodule_name(submodule);

	return rb_str_new_utf8(name);
}

#pathString

Returns the path of the submodule.

The path is almost always the same as the #name, but the two are actually not required to match.

Returns:

  • (String)


569
570
571
572
573
574
575
576
577
578
579
# File 'ext/rugged/rugged_submodule.c', line 569

static VALUE rb_git_submodule_path(VALUE self)
{
	git_submodule *submodule;
	const char *path;

	Data_Get_Struct(self, git_submodule, submodule);

	path = git_submodule_path(submodule);

	return rb_str_new_utf8(path);
}

#reloadObject

Reread submodule info from config, index, and HEAD.

Call this to reread cached submodule information for this submodule if there is reason to believe that it has changed.



448
449
450
451
452
453
454
455
456
457
458
# File 'ext/rugged/rugged_submodule.c', line 448

static VALUE rb_git_submodule_reload(VALUE self)
{
	git_submodule *submodule;
	Data_Get_Struct(self, git_submodule, submodule);

	rugged_exception_check(
		git_submodule_reload(submodule, 1)
	);

	return self;
}

#repositoryObject

Returns the repository for the submodule.

The returned repository is a newly opened Rugged::Repository object. This will only work if the submodule is checked out into the working directory.



759
760
761
762
763
764
765
766
767
768
769
770
771
# File 'ext/rugged/rugged_submodule.c', line 759

static VALUE rb_git_submodule_repository(VALUE self)
{
	git_submodule *submodule;
	git_repository *repo;

	Data_Get_Struct(self, git_submodule, submodule);

	rugged_exception_check(
		git_submodule_open(&repo, submodule)
	);

	return rugged_repo_new(rb_cRuggedRepo, repo);
}

#statusArray

Returns an array with the status flags for a submodule.

Depending on the #ignore_rule property of the submodule, some of the flags may never be returned because they indicate changes that are supposed to be ignored.

Submodule info is contained in 4 places: the HEAD tree, the index, config files (both .git/config and .gitmodules), and the working directory. Any or all of those places might be missing information about the submodule depending on what state the repository is in. We consider all four places to build the combination of status flags.

There are four values that are not really status, but give basic info about what sources of submodule data are available. These will be returned even if ignore is set to :all.

:in_head

superproject HEAD contains submodule

:in_index

superproject index contains submodule

:in_config

superproject .gitmodules has submodule

:in_workdir

superproject workdir has submodule

The following values will be returned as long as ignore is not :all.

:added_to_index

submodule is in index, not in HEAD

:deleted_from_index

submodule is in HEAD, not in index

:modified_in_index

submodule in index and HEAD don’t match

:uninitialized

submodule in workdir is not initialized

:added_to_workdir

submodule is in workdir, not index

:deleted_from_workdir

submodule is in index, not workdir

:modified_in_workdir

submodule in index and workdir HEAD don’t match

The following can only be returned if ignore is :none or :untracked.

:dirty_workdir_index

submodule workdir index is dirty

:modified_files_in_workdir

submodule workdir has modified files

Lastly, the following will only be returned for ignore :none.

:untracked_files_in_workdir

submodule workdir contains untracked files

Returns:

  • (Array)


165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# File 'ext/rugged/rugged_submodule.c', line 165

static VALUE rb_git_submodule_status(VALUE self)
{
	VALUE rb_repo = rugged_owner(self);
	git_submodule *submodule;
	git_repository *repo;
	unsigned int flags;

	rugged_check_repo(rb_repo);
	Data_Get_Struct(rb_repo, git_repository, repo);
	Data_Get_Struct(self, git_submodule, submodule);

	rugged_exception_check(
		git_submodule_status(&flags, repo, git_submodule_name(submodule),
			GIT_SUBMODULE_IGNORE_UNSPECIFIED)
	);

	return submodule_status_flags_to_rb(flags);

}

#syncObject

Copy submodule remote info into submodule repository.

This copies the information about the submodules URL into the checked out submodule config, acting like "git submodule sync". This is useful if the URL for the submodule was altered (by a manual change, or a fetch of upstream changes) and the local repository needs to be updated.



471
472
473
474
475
476
477
478
479
480
481
# File 'ext/rugged/rugged_submodule.c', line 471

static VALUE rb_git_submodule_sync(VALUE self)
{
	git_submodule *submodule;
	Data_Get_Struct(self, git_submodule, submodule);

	rugged_exception_check(
		git_submodule_sync(submodule)
	);

	return self;
}

#uninitialized?Boolean

Returns true if submodule in workdir is not initialized.

Returns:

  • (Boolean)


291
292
293
294
# File 'ext/rugged/rugged_submodule.c', line 291

static VALUE rb_git_submodule_status_uninitialized(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNINITIALIZED)
}

#unmodified?Boolean

Returns true if the submodule is unmodified.

Returns:

  • (Boolean)


382
383
384
385
# File 'ext/rugged/rugged_submodule.c', line 382

static VALUE rb_git_submodule_status_unmodified(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_CHECK(GIT_SUBMODULE_STATUS_IS_UNMODIFIED)
}

#untracked_files_in_workdir?Boolean

Returns true if submodule workdir contains untracked files.

Returns:

  • (Boolean)


357
358
359
360
# File 'ext/rugged/rugged_submodule.c', line 357

static VALUE rb_git_submodule_status_untracked_files_in_workdir(VALUE self)
{
	RB_GIT_SUBMODULE_STATUS_FLAG_CHECK(GIT_SUBMODULE_STATUS_WD_UNTRACKED)
}

#update_ruleObject

Returns the update rule for a submodule.

There are four update_rule values:

:checkout (default)

the new commit specified in the superproject will be checked out in the submodule on a detached HEAD.

:rebase

the current branch of the submodule will be rebased onto the commit specified in the superproject.

:merge

the commit specified in the superproject will be merged into the current branch of the submodule.

:none

the submodule will not be updated



738
739
740
741
742
743
744
745
746
747
# File 'ext/rugged/rugged_submodule.c', line 738

static VALUE rb_git_submodule_update_rule(VALUE self)
{
	git_submodule *submodule;
	git_submodule_update_t update;

	Data_Get_Struct(self, git_submodule, submodule);
	update = git_submodule_update_strategy(submodule);

	return rb_git_subm_update_rule_fromC(update);
}

#urlString?

Returns the URL of the submodule.

Returns:

  • (String, nil)


547
548
549
550
551
552
553
554
555
556
557
558
# File 'ext/rugged/rugged_submodule.c', line 547

static VALUE rb_git_submodule_url(VALUE self)
{

	git_submodule *submodule;
	const char *url;

	Data_Get_Struct(self, git_submodule, submodule);

	url = git_submodule_url(submodule);

	return url ? rb_str_new_utf8(url) : Qnil;
}

#workdir_oidString?

Returns the OID for the submodule in the current working directory or nil of the submodule is not checked out.

This returns the OID that corresponds to looking up HEAD in the checked out submodule. If there are pending changes in the index or anything else, this won’t notice that. #status can be called for a more complete picture about the state of the working directory.

Returns:

  • (String, nil)


624
625
626
627
# File 'ext/rugged/rugged_submodule.c', line 624

static VALUE rb_git_submodule_wd_id(VALUE self)
{
	RB_GIT_OID_GETTER(submodule, wd_id);
}