Merge from Widevine repo of http://go/wvgerrit/46204 Refactor utility code - split the mock, step 1 Merge from Widevine repo of http://go/wvgerrit/46205 Move some OEMCrypto types to common header - split the mock, step 2 Merge from Widevine repo of http://go/wvgerrit/46206 Split mock into two -- step 3 Merge from Widevine repo of http://go/wvgerrit/47460 Split the mock into two -- step 3.5 The CL moves several files used by oemcrypto and cdm into a common subdirectory, so that it may more easily be shared with partners. The CORE_DISALLOW_COPY_AND_ASSIGN macro was moved to its own header in the util/include directory. This CL removes some references to the mock from other code, and puts some constants and types, such as the definition of the keybox, into a header in oemcrypto. Test: tested as part of http://go/ag/4674759 bug: 76393338 Change-Id: I75b4bde7062ed8ee572c97ebc2f4da018f4be0c9
81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
// Copyright 2013 Google Inc. All Rights Reserved.
|
|
//
|
|
// File - Platform independent interface for a File class
|
|
//
|
|
#ifndef WVCDM_UTIL_FILE_STORE_H_
|
|
#define WVCDM_UTIL_FILE_STORE_H_
|
|
|
|
#include <unistd.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "disallow_copy_and_assign.h"
|
|
|
|
namespace wvcdm {
|
|
|
|
// File class. The implementation is platform dependent.
|
|
class File {
|
|
public:
|
|
virtual ssize_t Read(char* buffer, size_t bytes);
|
|
virtual ssize_t Write(const char* buffer, size_t bytes);
|
|
virtual void Close();
|
|
|
|
protected:
|
|
class Impl;
|
|
|
|
File(Impl*);
|
|
virtual ~File();
|
|
|
|
private:
|
|
Impl* impl_;
|
|
|
|
friend class FileSystem;
|
|
CORE_DISALLOW_COPY_AND_ASSIGN(File);
|
|
};
|
|
|
|
class FileSystem {
|
|
public:
|
|
class Impl;
|
|
|
|
// defines as bit flag
|
|
enum OpenFlags {
|
|
kNoFlags = 0,
|
|
kCreate = 1,
|
|
kReadOnly = 2, // defaults to read and write access
|
|
kTruncate = 4
|
|
};
|
|
|
|
FileSystem();
|
|
FileSystem(const std::string& origin, void* extra_data);
|
|
virtual ~FileSystem();
|
|
|
|
virtual File* Open(const std::string& file_path, int flags);
|
|
|
|
virtual bool Exists(const std::string& file_path);
|
|
virtual bool Remove(const std::string& file_path);
|
|
virtual ssize_t FileSize(const std::string& file_path);
|
|
|
|
// Return the filenames stored at dir_path.
|
|
// dir_path will be stripped from the returned names.
|
|
virtual bool List(const std::string& dir_path,
|
|
std::vector<std::string>* names);
|
|
|
|
const std::string& origin() const { return origin_; }
|
|
void SetOrigin(const std::string& origin);
|
|
|
|
const std::string& identifier() const { return identifier_; }
|
|
void SetIdentifier(const std::string& identifier);
|
|
bool IsGlobal() const { return identifier_.empty(); }
|
|
|
|
private:
|
|
Impl* impl_;
|
|
std::string origin_;
|
|
std::string identifier_;
|
|
|
|
CORE_DISALLOW_COPY_AND_ASSIGN(FileSystem);
|
|
};
|
|
|
|
} // namespace wvcdm
|
|
|
|
#endif // WVCDM_UTIL_FILE_STORE_H_
|