| Index: ppapi/shared_impl/flash_clipboard_format_registry.cc
|
| diff --git a/ppapi/shared_impl/flash_clipboard_format_registry.cc b/ppapi/shared_impl/flash_clipboard_format_registry.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ed6e9062ff23c0ee1f8e3acf5a8f48f694f81105
|
| --- /dev/null
|
| +++ b/ppapi/shared_impl/flash_clipboard_format_registry.cc
|
| @@ -0,0 +1,93 @@
|
| +#include "ppapi/shared_impl/flash_clipboard_format_registry.h"
|
| +
|
| +#include <cctype>
|
| +
|
| +namespace ppapi {
|
| +
|
| +namespace {
|
| +// These values are chosen arbitrarily. Flash will never exceed these but if
|
| +// the interface becomes public, we can reconsider these.
|
| +const size_t kMaxNumFormats = 10;
|
| +const size_t kMaxFormatNameLength = 50;
|
| +
|
| +// All formats in PP_Flash_Clipboard_Format should be added here.
|
| +const PP_Flash_Clipboard_Format kPredefinedFormats[] = {
|
| + PP_FLASH_CLIPBOARD_FORMAT_INVALID,
|
| + PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT,
|
| + PP_FLASH_CLIPBOARD_FORMAT_HTML,
|
| + PP_FLASH_CLIPBOARD_FORMAT_RTF
|
| +};
|
| +
|
| +// The first custom format ID will be the ID after that max value in
|
| +// PP_Flash_Clipboard_Format.
|
| +const size_t kFirstCustomFormat =
|
| + sizeof(kPredefinedFormats) / sizeof(kPredefinedFormats[0]);
|
| +
|
| +// Checks the validity of the given format name.
|
| +bool IsValidFormatName(const std::string& format_name) {
|
| + if (format_name.length() == 0 || format_name.length() > kMaxFormatNameLength)
|
| + return false;
|
| + return true;
|
| +}
|
| +
|
| +} // namespace
|
| +
|
| +FlashClipboardFormatRegistry::FlashClipboardFormatRegistry() {
|
| + custom_formats_.resize(kFirstCustomFormat);
|
| +}
|
| +
|
| +FlashClipboardFormatRegistry::~FlashClipboardFormatRegistry() {
|
| +}
|
| +
|
| +uint32_t FlashClipboardFormatRegistry::RegisterFormat(
|
| + const std::string& format_name) {
|
| + if (!IsValidFormatName(format_name) ||
|
| + custom_formats_.size() > kMaxNumFormats) {
|
| + return PP_FLASH_CLIPBOARD_FORMAT_INVALID;
|
| + }
|
| + custom_formats_.push_back(format_name);
|
| + return custom_formats_.size() - 1;
|
| +}
|
| +
|
| +void FlashClipboardFormatRegistry::SetRegisteredFormat(
|
| + const std::string& format_name,
|
| + uint32_t format) {
|
| + if (format >= custom_formats_.size())
|
| + custom_formats_.resize(format + 1);
|
| + custom_formats_[format] = format_name;
|
| +}
|
| +
|
| +bool FlashClipboardFormatRegistry::IsFormatRegistered(uint32_t format) {
|
| + return format >= kFirstCustomFormat && format < custom_formats_.size();
|
| +}
|
| +
|
| +std::string FlashClipboardFormatRegistry::GetFormatName(uint32_t format) {
|
| + if (format >= kFirstCustomFormat && format < custom_formats_.size())
|
| + return custom_formats_[format];
|
| + return std::string();
|
| +}
|
| +
|
| +uint32_t FlashClipboardFormatRegistry::GetFormatID(
|
| + const std::string& format_name) {
|
| + for (size_t i = kFirstCustomFormat; i < custom_formats_.size(); ++i) {
|
| + if (custom_formats_[i] == format_name)
|
| + return i;
|
| + }
|
| + return PP_FLASH_CLIPBOARD_FORMAT_INVALID;
|
| +}
|
| +
|
| +// static
|
| +bool FlashClipboardFormatRegistry::IsValidClipboardType(
|
| + PP_Flash_Clipboard_Type type) {
|
| + return type == PP_FLASH_CLIPBOARD_TYPE_STANDARD ||
|
| + type == PP_FLASH_CLIPBOARD_TYPE_SELECTION;
|
| +}
|
| +
|
| +// static
|
| +bool FlashClipboardFormatRegistry::IsValidPredefinedFormat(uint32_t format) {
|
| + if (format == PP_FLASH_CLIPBOARD_FORMAT_INVALID)
|
| + return false;
|
| + return format < kFirstCustomFormat;
|
| +}
|
| +
|
| +} // ppapi
|
|
|