[3party] Update protobuf to v24.4
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
This commit is contained in:
parent
aa18b61195
commit
0cbb3c65a7
21 changed files with 3019 additions and 322 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -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
|
||||
|
|
|
@ -1,43 +1,33 @@
|
|||
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
|
||||
)
|
||||
# protobuf config
|
||||
set(protobuf_LIB_NAME libprotobuf-lite)
|
||||
set(protobuf_VERSION "24.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)
|
||||
|
||||
add_library(${PROJECT_NAME} ${SRC})
|
||||
# abseil
|
||||
set(ABSL_PROPAGATE_CXX_STD OFF)
|
||||
set(ABSL_ENABLE_INSTALL OFF)
|
||||
set(ABSL_FIND_GOOGLETEST OFF)
|
||||
set(ABSL_ROOT_DIR ${protobuf_SOURCE_DIR}/third_party/abseil-cpp)
|
||||
include(protobuf/cmake/abseil-cpp.cmake)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PRIVATE . ../../
|
||||
PUBLIC protobuf/src
|
||||
)
|
||||
# utf8_range
|
||||
set(utf8_range_ENABLE_TESTS OFF)
|
||||
set(utf8_range_ENABLE_INSTALL OFF)
|
||||
add_subdirectory(${protobuf_SOURCE_DIR}/third_party/utf8_range)
|
||||
|
||||
if(NOT PLATFORM_WIN)
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE HAVE_PTHREAD)
|
||||
endif ()
|
||||
include(protobuf/cmake/${protobuf_LIB_NAME}.cmake)
|
||||
|
||||
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>
|
||||
)
|
||||
add_library(${PROJECT_NAME} ALIAS ${protobuf_LIB_NAME})
|
||||
target_include_directories(${protobuf_LIB_NAME} PRIVATE ${protobuf_SOURCE_DIR}/third_party/utf8_range)
|
||||
|
||||
# Disable Unity build for protobuf because macro in port_def.inc do not have include guard.
|
||||
set_target_properties(${protobuf_LIB_NAME} PROPERTIES UNITY_BUILD OFF)
|
||||
# Disable unity build to avoid name clashes in abseil.
|
||||
set_target_properties(absl_strings PROPERTIES UNITY_BUILD OFF)
|
||||
set_target_properties(absl_time PROPERTIES UNITY_BUILD OFF)
|
||||
set_target_properties(absl_time_zone PROPERTIES UNITY_BUILD OFF)
|
||||
|
|
|
@ -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 7789b3ac85248ad75631a1919071fa268e466210
|
Binary file not shown.
|
@ -19,13 +19,10 @@ An overview of currently used icons can be found in the [Wiki](https://github.co
|
|||
|
||||
To work with styles first [clone the OM repository](INSTALL.md#getting-sources).
|
||||
|
||||
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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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})
|
||||
|
|
|
@ -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()));
|
||||
}
|
||||
|
||||
#else // BUILD_DESIGNER
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
|
|
@ -21,4 +21,3 @@ QString JoinPathQt(std::initializer_list<QString> folders);
|
|||
|
||||
QString GetExternalPath(QString const & name, QString const & primaryPath,
|
||||
QString const & secondaryPath);
|
||||
QString GetProtobufEggPath();
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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.
|
||||
return ExecProcess("python", {
|
||||
GetExternalPath("drules_info.py", "kothic/src", "../tools/python/stylesheet"),
|
||||
mapcssMappingFile,
|
||||
drulesFile,
|
||||
}, &env);
|
||||
});
|
||||
}
|
||||
|
||||
QString GetCurrentStyleStatistics()
|
||||
|
|
30
qt/main.cpp
30
qt/main.cpp
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
5
tools/python/stylesheet/README.md
Normal file
5
tools/python/stylesheet/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Command to regenerate tools/python/stylesheet/drules_struct_pb2.py
|
||||
|
||||
```
|
||||
protoc --proto_path=indexer --python_out=tools/python/stylesheet indexer/drules_struct.proto
|
||||
```
|
|
@ -3,6 +3,7 @@ OMIM_ROOT = $(PROJECT_DIR)/../..
|
|||
QT_PATH[arch=x86_64] = /usr/local/opt/qt@5
|
||||
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
|
||||
|
|
|
@ -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;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"${PROTOBUF_PATHS}",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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}",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
WARNING_CFLAGS = "-Wno-deprecated-register ";
|
||||
};
|
||||
|
|
File diff suppressed because it is too large
Load diff
Reference in a new issue