[3party] Update protobuf to v4.23.4 #5557

Closed
AndrewShkrob wants to merge 3 commits from 3party/protobuf into master
23 changed files with 11415 additions and 8390 deletions

2
.gitmodules vendored
View file

@ -9,7 +9,7 @@
url = https://github.com/aurelien-rainone/macdeployqtfix.git
[submodule "3party/protobuf/protobuf"]
path = 3party/protobuf/protobuf
url = https://github.com/organicmaps/protobuf.git
url = https://github.com/protocolbuffers/protobuf.git
[submodule "tools/twine"]
path = tools/twine
url = https://github.com/organicmaps/twine.git

View file

@ -1,43 +1,38 @@
project(protobuf)
set(SRC
config.h
protobuf/src/google/protobuf/arena.cc
protobuf/src/google/protobuf/extension_set.cc
protobuf/src/google/protobuf/generated_message_util.cc
protobuf/src/google/protobuf/io/coded_stream.cc
protobuf/src/google/protobuf/io/zero_copy_stream.cc
protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
protobuf/src/google/protobuf/message_lite.cc
protobuf/src/google/protobuf/repeated_field.cc
protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc
protobuf/src/google/protobuf/stubs/bytestream.cc
protobuf/src/google/protobuf/stubs/common.cc
protobuf/src/google/protobuf/stubs/int128.cc
protobuf/src/google/protobuf/stubs/once.cc
protobuf/src/google/protobuf/stubs/status.cc
protobuf/src/google/protobuf/stubs/statusor.cc
protobuf/src/google/protobuf/stubs/stringpiece.cc
protobuf/src/google/protobuf/stubs/stringprintf.cc
protobuf/src/google/protobuf/stubs/structurally_valid.cc
protobuf/src/google/protobuf/stubs/strutil.cc
protobuf/src/google/protobuf/stubs/time.cc
protobuf/src/google/protobuf/wire_format_lite.cc
)
add_library(${PROJECT_NAME} ${SRC})
target_include_directories(${PROJECT_NAME}
PRIVATE . ../../
PUBLIC protobuf/src
)
if(NOT PLATFORM_WIN)
target_compile_definitions(${PROJECT_NAME} PRIVATE HAVE_PTHREAD)
endif ()
target_compile_options(${PROJECT_NAME} PRIVATE
$<$<CXX_COMPILER_ID:AppleClang,Clang>:-Wno-shorten-64-to-32>
$<$<CXX_COMPILER_ID:AppleClang,Clang,GNU>:-Wno-deprecated-declarations>
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wno-sign-compare>
# Disable all compile-time warnings for protobuf
add_compile_options(-w)
# protobuf config
set(protobuf_LIB_NAME libprotobuf-lite)
set(protobuf_VERSION "23.4")
set(protobuf_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/protobuf)
set(protobuf_SHARED_OR_STATIC "STATIC")
set(protobuf_BUILD_TESTS OFF)
set(protobuf_INSTALL OFF)
# abseil
set(ABSL_PROPAGATE_CXX_STD ON)
set(ABSL_ROOT_DIR ${protobuf_SOURCE_DIR}/third_party/abseil-cpp)
include(protobuf/cmake/abseil-cpp.cmake)
# utf8_range
set(utf8_range_ENABLE_TESTS OFF)
set(utf8_range_ENABLE_INSTALL OFF)
add_subdirectory(${protobuf_SOURCE_DIR}/third_party/utf8_range)
include_directories(SYSTEM ${protobuf_SOURCE_DIR}/third_party/utf8_range)
include(protobuf/cmake/${protobuf_LIB_NAME}.cmake)
add_library(${PROJECT_NAME} ALIAS ${protobuf_LIB_NAME})
# Disable Unity build for protobuf
set_target_properties(${protobuf_LIB_NAME} PROPERTIES UNITY_BUILD OFF)
set(ABSL_TARGETS
absl_strings
absl_time
biodranik commented 2023-08-21 18:50:49 +00:00 (Migrated from github.com)
Review

Should we update this file manually next time? What is the process? Does it make sense to document it?

Should we update this file manually next time? What is the process? Does it make sense to document it?
Review

Documenting this can be challenging, as the documentation might become outdated with new releases. Normally, updating the version number should suffice. However, if there are alterations like the addition of a new library or changes in configuration, it will be necessary to carefully examine the modifications and adjust our configuration to match them.

Documenting this can be challenging, as the documentation might become outdated with new releases. Normally, updating the version number should suffice. However, if there are alterations like the addition of a new library or changes in configuration, it will be necessary to carefully examine the modifications and adjust our configuration to match them.
biodranik commented 2023-08-24 22:06:13 +00:00 (Migrated from github.com)
Review

Am I correctly understanding that you have created this file manually to wrap protobuf sources? Why the bundled CMakeLists.txt can't be customized and used via add_subdirectory?

Am I correctly understanding that you have created this file manually to wrap protobuf sources? Why the bundled [CMakeLists.txt](https://github.com/protocolbuffers/protobuf/blob/main/CMakeLists.txt) can't be customized and used via add_subdirectory?
Review

It's not possible because protobuf has conflicting target's name. It was already discussed here: organicmaps/organicmaps#5188 (comment)

It's not possible because protobuf has conflicting target's name. It was already discussed here: https://git.omaps.dev/organicmaps/organicmaps/pulls/5188#issuecomment-1556212319
biodranik commented 2023-08-28 01:17:45 +00:00 (Migrated from github.com)
Review

Thanks for reminding me about that comment. So that is the real reason for creating a copy of CMakeLists.txt manually.

  1. Can FindPackage + alias approach work here instead of add_subdirectory with a manual copy of CMakeLists.txt?
  2. Can a lower, but more recent version than 3.3.0 (without a conflicting base target) be considered instead?

I'm worried about the manual support of upgrading that may lead to errors.

Thanks for reminding me about that comment. So that is the real reason for creating a copy of CMakeLists.txt manually. 1. Can FindPackage + alias approach work here instead of add_subdirectory with a manual copy of CMakeLists.txt? 2. Can a lower, but more recent version than 3.3.0 (without a conflicting `base` target) be considered instead? I'm worried about the manual support of upgrading that may lead to errors.
biodranik commented 2023-08-28 01:28:29 +00:00 (Migrated from github.com)
Review

If I correctly understood, 3.21.9 version (21.x) was building fine, right @Ferenc- ? Was it the latest one without abseil and conflicting targets? organicmaps/organicmaps#3932

If I correctly understood, 3.21.9 version (21.x) was building fine, right @Ferenc- ? Was it the latest one without abseil and conflicting targets? https://git.omaps.dev/organicmaps/organicmaps/pulls/3932
absl_time_zone
)
foreach(target IN LISTS ABSL_TARGETS)
set_target_properties(${target} PROPERTIES UNITY_BUILD OFF)
endforeach()

View file

@ -1,152 +0,0 @@
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */
/* the name of <hash_map> */
#define HASH_MAP_CLASS unordered_map
/* the location of <unordered_map> or <hash_map> */
#define HASH_MAP_H <unordered_map>
/* the namespace of hash_map/hash_set */
#define HASH_NAMESPACE std
/* the name of <hash_set> */
#define HASH_SET_CLASS unordered_set
/* the location of <unordered_set> or <hash_set> */
#define HASH_SET_H <unordered_set>
/* define if the compiler supports basic C++11 syntax */
#define HAVE_CXX11 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the `ftruncate' function. */
#define HAVE_FTRUNCATE 1
/* define if the compiler has hash_map */
#define HAVE_HASH_MAP 1
/* define if the compiler has hash_set */
#define HAVE_HASH_SET 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
#define HAVE_MEMSET 1
/* Define to 1 if you have the `mkdir' function. */
#define HAVE_MKDIR 1
/* Define if you have POSIX threads libraries and header files. */
#define HAVE_PTHREAD 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `strchr' function. */
#define HAVE_STRCHR 1
/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Enable classes using zlib compression. */
#define HAVE_ZLIB 1
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#define LT_OBJDIR ".libs/"
/* Name of package */
#define PACKAGE "protobuf"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "protobuf@googlegroups.com"
/* Define to the full name of this package. */
#define PACKAGE_NAME "Protocol Buffers"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Protocol Buffers 3.3.0"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "protobuf"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "3.3.0"
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
/* #undef PTHREAD_CREATE_JOINABLE */
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# define _ALL_SOURCE 1
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
#endif
/* Enable threading extensions on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# define _POSIX_PTHREAD_SEMANTICS 1
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# define _TANDEM_SOURCE 1
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# define __EXTENSIONS__ 1
#endif
/* Version number of package */
#define VERSION "3.3.0"
/* Define to 1 if on MINIX. */
/* #undef _MINIX */
/* Define to 2 if the system does not provide POSIX.1 features except with
this defined. */
/* #undef _POSIX_1_SOURCE */
/* Define to 1 if you need to in order for `stat' and other things to work. */
/* #undef _POSIX_SOURCE */

@ -1 +1 @@
Subproject commit a6189acd18b00611c1dc7042299ad75486f08a1a
Subproject commit 2c5fa078d8e86e5f4bd34e6f4c9ea9e8d7d4d44a

View file

@ -17,13 +17,10 @@ and ["icons wanted" issues](https://github.com/organicmaps/organicmaps/issues?q=
To work with styles first [clone the OM repository](INSTALL.md#getting-sources).
Review

also makes sense to mention the python >=3.8 requirement here

also makes sense to mention the python >=3.8 requirement here
Install a `protobuf` python package with `pip`
First, you need to install Python 3.8 or a newer version.
Then, use the following command to install the `protobuf` python package using `pip`:
```
pip install protobuf
```
or with your OS package manager, e.g for Ubuntu
```
sudo apt install python3-protobuf
pip3 install -r tools/kothic/requirements.txt
```
To run the `generate_symbols.sh` script install `optipng` also, e.g. for Ubuntu

View file

@ -22,6 +22,10 @@
#include "drape/support_manager.hpp"
#include "drape/utils/projection.hpp"
#if BUILD_DESIGNER
#include "indexer/classificator_loader.hpp"
#endif
#include "indexer/drawing_rules.hpp"
#include "indexer/map_style_reader.hpp"
#include "indexer/scales.hpp"

View file

@ -142,11 +142,6 @@ set(SRC
set(OTHER_FILES drules_struct.proto)
# Disable warnings.
set_source_files_properties(drules_struct.pb.cc PROPERTIES COMPILE_FLAGS
"$<$<CXX_COMPILER_ID:AppleClang,Clang>:-Wno-shorten-64-to-32> $<$<CXX_COMPILER_ID:GNU>:-Wno-deprecated-declarations>"
)
file(COPY ${OTHER_FILES} DESTINATION ${CMAKE_BINARY_DIR})
omim_add_library(${PROJECT_NAME} ${SRC})

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,7 @@ inline uint32_t PatchMinDrawableScale(uint32_t s)
inline uint32_t PatchMaxDrawableScale(uint32_t s)
{
std::min(s + kPatchScaleShift, static_cast<uint32_t>(GetUpperStyleScale()));
return std::min(s + kPatchScaleShift, static_cast<uint32_t>(GetUpperStyleScale()));
}
biodranik commented 2023-08-21 19:00:28 +00:00 (Migrated from github.com)
Review

Should this fix go to the master separately?

Should this fix go to the master separately?
Review

No, it's a fix for designer tool

No, it's a fix for designer tool
biodranik commented 2023-08-24 21:47:13 +00:00 (Migrated from github.com)
Review

It's used in the search/generator and can be merged to master independently. Isn't it UB? @vng

It's used in the search/generator and can be merged to master independently. Isn't it UB? @vng
Review

It's covered with #ifdef BUILD_DESIGNER

It's covered with `#ifdef BUILD_DESIGNER`
#else // BUILD_DESIGNER

View file

@ -8,10 +8,7 @@
#include <QtCore/QDir>
#include <QtCore/QFile>
#include <QtCore/QProcess>
#include <QtCore/QProcessEnvironment>
#include <exception>
#include <iomanip> // std::quoted
#include <regex>
#include <string>
@ -122,8 +119,3 @@ QString GetExternalPath(QString const & name, QString const & primaryPath,
}
return path;
}
QString GetProtobufEggPath()
{
return GetExternalPath("protobuf-3.3.0-py2.7.egg", "kothic", "../3party/protobuf");
}

View file

@ -21,4 +21,3 @@ QString JoinPathQt(std::initializer_list<QString> folders);
QString GetExternalPath(QString const & name, QString const & primaryPath,
QString const & secondaryPath);
QString GetProtobufEggPath();

View file

@ -24,17 +24,13 @@ void BuildDrawingRulesImpl(QString const & mapcssFile, QString const & outputDir
if (QFile(outputFile).exists())
throw std::runtime_error("Output directory is not clear");
// Add path to the protobuf EGG in the PROTOBUF_EGG_PATH environment variable
QProcessEnvironment env{QProcessEnvironment::systemEnvironment()};
env.insert("PROTOBUF_EGG_PATH", GetProtobufEggPath());
// Run the script
(void)ExecProcess("python", {
GetExternalPath("libkomwm.py", "kothic/src", "../tools/kothic/src"),
"-s", mapcssFile,
"-o", outputTemplate,
"-x", "True",
}, &env);
});
// Ensure that generated file is not empty.
if (QFile(outputFile).size() == 0)

View file

@ -22,16 +22,12 @@ QString GetStyleStatistics(QString const & mapcssMappingFile, QString const & dr
if (!QFile(drulesFile).exists())
throw std::runtime_error("drawing-rules file does not exist at " + drulesFile.toStdString());
// Add path to the protobuf EGG in the PROTOBUF_EGG_PATH environment variable.
QProcessEnvironment env{QProcessEnvironment::systemEnvironment()};
env.insert("PROTOBUF_EGG_PATH", GetProtobufEggPath());
// Run the script.
biodranik commented 2023-08-24 22:11:09 +00:00 (Migrated from github.com)
Review

Why EGG was used before?

Why EGG was used before?
Review

This mechanism was employed to assist the designer in scenarios where the Python protobuf dependency might not be present, or to guarantee that the designer is utilizing the same protobuf version as OM.

I endeavored to update it to the current version; however, EGG files have been deprecated in Python, and protobuf no longer offers them.

This mechanism was employed to assist the designer in scenarios where the Python protobuf dependency might not be present, or to guarantee that the designer is utilizing the same protobuf version as OM. I endeavored to update it to the current version; however, EGG files have been deprecated in Python, and protobuf no longer offers them.
biodranik commented 2023-08-28 00:58:21 +00:00 (Migrated from github.com)
Review

Does it mean that Designer won't work after merging this change?

Does it mean that Designer won't work after merging this change?
return ExecProcess("python", {
GetExternalPath("drules_info.py", "kothic/src", "../tools/python/stylesheet"),
mapcssMappingFile,
drulesFile,
}, &env);
});
}
QString GetCurrentStyleStatistics()

View file

@ -241,26 +241,26 @@ int main(int argc, char * argv[])
);
w.show();
returnCode = app.exec();
}
#ifdef BUILD_DESIGNER
if (build_style::NeedRecalculate && !mapcssFilePath.isEmpty())
{
try
if (build_style::NeedRecalculate && !mapcssFilePath.isEmpty())
{
build_style::RunRecalculationGeometryScript(mapcssFilePath);
try
{
build_style::RunRecalculationGeometryScript(mapcssFilePath);
}
catch (std::exception & e)
{
QMessageBox msgBox;
msgBox.setWindowTitle("Error");
msgBox.setText(e.what());
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.setDefaultButton(QMessageBox::Ok);
msgBox.exec();
}
}
catch (std::exception & e)
{
QMessageBox msgBox;
msgBox.setWindowTitle("Error");
msgBox.setText(e.what());
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.setDefaultButton(QMessageBox::Ok);
msgBox.exec();
}
}
#endif // BUILD_DESIGNER
}
LOG_SHORT(LINFO, ("Organic Maps finished with code", returnCode));
return returnCode;

