2015-01-20 08:39:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef GMPUtils_h_
|
|
|
|
#define GMPUtils_h_
|
|
|
|
|
|
|
|
#include "mozilla/UniquePtr.h"
|
2015-08-11 01:27:41 +03:00
|
|
|
#include "nsTArray.h"
|
2015-11-27 00:53:17 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2016-02-09 04:37:22 +03:00
|
|
|
#include "nsClassHashtable.h"
|
2015-01-20 08:39:00 +03:00
|
|
|
|
2015-05-29 05:07:22 +03:00
|
|
|
class nsIFile;
|
2015-08-11 01:27:41 +03:00
|
|
|
class nsCString;
|
2015-11-27 00:53:17 +03:00
|
|
|
class nsISimpleEnumerator;
|
2015-05-29 05:07:22 +03:00
|
|
|
|
2015-01-20 08:39:00 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct DestroyPolicy
|
|
|
|
{
|
|
|
|
void operator()(T* aGMPObject) const {
|
|
|
|
aGMPObject->Destroy();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
2015-04-17 19:43:18 +03:00
|
|
|
using GMPUniquePtr = mozilla::UniquePtr<T, DestroyPolicy<T>>;
|
2015-01-20 08:39:00 +03:00
|
|
|
|
2015-08-11 01:27:41 +03:00
|
|
|
void
|
|
|
|
SplitAt(const char* aDelims,
|
|
|
|
const nsACString& aInput,
|
|
|
|
nsTArray<nsCString>& aOutTokens);
|
|
|
|
|
2015-08-14 10:18:19 +03:00
|
|
|
nsCString
|
2016-12-21 00:37:09 +03:00
|
|
|
ToHexString(const nsTArray<uint8_t>& aBytes);
|
2016-12-20 23:54:20 +03:00
|
|
|
|
2016-12-21 00:37:09 +03:00
|
|
|
nsCString
|
2016-12-20 23:54:20 +03:00
|
|
|
ToHexString(const uint8_t* aBytes, uint32_t aLength);
|
|
|
|
|
2015-10-14 02:18:06 +03:00
|
|
|
bool
|
|
|
|
FileExists(nsIFile* aFile);
|
|
|
|
|
2015-11-27 00:53:17 +03:00
|
|
|
// Enumerate directory entries for a specified path.
|
|
|
|
class DirectoryEnumerator {
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum Mode {
|
|
|
|
DirsOnly, // Enumeration only includes directories.
|
|
|
|
FilesAndDirs // Enumeration includes directories and non-directory files.
|
|
|
|
};
|
|
|
|
|
|
|
|
DirectoryEnumerator(nsIFile* aPath, Mode aMode);
|
|
|
|
|
|
|
|
already_AddRefed<nsIFile> Next();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Mode mMode;
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> mIter;
|
|
|
|
};
|
|
|
|
|
2016-02-09 04:37:22 +03:00
|
|
|
class GMPInfoFileParser {
|
|
|
|
public:
|
|
|
|
bool Init(nsIFile* aFile);
|
|
|
|
bool Contains(const nsCString& aKey) const;
|
|
|
|
nsCString Get(const nsCString& aKey) const;
|
|
|
|
private:
|
|
|
|
nsClassHashtable<nsCStringHashKey, nsCString> mValues;
|
|
|
|
};
|
|
|
|
|
2016-04-12 07:12:21 +03:00
|
|
|
bool
|
|
|
|
ReadIntoString(nsIFile* aFile,
|
|
|
|
nsCString& aOutDst,
|
|
|
|
size_t aMaxLength);
|
|
|
|
|
2016-11-03 04:33:31 +03:00
|
|
|
bool
|
|
|
|
HaveGMPFor(const nsCString& aAPI,
|
|
|
|
nsTArray<nsCString>&& aTags);
|
|
|
|
|
2015-01-20 08:39:00 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|