This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
forked from samtools/htslib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hts_internal.h
151 lines (120 loc) · 5.59 KB
/
hts_internal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* hts_internal.h -- internal functions; not part of the public API.
Copyright (C) 2015-2016, 2018-2020 Genome Research Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE. */
#ifndef HTSLIB_HTS_INTERNAL_H
#define HTSLIB_HTS_INTERNAL_H
#include <stddef.h>
#include <ctype.h>
#include "htslib/hts.h"
#include "textutils_internal.h"
#define HTS_MAX_EXT_LEN 8
#ifdef __cplusplus
extern "C" {
#endif
struct hFILE;
struct hts_json_token {
char type; ///< Token type
char *str; ///< Value as a C string (filled in for all token types)
// TODO Add other fields to fill in for particular data types, e.g.
// int inum;
// float fnum;
};
struct cram_fd;
/*
* Check the existence of a local index file using part of the alignment file name.
* The order is alignment.bam.csi, alignment.csi, alignment.bam.bai, alignment.bai
* @param fn - pointer to the file name
* @param fnidx - pointer to the index file name placeholder
* @return 1 for success, 0 for failure
*/
int hts_idx_check_local(const char *fn, int fmt, char **fnidx);
// Retrieve the name of the index file and also download it, if it is remote
char *hts_idx_getfn(const char *fn, const char *ext);
// Retrieve the name of the index file, but do not download it, if it is remote
char *hts_idx_locatefn(const char *fn, const char *ext);
// Used for on-the-fly indexing. See the comments in hts.c.
void hts_idx_amend_last(hts_idx_t *idx, uint64_t offset);
int hts_idx_fmt(hts_idx_t *idx);
// Construct a unique filename based on fname and open it.
struct hFILE *hts_open_tmpfile(const char *fname, const char *mode, kstring_t *tmpname);
// Check that index is capable of storing items in range beg..end
int hts_idx_check_range(hts_idx_t *idx, int tid, hts_pos_t beg, hts_pos_t end);
// The CRAM implementation stores the loaded index within the cram_fd rather
// than separately as is done elsewhere in htslib. So if p is a pointer to
// an hts_idx_t with p->fmt == HTS_FMT_CRAI, then it actually points to an
// hts_cram_idx_t and should be cast accordingly.
typedef struct hts_cram_idx_t {
int fmt;
struct cram_fd *cram;
} hts_cram_idx_t;
// Entry point to hFILE_multipart backend.
struct hFILE *hopen_htsget_redirect(struct hFILE *hfile, const char *mode);
struct hts_path_itr {
kstring_t path, entry;
void *dirv; // DIR * privately
const char *pathdir, *prefix, *suffix;
size_t prefix_len, suffix_len, entry_dir_l;
};
void hts_path_itr_setup(struct hts_path_itr *itr, const char *path,
const char *builtin_path, const char *prefix, size_t prefix_len,
const char *suffix, size_t suffix_len);
const char *hts_path_itr_next(struct hts_path_itr *itr);
typedef void plugin_void_func(void);
plugin_void_func *load_plugin(void **pluginp, const char *filename, const char *symbol);
void *plugin_sym(void *plugin, const char *name, const char **errmsg);
plugin_void_func *plugin_func(void *plugin, const char *name, const char **errmsg);
void close_plugin(void *plugin);
/*
* Buffers up arguments to hts_idx_push for later use, once we've written all bar
* this block. This is necessary when multiple blocks are in flight (threading).
*
* Returns 0 on success,
* -1 on failure
*/
int bgzf_idx_push(BGZF *fp, hts_idx_t *hidx, int tid, hts_pos_t beg, hts_pos_t end, uint64_t offset, int is_mapped);
/*
* bgzf analogue to hts_idx_amend_last.
*
* This is needed when multi-threading and writing indices on the fly.
* At the point of writing a record we know the virtual offset for start
* and end, but that end virtual offset may be the end of the current
* block. In standard indexing our end virtual offset becomes the start
* of the next block. Thus to ensure bit for bit compatibility we
* detect this boundary case and fix it up here.
*/
void bgzf_idx_amend_last(BGZF *fp, hts_idx_t *hidx, uint64_t offset);
static inline int find_file_extension(const char *fn, char ext_out[static HTS_MAX_EXT_LEN])
{
const char *delim = fn ? strstr(fn, HTS_IDX_DELIM) : NULL, *ext;
if (!fn) return -1;
if (!delim) delim = fn + strlen(fn);
for (ext = delim; ext > fn && *ext != '.' && *ext != '/'; --ext) {}
if (*ext == '.' &&
((delim - ext == 3 && ext[1] == 'g' && ext[2] == 'z') || // permit .sam.gz as a valid file extension
(delim - ext == 4 && ext[1] == 'b' && ext[2] == 'g' && ext[3] == 'z'))) // permit .vcf.bgz as a valid file extension
{
for (ext--; ext > fn && *ext != '.' && *ext != '/'; --ext) {}
}
if (*ext != '.' || delim - ext > HTS_MAX_EXT_LEN || delim - ext < 4) return -1;
memcpy(ext_out, ext + 1, delim - ext - 1);
ext_out[delim - ext - 1] = '\0';
return 0;
}
#ifdef __cplusplus
}
#endif
#endif