summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/System/Android/NptAndroidFile.cpp
blob: 5d7f619793b72381dfaab4c05e184671254d9ef2 (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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/*****************************************************************
|
|   Neptune - Files :: Android Implementation
|
|   (c) 2001-2016 Gilles Boccon-Gibod
|   Author: Gilles Boccon-Gibod (bok@bok.net)
|
 ****************************************************************/

/*----------------------------------------------------------------------
|   includes
+---------------------------------------------------------------------*/
#include "NptConfig.h"
#include "NptUtils.h"
#include "NptFile.h"
#include "NptThreads.h"
#include "NptInterfaces.h"
#include "NptStrings.h"
#include "NptDebug.h"

#include <errno.h>
#include <unistd.h>
#include <fcntl.h>

/*----------------------------------------------------------------------
|   MapErrno
+---------------------------------------------------------------------*/
static NPT_Result
MapErrno(int err) {
    switch (err) {
      case EACCES:       return NPT_ERROR_PERMISSION_DENIED;
      case EPERM:        return NPT_ERROR_PERMISSION_DENIED;
      case ENOENT:       return NPT_ERROR_NO_SUCH_FILE;
#if defined(ENAMETOOLONG)
      case ENAMETOOLONG: return NPT_ERROR_INVALID_PARAMETERS;
#endif
      case EBUSY:        return NPT_ERROR_FILE_BUSY;
      case EROFS:        return NPT_ERROR_FILE_NOT_WRITABLE;
      case ENOTDIR:      return NPT_ERROR_FILE_NOT_DIRECTORY;
      default:           return NPT_ERROR_ERRNO(err);
    }
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileWrapper
+---------------------------------------------------------------------*/
class NPT_AndroidFileWrapper
{
public:
    // constructors and destructor
    NPT_AndroidFileWrapper(int fd, const char* name) : m_FD(fd), m_Position(0), m_Name(name) {}
    ~NPT_AndroidFileWrapper() {
        if (m_FD >= 0 &&
            m_FD != STDIN_FILENO &&
            m_FD != STDOUT_FILENO &&
            m_FD != STDERR_FILENO) {
            close(m_FD);
        }
    }

    // members
    int          m_FD;
    NPT_Position m_Position;
    NPT_String   m_Name;
};

typedef NPT_Reference<NPT_AndroidFileWrapper> NPT_AndroidFileReference;

/*----------------------------------------------------------------------
|   NPT_AndroidFileStream
+---------------------------------------------------------------------*/
class NPT_AndroidFileStream
{
public:
    // constructors and destructor
    NPT_AndroidFileStream(NPT_AndroidFileReference file) :
      m_FileReference(file) {}

    // NPT_FileInterface methods
    NPT_Result Seek(NPT_Position offset);
    NPT_Result Tell(NPT_Position& offset);
    NPT_Result Flush();

protected:
    // constructors and destructors
    virtual ~NPT_AndroidFileStream() {}

    // members
    NPT_AndroidFileReference m_FileReference;
};

/*----------------------------------------------------------------------
|   NPT_AndroidFileStream::Seek
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileStream::Seek(NPT_Position offset)
{
    off64_t result = lseek64(m_FileReference->m_FD, offset, SEEK_SET);
    if (result < 0) {
        return MapErrno(errno);
    }

    m_FileReference->m_Position = offset;

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileStream::Tell
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileStream::Tell(NPT_Position& offset)
{
    offset = m_FileReference->m_Position;
    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileStream::Flush
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileStream::Flush()
{
    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileInputStream
+---------------------------------------------------------------------*/
class NPT_AndroidFileInputStream : public NPT_InputStream,
                                private NPT_AndroidFileStream

{
public:
    // constructors and destructor
    NPT_AndroidFileInputStream(NPT_AndroidFileReference& file) :
        NPT_AndroidFileStream(file) {}

    // NPT_InputStream methods
    NPT_Result Read(void*     buffer,
                    NPT_Size  bytes_to_read,
                    NPT_Size* bytes_read);
    NPT_Result Seek(NPT_Position offset) {
        return NPT_AndroidFileStream::Seek(offset);
    }
    NPT_Result Tell(NPT_Position& offset) {
        return NPT_AndroidFileStream::Tell(offset);
    }
    NPT_Result GetSize(NPT_LargeSize& size);
    NPT_Result GetAvailable(NPT_LargeSize& available);
};

/*----------------------------------------------------------------------
|   NPT_AndroidFileInputStream::Read
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileInputStream::Read(void*     buffer,
                                 NPT_Size  bytes_to_read,
                                 NPT_Size* bytes_read)
{
    // check the parameters
    if (buffer == NULL) {
        return NPT_ERROR_INVALID_PARAMETERS;
    }

    // read from the file
    ssize_t nb_read = read(m_FileReference->m_FD, buffer, bytes_to_read);
    if (nb_read > 0) {
        if (bytes_read) *bytes_read = (NPT_Size)nb_read;
        m_FileReference->m_Position += nb_read;
        return NPT_SUCCESS;
    } else if (nb_read == 0) {
        if (bytes_read) *bytes_read = 0;
        return NPT_ERROR_EOS;
    } else {
        if (bytes_read) *bytes_read = 0;
        return MapErrno(errno);
    }
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileInputStream::GetSize
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileInputStream::GetSize(NPT_LargeSize& size)
{
    NPT_FileInfo file_info;
    NPT_Result result = NPT_File::GetInfo(m_FileReference->m_Name, &file_info);
    if (NPT_FAILED(result)) return result;
    size = file_info.m_Size;

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileInputStream::GetAvailable
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileInputStream::GetAvailable(NPT_LargeSize& available)
{
    NPT_LargeSize size = 0;

    if (NPT_SUCCEEDED(GetSize(size)) && m_FileReference->m_Position <= size) {
        available = size - m_FileReference->m_Position;
        return NPT_SUCCESS;
    } else {
        available = 0;
        return NPT_FAILURE;
    }
}

/*----------------------------------------------------------------------
|   NPT_AndroidFileOutputStream
+---------------------------------------------------------------------*/
class NPT_AndroidFileOutputStream : public NPT_OutputStream,
                                    private NPT_AndroidFileStream
{
public:
    // constructors and destructor
    NPT_AndroidFileOutputStream(NPT_AndroidFileReference& file) :
        NPT_AndroidFileStream(file) {}

    // NPT_InputStream methods
    NPT_Result Write(const void* buffer,
                     NPT_Size    bytes_to_write,
                     NPT_Size*   bytes_written);
    NPT_Result Seek(NPT_Position offset) {
        return NPT_AndroidFileStream::Seek(offset);
    }
    NPT_Result Tell(NPT_Position& offset) {
        return NPT_AndroidFileStream::Tell(offset);
    }
    NPT_Result Flush() {
        return NPT_AndroidFileStream::Flush();
    }
};

/*----------------------------------------------------------------------
|   NPT_AndroidFileOutputStream::Write
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFileOutputStream::Write(const void* buffer,
                                   NPT_Size    bytes_to_write,
                                   NPT_Size*   bytes_written)
{
    if (bytes_to_write == 0) {
        if (bytes_written) *bytes_written = 0;
        return NPT_SUCCESS;
    }

    ssize_t nb_written = write(m_FileReference->m_FD, buffer, bytes_to_write);

    if (nb_written > 0) {
        if (bytes_written) *bytes_written = (NPT_Size)nb_written;
        m_FileReference->m_Position += nb_written;
        return NPT_SUCCESS;
    } else {
        if (bytes_written) *bytes_written = 0;
        return MapErrno(errno);
    }
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile
+---------------------------------------------------------------------*/
class NPT_AndroidFile: public NPT_FileInterface
{
public:
    // constructors and destructor
    NPT_AndroidFile(NPT_File& delegator);
   ~NPT_AndroidFile();

    // NPT_FileInterface methods
    NPT_Result Open(OpenMode mode);
    NPT_Result Close();
    NPT_Result GetInputStream(NPT_InputStreamReference& stream);
    NPT_Result GetOutputStream(NPT_OutputStreamReference& stream);

private:
    // members
    NPT_File&                m_Delegator;
    OpenMode                 m_Mode;
    NPT_AndroidFileReference m_FileReference;
};

/*----------------------------------------------------------------------
|   NPT_AndroidFile::NPT_AndroidFile
+---------------------------------------------------------------------*/
NPT_AndroidFile::NPT_AndroidFile(NPT_File& delegator) :
    m_Delegator(delegator),
    m_Mode(0)
{
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile::~NPT_AndroidFile
+---------------------------------------------------------------------*/
NPT_AndroidFile::~NPT_AndroidFile()
{
    Close();
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile::Open
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFile::Open(NPT_File::OpenMode mode)
{
    // check if we're already open
    if (!m_FileReference.IsNull()) {
        return NPT_ERROR_FILE_ALREADY_OPEN;
    }

    // store the mode
    m_Mode = mode;

    // check for special names
    const char* name = (const char*)m_Delegator.GetPath();
    int fd = -1;
    if (NPT_StringsEqual(name, NPT_FILE_STANDARD_INPUT)) {
        fd = STDIN_FILENO;
    } else if (NPT_StringsEqual(name, NPT_FILE_STANDARD_OUTPUT)) {
        fd = STDOUT_FILENO;
    } else if (NPT_StringsEqual(name, NPT_FILE_STANDARD_ERROR)) {
        fd = STDERR_FILENO;
    } else {
        int open_flags   = 0;
        int create_perm  = 0;

        if (mode & NPT_FILE_OPEN_MODE_WRITE) {
            if (mode & NPT_FILE_OPEN_MODE_READ) {
                open_flags |= O_RDWR;
            } else {
                open_flags |= O_WRONLY;
            }
            if (mode & NPT_FILE_OPEN_MODE_APPEND) {
                open_flags |= O_APPEND;
            }
            if (mode & NPT_FILE_OPEN_MODE_CREATE) {
                open_flags |= O_CREAT;
                create_perm = 0666;
            }
            if (mode & NPT_FILE_OPEN_MODE_TRUNCATE) {
                open_flags |= O_TRUNC;
            }
        } else {
            open_flags |= O_RDONLY;
        }

        fd = open(name, open_flags, create_perm);

        // test the result of the open
        if (fd < 0) return MapErrno(errno);
    }

    // create a reference to the file descriptor
    m_FileReference = new NPT_AndroidFileWrapper(fd, name);

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile::Close
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFile::Close()
{
    // release the file reference
    m_FileReference = NULL;

    // reset the mode
    m_Mode = 0;

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile::GetInputStream
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFile::GetInputStream(NPT_InputStreamReference& stream)
{
    // default value
    stream = NULL;

    // check that the file is open
    if (m_FileReference.IsNull()) return NPT_ERROR_FILE_NOT_OPEN;

    // check that the mode is compatible
    if (!(m_Mode & NPT_FILE_OPEN_MODE_READ)) {
        return NPT_ERROR_FILE_NOT_READABLE;
    }

    // create a stream
    stream = new NPT_AndroidFileInputStream(m_FileReference);

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_AndroidFile::GetOutputStream
+---------------------------------------------------------------------*/
NPT_Result
NPT_AndroidFile::GetOutputStream(NPT_OutputStreamReference& stream)
{
    // default value
    stream = NULL;

    // check that the file is open
    if (m_FileReference.IsNull()) return NPT_ERROR_FILE_NOT_OPEN;

    // check that the mode is compatible
    if (!(m_Mode & NPT_FILE_OPEN_MODE_WRITE)) {
        return NPT_ERROR_FILE_NOT_WRITABLE;
    }

    // create a stream
    stream = new NPT_AndroidFileOutputStream(m_FileReference);

    return NPT_SUCCESS;
}

/*----------------------------------------------------------------------
|   NPT_File::NPT_File
+---------------------------------------------------------------------*/
NPT_File::NPT_File(const char* path) : m_Path(path), m_IsSpecial(false)
{
    m_Delegate = new NPT_AndroidFile(*this);

    if (NPT_StringsEqual(path, NPT_FILE_STANDARD_INPUT)  ||
        NPT_StringsEqual(path, NPT_FILE_STANDARD_OUTPUT) ||
        NPT_StringsEqual(path, NPT_FILE_STANDARD_ERROR)) {
        m_IsSpecial = true;
    }
}

/*----------------------------------------------------------------------
|   NPT_File::operator=
+---------------------------------------------------------------------*/
NPT_File&
NPT_File::operator=(const NPT_File& file)
{
    if (this != &file) {
        delete m_Delegate;
        m_Path      = file.m_Path;
        m_IsSpecial = file.m_IsSpecial;
        m_Delegate  = new NPT_AndroidFile(*this);
    }
    return *this;
}