File: sftp-dir-func.c

package info (click to toggle)
guile-ssh 0.18.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,996 kB
  • sloc: ansic: 4,821; lisp: 4,171; makefile: 310; sh: 259
file content (199 lines) | stat: -rw-r--r-- 6,443 bytes parent folder | download | duplicates (2)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/* sftp-dir-func.c -- Functions for working with SFTP directories.
 *
 * Copyright (C) 2022 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 *
 * This file is part of Guile-SSH
 *
 * Guile-SSH 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 3 of the
 * License, or (at your option) any later version.
 *
 * Guile-SSH 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 Guile-SSH.  If not, see <http://www.gnu.org/licenses/>.
 */


#include <config.h>

/* Guile */
#include <libguile.h>

/* libssh */
#include <libssh/libssh.h>
#include <libssh/sftp.h>

/* Guile-SSH */
#include "common.h"
#include "error.h"
#include "sftp-session-type.h"
#include "sftp-dir-type.h"



SCM_GSSH_DEFINE (gssh_sftp_dir_p, "sftp-dir?", 1, (SCM x))
{
  return scm_from_bool (SCM_SMOB_PREDICATE (sftp_dir_tag, x));
}


SCM_GSSH_DEFINE (gssh_sftp_dir_path, "sftp-dir-path", 1,
                 (SCM sftp_dir))
#define FUNC_NAME s_gssh_sftp_dir_path
{
  gssh_sftp_dir_t* dir = gssh_sftp_dir_from_scm (sftp_dir);
  return dir->path;
}
#undef FUNC_NAME

SCM_GSSH_DEFINE (gssh_sftp_dir_session, "sftp-dir-session", 1,
                 (SCM sftp_dir))
#define FUNC_NAME s_gssh_sftp_dir_path
{
  gssh_sftp_dir_t* dir = gssh_sftp_dir_from_scm (sftp_dir);
  return dir->gssh_sftp_session;
}
#undef FUNC_NAME


SCM_GSSH_DEFINE (gssh_sftp_dir_open, "sftp-dir-open", 2,
                 (SCM sftp_session, SCM path))
#define FUNC_NAME s_gssh_sftp_dir_open
{
  gssh_sftp_session_t* data = gssh_sftp_session_from_scm (sftp_session);
  sftp_dir dir;
  char* c_path;

  scm_dynwind_begin (0);

  c_path = scm_to_locale_string (path);
  scm_dynwind_free (c_path);

  dir = sftp_opendir (data->sftp_session, c_path);
  if (dir == NULL)
    {
      guile_ssh_error1 (FUNC_NAME,
                        "Could not open a directory",
                        scm_list_2 (sftp_session, path));
    }
  scm_dynwind_end ();

  return gssh_sftp_dir_to_scm (dir, path, sftp_session);
}
#undef FUNC_NAME

SCM_GSSH_DEFINE (gssh_sftp_dir_close, "sftp-dir-close", 1,
                 (SCM sftp_dir))
#define FUNC_NAME s_gssh_sftp_dir_close
{
  gssh_sftp_dir_t* dir = gssh_sftp_dir_from_scm (sftp_dir);
  int rc = sftp_closedir (dir->dir);
  if (rc == SSH_ERROR)
    {
      guile_ssh_error1 (FUNC_NAME,
                        "Could not close an SFTP directory",
                        sftp_dir);
    }

  return SCM_UNDEFINED;
}
#undef FUNC_NAME

SCM_GSSH_DEFINE (gssh_sftp_dir_eof_p, "sftp-dir-eof?", 1,
                 (SCM sftp_dir))
#define FUNC_NAME s_gssh_sftp_closedir
{
  gssh_sftp_dir_t* dir = gssh_sftp_dir_from_scm (sftp_dir);
  int rc = sftp_dir_eof (dir->dir);
  return scm_from_bool (rc);
}
#undef FUNC_NAME


/* This macro constructs an SCM pair from an SFTP attribute symbol and a C
   integer value. */
#define CONS_INT_ATTR(name, value) \
  scm_cons (gssh_sftp_attr_ ## name, scm_from_int (value))

/* This macro constructs an SCM pair from an SFTP atribute symbol and a C
   string SFTP attribute. */
#define CONS_STR_ATTR(name, value)                                      \
  scm_cons (gssh_sftp_attr_ ## name,                                    \
            value ? scm_from_locale_string (value) : SCM_BOOL_F)

/* This macro constructs an SCM pair from an SFTP attribute symbol and a SSH
   string value. */
#define CONS_SST_ATTR(name, value)  \
  scm_cons (gssh_sftp_attr_ ## name,                                    \
            value                                                       \
            ? scm_from_locale_string (ssh_string_to_char (value))       \
            : SCM_BOOL_F)

static SCM
scm_from_sftp_dir_attributes (sftp_attributes attrs)
{
  return scm_list_n (CONS_STR_ATTR (name,                attrs->name),
                     CONS_STR_ATTR (longname,            attrs->longname),
                     CONS_INT_ATTR (flags,               attrs->flags),
                     CONS_INT_ATTR (type,                attrs->type),
                     CONS_INT_ATTR (size,                attrs->size),
                     CONS_INT_ATTR (uid,                 attrs->uid),
                     CONS_INT_ATTR (gid,                 attrs->gid),
                     CONS_STR_ATTR (owner,               attrs->owner),
                     CONS_STR_ATTR (group,               attrs->group),
                     CONS_INT_ATTR (permissions,         attrs->permissions),
                     CONS_INT_ATTR (atime64,             attrs->atime64),
                     CONS_INT_ATTR (atime,               attrs->atime),
                     CONS_INT_ATTR (atime_nseconds,      attrs->atime_nseconds),
                     CONS_INT_ATTR (createtime,          attrs->createtime),
                     CONS_INT_ATTR (createtime_nseconds, attrs->createtime_nseconds),
                     CONS_INT_ATTR (mtime64,             attrs->mtime64),
                     CONS_INT_ATTR (mtime,               attrs->mtime),
                     CONS_INT_ATTR (mtime_nseconds,      attrs->mtime_nseconds),
                     CONS_SST_ATTR (acl,                 attrs->acl),
                     CONS_INT_ATTR (extended_count,      attrs->extended_count),
                     CONS_SST_ATTR (extended_type,       attrs->extended_type),
                     CONS_SST_ATTR (extended_data,       attrs->extended_data),
                     SCM_UNDEFINED);
}

#undef CONS_INT_ATTR
#undef CONS_STR_ATTR
#undef CONS_SST_ATTR

SCM_GSSH_DEFINE (gssh_sftp_dir_read, "sftp-dir-read", 1,
                 (SCM sftp_dir))
#define FUNC_NAME s_gssh_sftp_dir_read
{
  gssh_sftp_dir_t* dir = gssh_sftp_dir_from_scm (sftp_dir);
  gssh_sftp_session_t* session = gssh_sftp_session_from_scm (dir->gssh_sftp_session);
  sftp_attributes attrs = sftp_readdir (session->sftp_session, dir->dir);
  if (attrs == NULL)
    {
      return SCM_BOOL_F;
    }

  return scm_from_sftp_dir_attributes (attrs);
}
#undef FUNC_NAME


/* Initialize functions. */
void
init_sftp_dir_func (void)
{
#include "sftp-dir-func.x"
}

/*
  Local Variables:
  c-file-style: "gnu"
  End:
 */

/* sftp-dir-func.c ends here. */