concat.c 5.56 KB
Newer Older
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
/*
 * Concat URL protocol
 * Copyright (c) 2006 Steve Lhomme
 * Copyright (c) 2007 Wolfram Gloger
 * Copyright (c) 2010 Michele Orrù
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "libavutil/avstring.h"
#include "libavutil/mem.h"
26 27

#include "avformat.h"
28
#include "url.h"
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

#define AV_CAT_SEPARATOR "|"

struct concat_nodes {
    URLContext *uc;                ///< node's URLContext
    int64_t     size;              ///< url filesize
};

struct concat_data {
    struct concat_nodes *nodes;    ///< list of nodes to concat
    size_t               length;   ///< number of cat'ed nodes
    size_t               current;  ///< index of currently read node
};

static av_cold int concat_close(URLContext *h)
{
    int err = 0;
    size_t i;
    struct concat_data  *data  = h->priv_data;
    struct concat_nodes *nodes = data->nodes;

    for (i = 0; i != data->length; i++)
51
        err |= ffurl_close(nodes[i].uc);
52 53 54 55 56 57 58 59

    av_freep(&data->nodes);

    return err < 0 ? -1 : 0;
}

static av_cold int concat_open(URLContext *h, const char *uri, int flags)
{
60
    char *node_uri = NULL;
61 62
    int err = 0;
    int64_t size;
63
    size_t len, i;
64
    URLContext *uc;
65
    struct concat_data  *data = h->priv_data;
66 67
    struct concat_nodes *nodes;

68 69 70 71
    if (!av_strstart(uri, "concat:", &uri)) {
        av_log(h, AV_LOG_ERROR, "URL %s lacks prefix\n", uri);
        return AVERROR(EINVAL);
    }
72

73 74
    for (i = 0, len = 1; uri[i]; i++) {
        if (uri[i] == *AV_CAT_SEPARATOR) {
75 76 77 78 79
            /* integer overflow */
            if (++len == UINT_MAX / sizeof(*nodes)) {
                av_freep(&h->priv_data);
                return AVERROR(ENAMETOOLONG);
            }
80 81
        }
    }
82

83
    if (!(nodes = av_realloc(NULL, sizeof(*nodes) * len)))
84
        return AVERROR(ENOMEM);
85
    else
86 87 88 89 90 91 92 93
        data->nodes = nodes;

    /* handle input */
    if (!*uri)
        err = AVERROR(ENOENT);
    for (i = 0; *uri; i++) {
        /* parsing uri */
        len = strcspn(uri, AV_CAT_SEPARATOR);
94
        if ((err = av_reallocp(&node_uri, len + 1)) < 0)
95
            break;
96 97
        av_strlcpy(node_uri, uri, len + 1);
        uri += len + strspn(uri + len, AV_CAT_SEPARATOR);
98 99

        /* creating URLContext */
100
        err = ffurl_open_whitelist(&uc, node_uri, flags,
101
                                   &h->interrupt_callback, NULL, h->protocol_whitelist, h->protocol_blacklist, h);
102
        if (err < 0)
103 104 105
            break;

        /* creating size */
106
        if ((size = ffurl_size(uc)) < 0) {
107
            ffurl_close(uc);
108 109 110 111 112 113 114 115 116 117 118 119 120
            err = AVERROR(ENOSYS);
            break;
        }

        /* assembling */
        nodes[i].uc   = uc;
        nodes[i].size = size;
    }
    av_free(node_uri);
    data->length = i;

    if (err < 0)
        concat_close(h);
121
    else if (!(nodes = av_realloc(nodes, data->length * sizeof(*nodes)))) {
122
        concat_close(h);
123 124
        err = AVERROR(ENOMEM);
    } else
125 126 127 128 129 130 131 132 133
        data->nodes = nodes;
    return err;
}

static int concat_read(URLContext *h, unsigned char *buf, int size)
{
    int result, total = 0;
    struct concat_data  *data  = h->priv_data;
    struct concat_nodes *nodes = data->nodes;
134
    size_t i                   = data->current;
135 136

    while (size > 0) {
137
        result = ffurl_read(nodes[i].uc, buf, size);
138
        if (result == AVERROR_EOF) {
139
            if (i + 1 == data->length ||
140
                ffurl_seek(nodes[++i].uc, 0, SEEK_SET) < 0)
141
                break;
142
            result = 0;
143
        }
144 145
        if (result < 0)
            return total ? total : result;
146 147 148 149 150
        total += result;
        buf   += result;
        size  -= result;
    }
    data->current = i;
151
    return total ? total : result;
152 153 154 155 156 157 158 159 160 161 162
}

static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
{
    int64_t result;
    struct concat_data  *data  = h->priv_data;
    struct concat_nodes *nodes = data->nodes;
    size_t i;

    switch (whence) {
    case SEEK_END:
163
        for (i = data->length - 1; i && pos < -nodes[i].size; i--)
164
            pos += nodes[i].size;
165 166 167 168 169
        break;
    case SEEK_CUR:
        /* get the absolute position */
        for (i = 0; i != data->current; i++)
            pos += nodes[i].size;
170
        pos += ffurl_seek(nodes[i].uc, 0, SEEK_CUR);
171 172 173 174 175 176 177 178 179 180
        whence = SEEK_SET;
        /* fall through with the absolute position */
    case SEEK_SET:
        for (i = 0; i != data->length - 1 && pos >= nodes[i].size; i++)
            pos -= nodes[i].size;
        break;
    default:
        return AVERROR(EINVAL);
    }

181
    result = ffurl_seek(nodes[i].uc, pos, whence);
182 183 184
    if (result >= 0) {
        data->current = i;
        while (i)
Wolfram Gloger's avatar
Wolfram Gloger committed
185
            result += nodes[--i].size;
186 187 188 189
    }
    return result;
}

190
const URLProtocol ff_concat_protocol = {
191 192 193 194 195
    .name           = "concat",
    .url_open       = concat_open,
    .url_read       = concat_read,
    .url_seek       = concat_seek,
    .url_close      = concat_close,
196
    .priv_data_size = sizeof(struct concat_data),
197
    .default_whitelist = "concat,file,subfile",
198
};