2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
#ifndef PACKAGER_FILE_LOCAL_FILE_H_
|
|
|
|
#define PACKAGER_FILE_LOCAL_FILE_H_
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/compiler_specific.h"
|
|
|
|
#include "packager/media/file/file.h"
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2013-10-11 21:44:55 +00:00
|
|
|
namespace media {
|
|
|
|
|
2014-01-24 00:26:00 +00:00
|
|
|
/// Implement LocalFile which deals with local storage.
|
2013-10-11 21:44:55 +00:00
|
|
|
class LocalFile : public File {
|
|
|
|
public:
|
2014-01-24 00:26:00 +00:00
|
|
|
/// @param file_name C string containing the name of the file to be accessed.
|
|
|
|
/// @param mode C string containing a file access mode, refer to fopen for
|
|
|
|
/// the available modes.
|
|
|
|
LocalFile(const char* file_name, const char* mode);
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2014-01-24 00:26:00 +00:00
|
|
|
/// @name File implementation overrides.
|
|
|
|
/// @{
|
2015-07-22 23:40:45 +00:00
|
|
|
bool Close() override;
|
|
|
|
int64_t Read(void* buffer, uint64_t length) override;
|
|
|
|
int64_t Write(const void* buffer, uint64_t length) override;
|
|
|
|
int64_t Size() override;
|
|
|
|
bool Flush() override;
|
|
|
|
bool Seek(uint64_t position) override;
|
|
|
|
bool Tell(uint64_t* position) override;
|
2014-01-24 00:26:00 +00:00
|
|
|
/// @}
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2015-03-11 19:18:17 +00:00
|
|
|
/// Delete a local file.
|
|
|
|
/// @param file_name is the path of the file to be deleted.
|
|
|
|
/// @return true if successful, or false otherwise.
|
|
|
|
static bool Delete(const char* file_name);
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
protected:
|
2015-07-22 23:40:45 +00:00
|
|
|
~LocalFile() override;
|
2014-01-24 00:26:00 +00:00
|
|
|
|
2015-07-22 23:40:45 +00:00
|
|
|
bool Open() override;
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string file_mode_;
|
|
|
|
FILE* internal_file_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(LocalFile);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
#endif // PACKAGER_FILE_LOCAL_FILE_H_
|