View file

@ -95,7 +95,7 @@ namespace qt
indexRegenCheckBox->setChecked(enabled);
connect(indexRegenCheckBox, &QCheckBox::stateChanged, [](int i)
{
settings::Set(kEnabledAutoRegenGeomIndex, static_cast<bool>(i))
settings::Set(kEnabledAutoRegenGeomIndex, static_cast<bool>(i));
});
}
#endif

File diff suppressed because it is too large Load diff

View file

@ -3,6 +3,7 @@ OMIM_ROOT = $(PROJECT_DIR)/../..
QT_PATH[arch=x86_64] = /usr/local/opt/qt@5
biodranik commented 2023-08-24 22:13:25 +00:00 (Migrated from github.com)
Review

Are abseil-cpp includes required in our case? What features do they provide for the protobuf?

Are abseil-cpp includes required in our case? What features do they provide for the protobuf?
vng commented 2023-08-25 01:54:01 +00:00 (Migrated from github.com)
Review

Probably, we can avoid putting protobuf and dependent stuff here.
Enough to add them to indexer, drape_frontend, map, some tests ..
Where drules_include.hpp is included.

Probably, we can avoid putting protobuf and dependent stuff here. Enough to add them to indexer, drape_frontend, map, some tests .. Where drules_include.hpp is included.
QT_PATH[arch=arm64] = /opt/homebrew/opt/qt@5
BOOST_ROOT = $(OMIM_ROOT)/3party/boost
PROTOBUF_PATHS = $(OMIM_ROOT)/3party/protobuf/protobuf/third_party/abseil-cpp/ $(OMIM_ROOT)/3party/protobuf/protobuf/src
// jansson is included in many libs, and is also used in headers (leaks to other libs)
HEADER_SEARCH_PATHS = $(inherited) $(OMIM_ROOT) $(BOOST_ROOT) $(OMIM_ROOT)/3party/jansson $(OMIM_ROOT)/3party/jansson/jansson/src

View file

@ -999,6 +999,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
@ -1007,6 +1011,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
biodranik commented 2023-08-21 18:59:25 +00:00 (Migrated from github.com)
Review

ditto

ditto
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;

View file

@ -1093,6 +1093,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
@ -1101,6 +1105,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;

View file

@ -787,6 +787,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
);
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "-Wno-deprecated-register ";
};
@ -796,6 +800,10 @@
isa = XCBuildConfiguration;
buildSettings = {
EXECUTABLE_PREFIX = lib;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"${PROTOBUF_PATHS}",
biodranik commented 2023-08-21 18:59:35 +00:00 (Migrated from github.com)
Review

ditto

ditto
);
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "-Wno-deprecated-register ";
};

File diff suppressed because it is too large Load diff