// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ppapi/c/pp_var.h" #include "ppapi/shared_impl/char_set_impl.h" #include "ppapi/thunk/thunk.h" #include "ppapi/thunk/enter.h" namespace ppapi { namespace thunk { namespace { char* UTF16ToCharSet(PP_Instance instance, const uint16_t* utf16, uint32_t utf16_len, const char* output_char_set, PP_CharSet_ConversionError on_error, uint32_t* output_length) { // This interface is a bit odd because it contains a function // (GetDefaultCharSet) that must be called on the instance object and // proxied, but the rest of the functions are implemented in the plugin // process by just calling base functions. // // We could have PPB_Instance_API functions for the two charset conversion // functions, and then have the instance impl and proxy call through to the // shared_impl. That would be more consistent, and we may want to do that if // this file is autogenerated in the future. For now, however, it's less code // to just call the shared_impl code directly here. // We validate the instance just to make sure we can make changes in the // future and assume people pass proper instances. EnterInstance enter(instance); if (enter.failed()) return NULL; return CharSetImpl::UTF16ToCharSet(utf16, utf16_len, output_char_set, on_error, output_length); } uint16_t* CharSetToUTF16(PP_Instance instance, const char* input, uint32_t input_len, const char* input_char_set, PP_CharSet_ConversionError on_error, uint32_t* output_length) { // We validate the instance just to make sure we can make changes in the // future and assume people pass proper instances. EnterInstance enter(instance); if (enter.failed()) return NULL; return CharSetImpl::CharSetToUTF16(input, input_len, input_char_set, on_error, output_length); } PP_Var GetDefaultCharSet(PP_Instance instance) { EnterInstance enter(instance); if (enter.failed()) return PP_MakeUndefined(); return enter.functions()->GetDefaultCharSet(instance); } const PPB_CharSet_Dev g_ppb_char_set_thunk = { &UTF16ToCharSet, &CharSetToUTF16, &GetDefaultCharSet }; } // namespace const PPB_CharSet_Dev* GetPPB_CharSet_Dev_Thunk() { return &g_ppb_char_set_thunk; } } // namespace thunk } // namespace ppapi