file_util.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #include "code_generator.h"
  17. void CodeGenerator::makeUTF8File(const string& sFileName, const string& sFileContent)
  18. {
  19. try {
  20. string sData = TC_Encoder::gbk2utf8(sFileContent);
  21. TC_File::save2file(sFileName, sData.c_str());
  22. } catch (...) {
  23. cout << "Convert GBK to UTF8 failed, current encoding is GBK.";
  24. TC_File::save2file(sFileName, sFileContent.c_str());
  25. }
  26. }
  27. string CodeGenerator::getRealFileInfo(const string& sPath)
  28. {
  29. return TC_File::extractFilePath(sPath) + TC_File::excludeFileExt(TC_File::extractFileName(sPath)) + "." + TC_Common::lower(IDL_TYPE);
  30. }