summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient/testbrowse.c
blob: 27d6a6973882e377f6b4429d7ac14d742408872f (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
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
#include <sys/types.h>
#include <unistd.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <popt.h>
#include <stdlib.h>
#include <libsmbclient.h>
#include "get_auth_data_fn.h"

void error_message(char * pMessage)
{
    printf("ERROR: %s\n", pMessage);
}


int
main(int argc, char * argv[])
{
    int                         debug = 0;
    int                         opt;
    char *                      p;
    char *                      q;
    char                        buf[1024];
    int                         dir;
    struct stat                 stat;
    struct smbc_dirent *        dirent;
    poptContext pc;
    struct poptOption           long_options[] =
        {
            POPT_AUTOHELP
            {
                "debug", 'd', POPT_ARG_INT, &debug,
                0, "Set debug level", "integer"
            },
            {
                NULL
            }
        };
    
    setbuf(stdout, NULL);

    pc = poptGetContext("opendir", argc, (const char **)argv, long_options, 0);
    
    poptSetOtherOptionHelp(pc, "");
    
    while ((opt = poptGetNextOpt(pc)) != -1) {
        printf("Got option %d = %c\n", opt, opt);
        switch (opt) {
        }
    }

    if (smbc_init(get_auth_data_fn, debug) != 0)
    {
        printf("Could not initialize smbc_ library\n");
        return 1;
    }
    
    for (fputs("url: ", stdout), p = fgets(buf, sizeof(buf), stdin);
         p != NULL && *p != '\n' && *p != '\0';
         fputs("url: ", stdout), p = fgets(buf, sizeof(buf), stdin))
    {
        if ((p = strchr(buf, '\n')) != NULL)
        {
            *p = '\0';
        }
        
        printf("Opening (%s)...\n", buf);
        
        if ((dir = smbc_opendir(buf)) < 0)
        {
            printf("Could not open directory [%s] (%d:%s)\n",
                   buf, errno, strerror(errno));
            continue;
        }

        while ((dirent = smbc_readdir(dir)) != NULL)
        {
            printf("%-30s", dirent->name);
            printf("%-30s", dirent->comment);

            switch(dirent->smbc_type)
            {
            case SMBC_WORKGROUP:
                printf("WORKGROUP");
                break;
            
            case SMBC_SERVER:
                printf("SERVER");
                break;
            
            case SMBC_FILE_SHARE:
                printf("FILE_SHARE");
                break;
            
            case SMBC_PRINTER_SHARE:
                printf("PRINTER_SHARE");
                break;
            
            case SMBC_COMMS_SHARE:
                printf("COMMS_SHARE");
                break;
            
            case SMBC_IPC_SHARE:
                printf("IPC_SHARE");
                break;
            
            case SMBC_DIR:
                printf("DIR");
                break;
            
            case SMBC_FILE:
                printf("FILE");

                q = buf + strlen(buf);
                strcat(q, "/");
                strcat(q+1, dirent->name);
                if (smbc_stat(buf, &stat) < 0)
                {
                    printf(" unknown size (reason %d: %s)",
                           errno, strerror(errno));
                }
                else
                {
                    printf(" size %lu", (unsigned long) stat.st_size);
                }
                *p = '\0';

                break;
            
            case SMBC_LINK:
                printf("LINK");
                break;
            }

            printf("\n");
        }

        smbc_closedir(dir);
    }

    exit(0);
}