2008-02-07 19:40:05 +03:00
|
|
|
#ifndef MERGE_RECURSIVE_H
|
|
|
|
#define MERGE_RECURSIVE_H
|
|
|
|
|
2008-09-03 21:08:56 +04:00
|
|
|
#include "string-list.h"
|
2018-08-15 20:54:05 +03:00
|
|
|
#include "unpack-trees.h"
|
|
|
|
|
|
|
|
struct commit;
|
2008-09-03 21:08:56 +04:00
|
|
|
|
2019-01-12 05:13:29 +03:00
|
|
|
struct repository;
|
|
|
|
|
2008-08-25 18:25:57 +04:00
|
|
|
struct merge_options {
|
2010-03-21 03:41:38 +03:00
|
|
|
const char *ancestor;
|
2008-08-25 18:25:57 +04:00
|
|
|
const char *branch1;
|
|
|
|
const char *branch2;
|
2009-11-26 05:23:55 +03:00
|
|
|
enum {
|
2008-07-01 09:18:57 +04:00
|
|
|
MERGE_RECURSIVE_NORMAL = 0,
|
2009-11-26 05:23:55 +03:00
|
|
|
MERGE_RECURSIVE_OURS,
|
2010-05-14 13:31:35 +04:00
|
|
|
MERGE_RECURSIVE_THEIRS
|
2009-11-26 05:23:55 +03:00
|
|
|
} recursive_variant;
|
2008-07-01 09:18:57 +04:00
|
|
|
const char *subtree_shift;
|
2016-08-01 14:44:50 +03:00
|
|
|
unsigned buffer_output; /* 1: output at end, 2: keep buffered */
|
2010-08-05 15:15:32 +04:00
|
|
|
unsigned renormalize : 1;
|
2010-08-26 09:50:45 +04:00
|
|
|
long xdl_opts;
|
2008-08-25 18:25:57 +04:00
|
|
|
int verbosity;
|
2019-08-17 21:41:25 +03:00
|
|
|
enum {
|
|
|
|
MERGE_DIRECTORY_RENAMES_NONE = 0,
|
|
|
|
MERGE_DIRECTORY_RENAMES_CONFLICT = 1,
|
|
|
|
MERGE_DIRECTORY_RENAMES_TRUE = 2
|
|
|
|
} detect_directory_renames;
|
2018-05-02 19:01:14 +03:00
|
|
|
int diff_detect_rename;
|
|
|
|
int merge_detect_rename;
|
2008-08-25 18:25:57 +04:00
|
|
|
int diff_rename_limit;
|
|
|
|
int merge_rename_limit;
|
2010-09-28 03:58:25 +04:00
|
|
|
int rename_score;
|
2011-02-19 13:20:51 +03:00
|
|
|
int needed_rename_limit;
|
2011-02-20 12:53:21 +03:00
|
|
|
int show_rename_progress;
|
2008-09-03 01:30:09 +04:00
|
|
|
int call_depth;
|
2008-09-03 04:30:03 +04:00
|
|
|
struct strbuf obuf;
|
2017-09-07 19:25:56 +03:00
|
|
|
struct hashmap current_file_dir_set;
|
2011-08-12 09:19:58 +04:00
|
|
|
struct string_list df_conflict_file_set;
|
2018-04-19 20:58:12 +03:00
|
|
|
struct unpack_trees_options unpack_opts;
|
2018-04-19 20:58:20 +03:00
|
|
|
struct index_state orig_index;
|
2019-01-12 05:13:29 +03:00
|
|
|
struct repository *repo;
|
2018-02-14 21:51:57 +03:00
|
|
|
};
|
|
|
|
|
2018-04-19 20:58:05 +03: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 20:58:07 +03: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 19:01:14 +03: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 18:25:57 +04:00
|
|
|
/* merge_trees() but with recursive ancestor consolidation */
|
|
|
|
int merge_recursive(struct merge_options *o,
|
|
|
|
struct commit *h1,
|
2008-02-07 19:40:05 +03:00
|
|
|
struct commit *h2,
|
|
|
|
struct commit_list *ancestors,
|
|
|
|
struct commit **result);
|
|
|
|
|
2008-08-25 18:25:57 +04:00
|
|
|
/* rename-detecting three-way merge, no recursion */
|
|
|
|
int merge_trees(struct merge_options *o,
|
|
|
|
struct tree *head,
|
2008-02-07 19:40:05 +03:00
|
|
|
struct tree *merge,
|
|
|
|
struct tree *common,
|
|
|
|
struct tree **result);
|
|
|
|
|
2008-08-25 18:25:57 +04: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 02:09:28 +03:00
|
|
|
const struct object_id *head,
|
|
|
|
const struct object_id *merge,
|
2008-08-25 18:25:57 +04:00
|
|
|
int num_ca,
|
2016-06-25 02:09:28 +03:00
|
|
|
const struct object_id **ca,
|
2008-08-25 18:25:57 +04:00
|
|
|
struct commit **result);
|
|
|
|
|
2019-01-12 05:13:29 +03:00
|
|
|
void init_merge_options(struct merge_options *o,
|
|
|
|
struct repository *repo);
|
2008-08-25 18:25:57 +04:00
|
|
|
struct tree *write_tree_from_memory(struct merge_options *o);
|
2008-08-12 20:45:14 +04:00
|
|
|
|
2010-08-26 09:47:58 +04:00
|
|
|
int parse_merge_opt(struct merge_options *out, const char *s);
|
|
|
|
|
2008-02-07 19:40:05 +03:00
|
|
|
#endif
|