summaryrefslogtreecommitdiffstats
path: root/osdep/glob-win.c
blob: d67d6ddf638866bf7f4132af6ed0d67e4b02f801 (plain)
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
/*
 * This file is part of MPlayer.
 *
 * MPlayer is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * MPlayer 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "config.h"

#include <windows.h>
#include "glob.h"

int glob(const char *pattern, int flags,
         int (*errfunc)(const char *epath, int eerrno), glob_t *pglob)
{
    HANDLE searchhndl;
    WIN32_FIND_DATA found_file;
    if (errfunc)
        printf("glob():ERROR:Sorry errfunc not supported by this implementation\n");
    if (flags)
        printf("glob():ERROR:Sorry no flags supported by this globimplementation\n");
    //printf("PATTERN \"%s\"\n",pattern);
    pglob->gl_pathc = 0;
    searchhndl      = FindFirstFile(pattern, &found_file);
    if (searchhndl == INVALID_HANDLE_VALUE) {
        if (GetLastError() == ERROR_FILE_NOT_FOUND) {
            pglob->gl_pathc = 0;
            //printf("could not find a file matching your search criteria\n");
            return 1;
        } else {
            //printf("glob():ERROR:FindFirstFile: %i\n",GetLastError());
            return 1;
        }
    }
    pglob->gl_pathv    = malloc(sizeof(char *));
    pglob->gl_pathv[0] = strdup(found_file.cFileName);
    pglob->gl_pathc++;
    while (1) {
        if (!FindNextFile(searchhndl, &found_file)) {
            if (GetLastError() == ERROR_NO_MORE_FILES) {
                //printf("glob(): no more files found\n");
                break;
            } else {
                //printf("glob():ERROR:FindNextFile:%i\n",GetLastError());
                return 1;
            }
        } else {
            //printf("glob: found file %s\n",found_file.cFileName);
            pglob->gl_pathc++;
            pglob->gl_pathv = realloc(pglob->gl_pathv, pglob->gl_pathc * sizeof(char *));
            pglob->gl_pathv[pglob->gl_pathc - 1] = strdup(found_file.cFileName);
        }
    }
    FindClose(searchhndl);
    return 0;
}

void globfree(glob_t *pglob)
{
    int i;
    for (i = 0; i < pglob->gl_pathc; i++)
        free(pglob->gl_pathv[i]);
    free(pglob->gl_pathv);
}

#if 0
int main(void)
{
    glob_t gg;
    printf("globtest\n");
    glob("*.jpeg", 0, NULL, &gg);
    {
        int i;
        for (i = 0; i < gg.gl_pathc; i++)
            printf("GLOBED:%i %s\n", i, gg.gl_pathv[i]);
    }
    globfree(&gg);

    return 0;
}

#endif