Sha256: bcc5438e7b11918bfe5335cf8c3da16510ce4baad6da14e4c30e0fb03fd286f3

Contents?: true

Size: 1.57 KB

Versions: 44

Compression:

Stored size: 1.57 KB

Contents

// Copyright 2022 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <grpc/support/port_platform.h>

#include "src/core/lib/gprpp/tchar.h"

#ifdef GPR_WINDOWS

namespace grpc_core {

#if defined UNICODE || defined _UNICODE
TcharString CharToTchar(std::string input) {
  int needed = MultiByteToWideChar(CP_UTF8, 0, input.c_str(), -1, NULL, 0);
  if (needed <= 0) return TcharString();
  TcharString ret(needed, L'\0');
  MultiByteToWideChar(CP_UTF8, 0, input.c_str(), -1,
                      const_cast<LPTSTR>(ret.data()), needed);
  return ret;
}

std::string TcharToChar(TcharString input) {
  int needed =
      WideCharToMultiByte(CP_UTF8, 0, input.c_str(), -1, NULL, 0, NULL, NULL);
  if (needed <= 0) return std::string();
  std::string ret(needed, '\0');
  WideCharToMultiByte(CP_UTF8, 0, input.c_str(), -1,
                      const_cast<LPSTR>(ret.data()), needed, NULL, NULL);
  return ret;
}
#else
TcharString CharToTchar(std::string input) { return input; }
std::string TcharToChar(TcharString input) { return input; }
#endif

}  // namespace grpc_core

#endif

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
grpc-1.58.3 src/core/lib/gprpp/tchar.cc
grpc-1.59.5 src/core/lib/gprpp/tchar.cc
grpc-1.60.2 src/core/lib/gprpp/tchar.cc
grpc-1.61.3 src/core/lib/gprpp/tchar.cc
grpc-1.62.3 src/core/lib/gprpp/tchar.cc
grpc-1.63.2 src/core/lib/gprpp/tchar.cc
grpc-1.63.0 src/core/lib/gprpp/tchar.cc
grpc-1.62.0 src/core/lib/gprpp/tchar.cc
grpc-1.62.0.pre1 src/core/lib/gprpp/tchar.cc
grpc-1.61.0 src/core/lib/gprpp/tchar.cc
grpc-1.61.0.pre2 src/core/lib/gprpp/tchar.cc
grpc-1.60.0 src/core/lib/gprpp/tchar.cc
grpc-1.60.0.pre1 src/core/lib/gprpp/tchar.cc
grpc-1.59.2 src/core/lib/gprpp/tchar.cc
grpc-1.59.0 src/core/lib/gprpp/tchar.cc
grpc-1.58.0 src/core/lib/gprpp/tchar.cc
grpc-1.58.0.pre1 src/core/lib/gprpp/tchar.cc
grpc-1.57.0 src/core/lib/gprpp/tchar.cc
grpc-1.54.3 src/core/lib/gprpp/tchar.cc
grpc-1.53.2 src/core/lib/gprpp/tchar.cc