2008-02-07 17:40:05 +01:00
|
|
|
#ifndef MERGE_RECURSIVE_H
|
|
|
|
#define MERGE_RECURSIVE_H
|
|
|
|
|
2008-09-03 19:08:56 +02:00
|
|
|
#include "string-list.h"
|
2018-08-15 19:54:05 +02:00
|
|
|
#include "unpack-trees.h"
|
|
|
|
|
|
|
|
struct commit;
|
2008-09-03 19:08:56 +02:00
|
|
|
|
2019-01-12 03:13:29 +01:00
|
|
|
struct repository;
|
|
|
|
|
2008-08-25 16:25:57 +02:00
|
|
|
struct merge_options {
|
2010-03-21 01:41:38 +01:00
|
|
|
const char *ancestor;
|
2008-08-25 16:25:57 +02:00
|
|
|
const char *branch1;
|
|
|
|
const char *branch2;
|
2009-11-26 03:23:55 +01:00
|
|
|
enum {
|
2008-07-01 07:18:57 +02:00
|
|
|
MERGE_RECURSIVE_NORMAL = 0,
|
2009-11-26 03:23:55 +01:00
|
|
|
MERGE_RECURSIVE_OURS,
|
2010-05-14 11:31:35 +02:00
|
|
|
MERGE_RECURSIVE_THEIRS
|
2009-11-26 03:23:55 +01:00
|
|
|
} recursive_variant;
|
2008-07-01 07:18:57 +02:00
|
|
|
const char *subtree_shift;
|
2016-08-01 13:44:50 +02:00
|
|
|
unsigned buffer_output; /* 1: output at end, 2: keep buffered */
|
2010-08-05 13:15:32 +02:00
|
|
|
unsigned renormalize : 1;
|
2010-08-26 07:50:45 +02:00
|
|
|
long xdl_opts;
|
2008-08-25 16:25:57 +02:00
|
|
|
int verbosity;
|
2018-08-29 09:06:12 +02:00
|
|
|
int detect_directory_renames;
|
2018-05-02 18:01:14 +02:00
|
|
|
int diff_detect_rename;
|
|
|
|
int merge_detect_rename;
|
2008-08-25 16:25:57 +02:00
|
|
|
int diff_rename_limit;
|
|
|
|
int merge_rename_limit;
|
2010-09-28 01:58:25 +02:00
|
|
|
int rename_score;
|
2011-02-19 11:20:51 +01:00
|
|
|
int needed_rename_limit;
|
2011-02-20 10:53:21 +01:00
|
|
|
int show_rename_progress;
|
2008-09-02 23:30:09 +02:00
|
|
|
int call_depth;
|
2008-09-03 02:30:03 +02:00
|
|
|
struct strbuf obuf;
|
2017-09-07 18:25:56 +02:00
|
|
|
struct hashmap current_file_dir_set;
|
2011-08-12 07:19:58 +02:00
|
|
|
struct string_list df_conflict_file_set;
|
2018-04-19 19:58:12 +02:00
|
|
|
struct unpack_trees_options unpack_opts;
|
2018-04-19 19:58:20 +02:00
|
|
|
struct index_state orig_index;
|
2019-01-12 03:13:29 +01:00
|
|
|
struct repository *repo;
|
2018-02-14 19:51:57 +01:00
|
|
|
};
|
|
|
|
|
2018-04-19 19:58:05 +02:00
|
|
|
/*
|
|
|
|
* For dir_rename_entry, directory names are stored as a full path from the
|
|
|
|
* toplevel of the repository and do not include a trailing '/'. Also:
|
|
|
|
*
|
|
|
|
* dir: original name of directory being renamed
|
|
|
|
* non_unique_new_dir: if true, could not determine new_dir
|
|
|
|
* new_dir: final name of directory being renamed
|
|
|
|
* possible_new_dirs: temporary used to help determine new_dir; see comments
|
|
|
|
* in get_directory_renames() for details
|
|
|
|
*/
|
|
|
|
struct dir_rename_entry {
|
|
|
|
struct hashmap_entry ent; /* must be the first member! */
|
|
|
|
char *dir;
|
|
|
|
unsigned non_unique_new_dir:1;
|
|
|
|
struct strbuf new_dir;
|
|
|
|
struct string_list possible_new_dirs;
|
|
|
|
};
|
|
|
|
|
2018-04-19 19:58:07 +02:00
|
|
|
struct collision_entry {
|
|
|
|
struct hashmap_entry ent; /* must be the first member! */
|
|
|
|
char *target_file;
|
|
|
|
struct string_list source_files;
|
|
|
|
unsigned reported_already:1;
|
|
|
|
};
|
|
|
|
|
2018-05-02 18:01:14 +02:00
|
|
|
static inline int merge_detect_rename(struct merge_options *o)
|
|
|
|
{
|
|
|
|
return o->merge_detect_rename >= 0 ? o->merge_detect_rename :
|
|
|
|
o->diff_detect_rename >= 0 ? o->diff_detect_rename : 1;
|
|
|
|
}
|
|
|
|
|
2008-08-25 16:25:57 +02:00
|
|
|
/* merge_trees() but with recursive ancestor consolidation */
|
|
|
|
int merge_recursive(struct merge_options *o,
|
|
|
|
struct commit *h1,
|
2008-02-07 17:40:05 +01:00
|
|
|
struct commit *h2,
|
|
|
|
struct commit_list *ancestors,
|
|
|
|
struct commit **result);
|
|
|
|
|
2008-08-25 16:25:57 +02:00
|
|
|
/* rename-detecting three-way merge, no recursion */
|
|
|
|
int merge_trees(struct merge_options *o,
|
|
|
|
struct tree *head,
|
2008-02-07 17:40:05 +01:00
|
|
|
struct tree *merge,
|
|
|
|
struct tree *common,
|
|
|
|
struct tree **result);
|
|
|
|
|
2008-08-25 16:25:57 +02:00
|
|
|
/*
|
|
|
|
* "git-merge-recursive" can be fed trees; wrap them into
|
|
|
|
* virtual commits and call merge_recursive() proper.
|
|
|
|
*/
|
|
|
|
int merge_recursive_generic(struct merge_options *o,
|
2016-06-25 01:09:28 +02:00
|
|
|
const struct object_id *head,
|
|
|
|
const struct object_id *merge,
|
2008-08-25 16:25:57 +02:00
|
|
|
int num_ca,
|
2016-06-25 01:09:28 +02:00
|
|
|
const struct object_id **ca,
|
2008-08-25 16:25:57 +02:00
|
|
|
struct commit **result);
|
|
|
|
|
2019-01-12 03:13:29 +01:00
|
|
|
void init_merge_options(struct merge_options *o,
|
|
|
|
struct repository *repo);
|
2008-08-25 16:25:57 +02:00
|
|
|
struct tree *write_tree_from_memory(struct merge_options *o);
|
2008-08-12 18:45:14 +02:00
|
|
|
|
2010-08-26 07:47:58 +02:00
|
|
|
int parse_merge_opt(struct merge_options *out, const char *s);
|
|
|
|
|
2008-02-07 17:40:05 +01:00
|
|
|
#endif
|