blob: 4d174383e9aaafd2e5c32bc2870f99842066fa62 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_
12#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_
13
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000014#include <stddef.h>
15
niklase@google.com470e71d2011-07-07 08:21:25 +000016#include "common_types.h"
17#include "typedefs.h"
18
19// Implementation of an InStream and OutStream that can read (exclusive) or
20// write from/to a file.
21
22namespace webrtc {
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000023
niklase@google.com470e71d2011-07-07 08:21:25 +000024class FileWrapper : public InStream, public OutStream
25{
26public:
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000027 static const size_t kMaxFileNameSize = 1024;
niklase@google.com470e71d2011-07-07 08:21:25 +000028
29 // Factory method. Constructor disabled.
30 static FileWrapper* Create();
31
32 // Returns true if a file has been opened.
33 virtual bool Open() const = 0;
34
35 // Opens a file in read or write mode, decided by the readOnly parameter.
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000036 virtual int OpenFile(const char* fileNameUTF8,
37 bool readOnly,
38 bool loop = false,
39 bool text = false) = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000040
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000041 virtual int CloseFile() = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000042
andrew@webrtc.org5a9c6f22011-12-14 00:53:30 +000043 // Limits the file size to |bytes|. Writing will fail after the cap
44 // is hit. Pass zero to use an unlimited size.
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000045 virtual int SetMaxFileSize(size_t bytes) = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000046
47 // Flush any pending writes.
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000048 virtual int Flush() = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000049
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000050 // Returns the opened file's name in |fileNameUTF8|. Provide the size of
51 // the buffer in bytes in |size|. The name will be truncated if |size| is
52 // too small.
53 virtual int FileName(char* fileNameUTF8,
54 size_t size) const = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000055
andrew@webrtc.org986fab12011-12-15 19:11:41 +000056 // Write |format| to the opened file. Arguments are taken in the same manner
57 // as printf. That is, supply a format string containing text and
58 // specifiers. Returns the number of characters written or -1 on error.
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000059 virtual int WriteText(const char* format, ...) = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000060
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000061 // Inherited from Instream.
andrew@webrtc.org986fab12011-12-15 19:11:41 +000062 // Reads |length| bytes from file to |buf|. Returns the number of bytes read
andrew@webrtc.org7e5ddf52011-12-14 18:02:02 +000063 // or -1 on error.
andrew@webrtc.org986fab12011-12-15 19:11:41 +000064 virtual int Read(void* buf, int length) = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000065
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000066 // Inherited from OutStream.
andrew@webrtc.org986fab12011-12-15 19:11:41 +000067 // Writes |length| bytes from |buf| to file. The actual writing may happen
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000068 // some time later. Call Flush() to force a write.
andrew@webrtc.org986fab12011-12-15 19:11:41 +000069 virtual bool Write(const void *buf, int length) = 0;
niklase@google.com470e71d2011-07-07 08:21:25 +000070
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000071 // Inherited from both Instream and OutStream.
niklase@google.com470e71d2011-07-07 08:21:25 +000072 // Rewinds the file to the start. Only available when OpenFile() has been
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000073 // called with |loop| == true or |readOnly| == true.
niklase@google.com470e71d2011-07-07 08:21:25 +000074 virtual int Rewind() = 0;
75};
andrew@webrtc.org5ae19de2011-12-13 22:59:33 +000076
niklase@google.com470e71d2011-07-07 08:21:25 +000077} // namespace webrtc
78
79#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_