grpc 1.28.0 → 1.30.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +7694 -11190
- data/include/grpc/grpc.h +2 -2
- data/include/grpc/grpc_security.h +30 -9
- data/include/grpc/grpc_security_constants.h +1 -0
- data/include/grpc/impl/codegen/grpc_types.h +19 -21
- data/include/grpc/impl/codegen/port_platform.h +6 -2
- data/include/grpc/module.modulemap +24 -39
- data/src/core/ext/filters/client_channel/backend_metric.cc +7 -4
- data/src/core/ext/filters/client_channel/client_channel.cc +212 -241
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +7 -22
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +17 -10
- data/src/core/ext/filters/client_channel/lb_policy.cc +19 -18
- data/src/core/ext/filters/client_channel/lb_policy.h +42 -33
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +10 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +240 -301
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +5 -11
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +84 -37
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +6 -2
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
- data/src/core/ext/filters/client_channel/parse_address.cc +22 -21
- data/src/core/ext/filters/client_channel/resolver.cc +5 -8
- data/src/core/ext/filters/client_channel/resolver.h +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +73 -59
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +35 -35
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +16 -20
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +72 -117
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +184 -133
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +7 -4
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +40 -43
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +93 -102
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +0 -4
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +32 -5
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -3
- data/src/core/ext/filters/client_channel/resolver_registry.h +8 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +16 -16
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +19 -16
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +20 -31
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +4 -3
- data/src/core/ext/filters/client_channel/server_address.cc +6 -9
- data/src/core/ext/filters/client_channel/server_address.h +6 -12
- data/src/core/ext/filters/client_channel/service_config.cc +104 -144
- data/src/core/ext/filters/client_channel/service_config.h +28 -98
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +54 -24
- data/src/core/ext/filters/client_channel/subchannel.h +35 -11
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +348 -221
- data/src/core/ext/filters/client_channel/xds/xds_api.h +37 -37
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +44 -49
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +4 -3
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +4 -2
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +532 -339
- data/src/core/ext/filters/client_channel/xds/xds_client.h +57 -22
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +11 -12
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +31 -19
- data/src/core/ext/filters/http/client/http_client_filter.cc +23 -28
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +27 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +7 -10
- data/src/core/ext/filters/message_size/message_size_filter.h +4 -4
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +23 -22
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +14 -21
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +15 -8
- data/src/core/ext/transport/inproc/inproc_transport.cc +19 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +4 -229
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +5 -875
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +21 -8
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +43 -7
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +47 -26
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +115 -65
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +24 -20
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +28 -13
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +38 -18
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +88 -6
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +9 -6
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +15 -10
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +16 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +63 -41
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +173 -77
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +48 -28
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +90 -30
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +4 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +16 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +1 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +9 -8
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +30 -24
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +21 -20
- data/src/core/ext/upb-generated/validate/validate.upb.h +69 -63
- data/src/core/lib/channel/channel_args.cc +15 -14
- data/src/core/lib/channel/channel_args.h +3 -1
- data/src/core/lib/channel/channel_stack.h +20 -13
- data/src/core/lib/channel/channelz.cc +5 -6
- data/src/core/lib/channel/channelz.h +3 -2
- data/src/core/lib/channel/channelz_registry.cc +5 -3
- data/src/core/lib/channel/connected_channel.cc +7 -5
- data/src/core/lib/channel/context.h +1 -1
- data/src/core/lib/channel/handshaker.cc +11 -13
- data/src/core/lib/channel/handshaker.h +4 -2
- data/src/core/lib/channel/handshaker_registry.cc +5 -17
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/message_compress.cc +5 -1
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +2 -26
- data/src/core/lib/gpr/string.h +0 -16
- data/src/core/lib/gpr/sync_abseil.cc +2 -0
- data/src/core/lib/gpr/time.cc +4 -0
- data/src/core/lib/gpr/time_posix.cc +1 -1
- data/src/core/lib/gprpp/atomic.h +6 -6
- data/src/core/lib/gprpp/fork.cc +1 -1
- data/src/core/lib/gprpp/host_port.cc +29 -35
- data/src/core/lib/gprpp/host_port.h +14 -17
- data/src/core/lib/gprpp/map.h +5 -11
- data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +2 -3
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +5 -5
- data/src/core/lib/http/parser.h +2 -3
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +3 -2
- data/src/core/lib/iomgr/cfstream_handle.cc +3 -2
- data/src/core/lib/iomgr/closure.h +2 -3
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -3
- data/src/core/lib/iomgr/endpoint_pair.h +2 -3
- data/src/core/lib/iomgr/error.cc +6 -9
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -23
- data/src/core/lib/iomgr/ev_epollex_linux.cc +2 -3
- data/src/core/lib/iomgr/ev_poll_posix.cc +3 -3
- data/src/core/lib/iomgr/ev_posix.cc +2 -3
- data/src/core/lib/iomgr/exec_ctx.h +14 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -20
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/{gprpp/optional.h → iomgr/pollset_uv.h} +11 -12
- data/src/core/lib/iomgr/port.h +1 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +29 -39
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +10 -11
- data/src/core/lib/iomgr/resolve_address_windows.cc +8 -17
- data/src/core/lib/iomgr/resource_quota.cc +4 -6
- data/src/core/lib/iomgr/sockaddr_utils.cc +23 -29
- data/src/core/lib/iomgr/sockaddr_utils.h +9 -14
- data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +2 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +7 -26
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -7
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -5
- data/src/core/lib/iomgr/tcp_client_windows.cc +2 -3
- data/src/core/lib/iomgr/tcp_custom.cc +2 -3
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -9
- data/src/core/lib/iomgr/tcp_server_posix.cc +5 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +8 -11
- data/src/core/lib/iomgr/tcp_uv.cc +3 -2
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +2 -3
- data/src/core/lib/{gprpp/inlined_vector.h → iomgr/timer_generic.h} +19 -17
- data/src/core/lib/iomgr/timer_heap.h +2 -3
- data/src/core/lib/iomgr/udp_server.cc +9 -14
- data/src/core/lib/json/json.h +3 -2
- data/src/core/lib/json/json_reader.cc +5 -5
- data/src/core/lib/json/json_writer.cc +13 -12
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +12 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +6 -3
- data/src/core/lib/security/credentials/credentials.cc +0 -84
- data/src/core/lib/security/credentials/credentials.h +8 -59
- data/src/core/lib/security/credentials/fake/fake_credentials.h +4 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +3 -8
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -5
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +8 -15
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +55 -27
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +9 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +13 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +38 -11
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +21 -6
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +7 -7
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +3 -2
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +20 -25
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -6
- data/src/core/lib/security/security_connector/ssl_utils.cc +59 -12
- data/src/core/lib/security/security_connector/ssl_utils.h +12 -10
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +77 -51
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +27 -5
- data/src/core/lib/security/transport/auth_filters.h +0 -5
- data/src/core/lib/security/transport/client_auth_filter.cc +1 -2
- data/src/core/lib/slice/slice_intern.cc +2 -3
- data/src/core/lib/slice/slice_internal.h +14 -0
- data/src/core/lib/slice/slice_utils.h +9 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
- data/src/core/lib/surface/call.cc +2 -3
- data/src/core/lib/surface/call_log_batch.cc +50 -58
- data/src/core/lib/surface/channel.cc +53 -31
- data/src/core/lib/surface/channel.h +35 -4
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/completion_queue.cc +33 -33
- data/src/core/lib/surface/event_string.cc +18 -25
- data/src/core/lib/surface/event_string.h +3 -1
- data/src/core/lib/surface/init_secure.cc +1 -4
- data/src/core/lib/surface/server.cc +570 -369
- data/src/core/lib/surface/server.h +32 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.h +7 -2
- data/src/core/lib/transport/connectivity_state.cc +7 -6
- data/src/core/lib/transport/connectivity_state.h +5 -3
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.h +2 -3
- data/src/core/lib/transport/static_metadata.h +1 -1
- data/src/core/lib/transport/status_conversion.cc +6 -14
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +3 -2
- data/src/core/lib/transport/transport_op_string.cc +61 -102
- data/src/core/lib/uri/uri_parser.h +2 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +20 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +8 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +32 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/fake_transport_security.cc +10 -15
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +0 -2
- data/src/core/tsi/ssl_transport_security.cc +52 -39
- data/src/core/tsi/ssl_transport_security.h +8 -8
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.h +6 -9
- data/src/core/tsi/transport_security_grpc.h +2 -3
- data/src/core/tsi/transport_security_interface.h +3 -3
- data/src/ruby/ext/grpc/rb_call.c +9 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +3 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/errors.rb +103 -42
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/interceptors.rb +4 -4
- data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
- data/src/ruby/lib/grpc/generic/service.rb +5 -4
- data/src/ruby/lib/grpc/structs.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +11 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +7 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +7 -1
- data/src/ruby/spec/support/services.rb +10 -4
- data/src/ruby/spec/testdata/ca.pem +18 -13
- data/src/ruby/spec/testdata/client.key +26 -14
- data/src/ruby/spec/testdata/client.pem +18 -12
- data/src/ruby/spec/testdata/server1.key +26 -14
- data/src/ruby/spec/testdata/server1.pem +20 -14
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/boringssl-with-bazel/err_data.c +329 -297
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +7 -5
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +13 -4
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519.c +18 -26
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519_tables.h +13 -21
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/internal.h +14 -22
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +33 -32
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +14 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +30 -154
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +289 -117
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +13 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +96 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +25 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +432 -160
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +63 -71
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9481 -9485
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +80 -99
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +90 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +125 -148
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +189 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +61 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +20 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +41 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +32 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +24 -114
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +51 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +44 -35
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +29 -12
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +6 -10
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +4 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +20 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +3 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +31 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +26 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +172 -77
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +5 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +1 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +3 -3
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -4
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +146 -57
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +14 -3
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +28 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +12 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +64 -47
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +10 -10
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -21
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +29 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +6 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +13 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +64 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +6 -2
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +47 -53
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +98 -27
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +23 -75
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +50 -20
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +63 -25
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +245 -175
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +135 -75
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1593 -1672
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +512 -503
- metadata +115 -39
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1754
- data/src/core/lib/gprpp/string_view.h +0 -60
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3311
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256.c +0 -1063
@@ -1,15 +1,20 @@
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
+
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
2
|
+
MIIDWjCCAkKgAwIBAgIUWrP0VvHcy+LP6UuYNtiL9gBhD5owDQYJKoZIhvcNAQEL
|
3
|
+
BQAwVjELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM
|
4
|
+
GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDEPMA0GA1UEAwwGdGVzdGNhMB4XDTIw
|
5
|
+
MDMxNzE4NTk1MVoXDTMwMDMxNTE4NTk1MVowVjELMAkGA1UEBhMCQVUxEzARBgNV
|
6
|
+
BAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0
|
7
|
+
ZDEPMA0GA1UEAwwGdGVzdGNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
|
8
|
+
AQEAsGL0oXflF0LzoM+Bh+qUU9yhqzw2w8OOX5mu/iNCyUOBrqaHi7mGHx73GD01
|
9
|
+
diNzCzvlcQqdNIH6NQSL7DTpBjca66jYT9u73vZe2MDrr1nVbuLvfu9850cdxiUO
|
10
|
+
Inv5xf8+sTHG0C+a+VAvMhsLiRjsq+lXKRJyk5zkbbsETybqpxoJ+K7CoSy3yc/k
|
11
|
+
QIY3TipwEtwkKP4hzyo6KiGd/DPexie4nBUInN3bS1BUeNZ5zeaIC2eg3bkeeW7c
|
12
|
+
qT55b+Yen6CxY0TEkzBK6AKt/WUialKMgT0wbTxRZO7kUCH3Sq6e/wXeFdJ+HvdV
|
13
|
+
LPlAg5TnMaNpRdQih/8nRFpsdwIDAQABoyAwHjAMBgNVHRMEBTADAQH/MA4GA1Ud
|
14
|
+
DwEB/wQEAwICBDANBgkqhkiG9w0BAQsFAAOCAQEAkTrKZjBrJXHps/HrjNCFPb5a
|
15
|
+
THuGPCSsepe1wkKdSp1h4HGRpLoCgcLysCJ5hZhRpHkRihhef+rFHEe60UePQO3S
|
16
|
+
CVTtdJB4CYWpcNyXOdqefrbJW5QNljxgi6Fhvs7JJkBqdXIkWXtFk2eRgOIP2Eo9
|
17
|
+
/OHQHlYnwZFrk6sp4wPyR+A95S0toZBcyDVz7u+hOW0pGK3wviOe9lvRgj/H3Pwt
|
18
|
+
bewb0l+MhRig0/DVHamyVxrDRbqInU1/GTNCwcZkXKYFWSf92U+kIcTth24Q1gcw
|
19
|
+
eZiLl5FfrWokUNytFElXob0V0a5/kbhiLc3yWmvWqHTpqCALbVyF+rKJo2f5Kw==
|
15
20
|
-----END CERTIFICATE-----
|
@@ -1,16 +1,28 @@
|
|
1
1
|
-----BEGIN PRIVATE KEY-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCyqYRp+DXVp72N
|
3
|
+
FbQH8hdhTZLycZXOlJhmMsrJmrjn2p7pI/8mTZ/0FC+SGWBGZV+ELiHrmCX5zfaI
|
4
|
+
Lr9Iuw7Ghr3Vzoefi8r62rLupVPNi/qdqyjWk2dECHC9Z3+Ag3KzKTyerXWjKcvy
|
5
|
+
KVmM0ZxE0RXhDW/RoQbqZsU2GKg1B2rhUU8KN0gVmKn0rJHOxzRVSYeYLYp5Yn7K
|
6
|
+
rtPJcKyo9aVuEr7dGANzpyF6lg/nYBWc+9SGwkoLdFvKvABYJMyrbNhHUQfv0fza
|
7
|
+
Z0P86dfTENrDxzALrzGnqcx3KTrwJjkZ/aSr1tyD0/tXvukRFiPxWBJhjHQ70GqT
|
8
|
+
FQY19RbhAgMBAAECggEAIL8JUhL4awyvpWhQ8xPgTSlWwbEn8BE0TacJnCILuhNM
|
9
|
+
BRdf8LlRk/8PKQwVpVF3TFbYSMI+U6b4hMVssfv3HVQc/083dHq+3XOwUCVlUstR
|
10
|
+
SAzTE2E5EDMr1stdh0SQhV4Nilfos9s5Uk1Z6IGSztoz1GgOErIc/mGPy/aA/hbr
|
11
|
+
fRWHvTp35+MbCJSvZuOeevX2iLs0dNzqdk6DiOWIH/BVGirVPtO6ykrkuTj1FWiN
|
12
|
+
hyZ3MBChShlNH2poNX46ntOc7nEus0qteOgxBK8lummFEtlehCA7hd/8xuvYlP0k
|
13
|
+
7aN684LCRDajmAGpoZO57NSDYQhAFGZeUZ93SMFucQKBgQDe7GGkzZFEiv91u1q9
|
14
|
+
lgMy1h5dZjIZKgQaOarPC6wCQMUdqCf6cSLsAPr4T8EDoWsnY7dSnrTZ6YCIFL1T
|
15
|
+
idg8M3BQXipICCJkFORS76pKKZ0wMn3/NgkSepsmNct91WHr6okvx4tOaoRCtdzU
|
16
|
+
g7jt4Mr3sfLCiZtqTQyySdMUEwKBgQDNK+ZFKL0XhkWZP+PGKjWG8LWpPiK3d78/
|
17
|
+
wYBFXzSTGlkr6FvRmYtZeNwXWRYLB4UxZ9At4hbJVEdi/2dITOz/sehVDyCAjjs3
|
18
|
+
gycsc3UJqiZbcw5XKhI5TWBuWxkKENdbMSayogVbp2aSYoRblH764//t0ACmbfTW
|
19
|
+
KUQRQPB/uwKBgQC5QjjjfPL8w4cJkGoYpFKELO2PMR7xSrmeEc6hwlFwjeNCgjy3
|
20
|
+
JM6g0y++rIj7O2qRkY0IXFxvvF3UuWedxTCu1xC/uYHp2ti506LsScB7YZoAM/YB
|
21
|
+
4iYn9Tx6xLoYGP0H0iGwU2SyBlNkHT8oXU+SYP5MWtYkVbeS3/VtNWz1gQKBgQCA
|
22
|
+
6Nk4kN0mH7YxEKRzSOfyzeDF4oV7kuB2FYUbkTL+TirC3K58JiYY5Egc31trOKFm
|
23
|
+
Jlz1xz0b6DkmKWTiV3r9OPHKJ8P7IeJxAZWmZzCdDuwkv0i+WW+z0zsIe3JjEavN
|
24
|
+
3zb6O7R0HtziksWoqMeTqZeO+wa9iw6vVKQw1wWEqwKBgFHfahFs0DZ5cUTpGpBt
|
25
|
+
F/AQG7ukgipB6N6AkB9kDbgCs1FLgd199MQrEncug5hfpq8QerbyMatmA+GXoGMb
|
26
|
+
7vztKEH85yzp4n02FNL6H7xL4VVILvyZHdolmiORJ4qT2hZnl8pEQ2TYuF4RlHUd
|
27
|
+
nSwXX+2o0J/nF85fm4AwWKAc
|
16
28
|
-----END PRIVATE KEY-----
|
@@ -1,14 +1,20 @@
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
2
|
+
MIIDNzCCAh8CFGyX00RCepOv/qCJ1oVdTtY92U83MA0GCSqGSIb3DQEBCwUAMFYx
|
3
|
+
CzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRl
|
4
|
+
cm5ldCBXaWRnaXRzIFB0eSBMdGQxDzANBgNVBAMMBnRlc3RjYTAeFw0yMDAzMTgw
|
5
|
+
MTA2MTBaFw0zMDAzMTYwMTA2MTBaMFoxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApT
|
6
|
+
b21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxEzAR
|
7
|
+
BgNVBAMMCnRlc3RjbGllbnQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
|
8
|
+
AQCyqYRp+DXVp72NFbQH8hdhTZLycZXOlJhmMsrJmrjn2p7pI/8mTZ/0FC+SGWBG
|
9
|
+
ZV+ELiHrmCX5zfaILr9Iuw7Ghr3Vzoefi8r62rLupVPNi/qdqyjWk2dECHC9Z3+A
|
10
|
+
g3KzKTyerXWjKcvyKVmM0ZxE0RXhDW/RoQbqZsU2GKg1B2rhUU8KN0gVmKn0rJHO
|
11
|
+
xzRVSYeYLYp5Yn7KrtPJcKyo9aVuEr7dGANzpyF6lg/nYBWc+9SGwkoLdFvKvABY
|
12
|
+
JMyrbNhHUQfv0fzaZ0P86dfTENrDxzALrzGnqcx3KTrwJjkZ/aSr1tyD0/tXvukR
|
13
|
+
FiPxWBJhjHQ70GqTFQY19RbhAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAFXCewK8
|
14
|
+
cWT+zWxXyGFnouFSBzTi0BMBJRrhsiNoiQxkqityJHWFExiQZie+7CA+EabXCQUB
|
15
|
+
+JwMSWM29j3mSw10DTfmC3rhheQqGxy304BZyUpdpvI2dt3p/mcsE7O+p4sQrSep
|
16
|
+
gijiDssKAfxTAmUM93N6+Q8yJK5immxlbeYfijoBvmkzyB/B+qNRPsx0n7aFGnfv
|
17
|
+
oWfkW296iPhWLiwknpC3xB6oK3vRbK4Zj1OaGb0grK7VN8EyhBix2xVF61i4dzCK
|
18
|
+
kMIpl7CUpw1Mb2z8q3F2bHBS7iF7g1Ccn5VGcO+aJ+6PWydaeqJ6VEBF0Nwv9woe
|
19
|
+
mL5AluNRLaqjZvE=
|
14
20
|
-----END CERTIFICATE-----
|
@@ -1,16 +1,28 @@
|
|
1
1
|
-----BEGIN PRIVATE KEY-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQDnE443EknxvxBq
|
3
|
+
6+hvn/t09hl8hx366EBYvZmVM/NC+7igXRAjiJiA/mIaCvL3MS0Iz5hBLxSGICU+
|
4
|
+
WproA3GCIFITIwcf/ETyWj/5xpgZ4AKrLrjQmmX8mhwUajfF3UvwMJrCOVqPp67t
|
5
|
+
PtP+2kBXaqrXdvnvXR41FsIB8V7zIAuIZB6bHQhiGVlc1sgZYsE2EGG9WMmHtS86
|
6
|
+
qkAOTjG2XyjmPTGAwhGDpYkYrpzp99IiDh4/Veai81hn0ssQkbry0XRD/Ig3jcHh
|
7
|
+
23WiriPNJ0JsbgXUSLKRPZObA9VgOLy2aXoN84IMaeK3yy+cwSYG/99w93fUZJte
|
8
|
+
MXwz4oYZAgMBAAECggEBAIVn2Ncai+4xbH0OLWckabwgyJ4IM9rDc0LIU368O1kU
|
9
|
+
koais8qP9dujAWgfoh3sGh/YGgKn96VnsZjKHlyMgF+r4TaDJn3k2rlAOWcurGlj
|
10
|
+
1qaVlsV4HiEzp7pxiDmHhWvp4672Bb6iBG+bsjCUOEk/n9o9KhZzIBluRhtxCmw5
|
11
|
+
nw4Do7z00PTvN81260uPWSc04IrytvZUiAIx/5qxD72bij2xJ8t/I9GI8g4FtoVB
|
12
|
+
8pB6S/hJX1PZhh9VlU6Yk+TOfOVnbebG4W5138LkB835eqk3Zz0qsbc2euoi8Hxi
|
13
|
+
y1VGwQEmMQ63jXz4c6g+X55ifvUK9Jpn5E8pq+pMd7ECgYEA93lYq+Cr54K4ey5t
|
14
|
+
sWMa+ye5RqxjzgXj2Kqr55jb54VWG7wp2iGbg8FMlkQwzTJwebzDyCSatguEZLuB
|
15
|
+
gRGroRnsUOy9vBvhKPOch9bfKIl6qOgzMJB267fBVWx5ybnRbWN/I7RvMQf3k+9y
|
16
|
+
biCIVnxDLEEYyx7z85/5qxsXg/MCgYEA7wmWKtCTn032Hy9P8OL49T0X6Z8FlkDC
|
17
|
+
Rk42ygrc/MUbugq9RGUxcCxoImOG9JXUpEtUe31YDm2j+/nbvrjl6/bP2qWs0V7l
|
18
|
+
dTJl6dABP51pCw8+l4cWgBBX08Lkeen812AAFNrjmDCjX6rHjWHLJcpS18fnRRkP
|
19
|
+
V1d/AHWX7MMCgYEA6Gsw2guhp0Zf2GCcaNK5DlQab8OL4Hwrpttzo4kuTlwtqNKp
|
20
|
+
Q9H4al9qfF4Cr1TFya98+EVYf8yFRM3NLNjZpe3gwYf2EerlJj7VLcahw0KKzoN1
|
21
|
+
QBENfwgPLRk5sDkx9VhSmcfl/diLroZdpAwtv3vo4nEoxeuGFbKTGx3Qkf0CgYEA
|
22
|
+
xyR+dcb05Ygm3w4klHQTowQ10s1H80iaUcZBgQuR1ghEtDbUPZHsoR5t1xCB02ys
|
23
|
+
DgAwLv1bChIvxvH/L6KM8ovZ2LekBX4AviWxoBxJnfz/EVau98B0b1auRN6eSC83
|
24
|
+
FRuGldlSOW1z/nSh8ViizSYE5H5HX1qkXEippvFRE88CgYB3Bfu3YQY60ITWIShv
|
25
|
+
nNkdcbTT9eoP9suaRJjw92Ln+7ZpALYlQMKUZmJ/5uBmLs4RFwUTQruLOPL4yLTH
|
26
|
+
awADWUzs3IRr1fwn9E+zM8JVyKCnUEM3w4N5UZskGO2klashAd30hWO+knRv/y0r
|
27
|
+
uGIYs9Ek7YXlXIRVrzMwcsrt1w==
|
16
28
|
-----END PRIVATE KEY-----
|
@@ -1,16 +1,22 @@
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
MIIDtDCCApygAwIBAgIUbJfTREJ6k6/+oInWhV1O1j3ZT0IwDQYJKoZIhvcNAQEL
|
3
|
+
BQAwVjELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM
|
4
|
+
GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDEPMA0GA1UEAwwGdGVzdGNhMB4XDTIw
|
5
|
+
MDMxODAzMTA0MloXDTMwMDMxNjAzMTA0MlowZTELMAkGA1UEBhMCVVMxETAPBgNV
|
6
|
+
BAgMCElsbGlub2lzMRAwDgYDVQQHDAdDaGljYWdvMRUwEwYDVQQKDAxFeGFtcGxl
|
7
|
+
LCBDby4xGjAYBgNVBAMMESoudGVzdC5nb29nbGUuY29tMIIBIjANBgkqhkiG9w0B
|
8
|
+
AQEFAAOCAQ8AMIIBCgKCAQEA5xOONxJJ8b8Qauvob5/7dPYZfIcd+uhAWL2ZlTPz
|
9
|
+
Qvu4oF0QI4iYgP5iGgry9zEtCM+YQS8UhiAlPlqa6ANxgiBSEyMHH/xE8lo/+caY
|
10
|
+
GeACqy640Jpl/JocFGo3xd1L8DCawjlaj6eu7T7T/tpAV2qq13b5710eNRbCAfFe
|
11
|
+
8yALiGQemx0IYhlZXNbIGWLBNhBhvVjJh7UvOqpADk4xtl8o5j0xgMIRg6WJGK6c
|
12
|
+
6ffSIg4eP1XmovNYZ9LLEJG68tF0Q/yIN43B4dt1oq4jzSdCbG4F1EiykT2TmwPV
|
13
|
+
YDi8tml6DfOCDGnit8svnMEmBv/fcPd31GSbXjF8M+KGGQIDAQABo2swaTAJBgNV
|
14
|
+
HRMEAjAAMAsGA1UdDwQEAwIF4DBPBgNVHREESDBGghAqLnRlc3QuZ29vZ2xlLmZy
|
15
|
+
ghh3YXRlcnpvb2kudGVzdC5nb29nbGUuYmWCEioudGVzdC55b3V0dWJlLmNvbYcE
|
16
|
+
wKgBAzANBgkqhkiG9w0BAQsFAAOCAQEAS8hDQA8PSgipgAml7Q3/djwQ644ghWQv
|
17
|
+
C2Kb+r30RCY1EyKNhnQnIIh/OUbBZvh0M0iYsy6xqXgfDhCB93AA6j0i5cS8fkhH
|
18
|
+
Jl4RK0tSkGQ3YNY4NzXwQP/vmUgfkw8VBAZ4Y4GKxppdATjffIW+srbAmdDruIRM
|
19
|
+
wPeikgOoRrXf0LA1fi4TqxARzeRwenQpayNfGHTvVF9aJkl8HoaMunTAdG5pIVcr
|
20
|
+
9GKi/gEMpXUJbbVv3U5frX1Wo4CFo+rZWJ/LyCMeb0jciNLxSdMwj/E/ZuExlyeZ
|
21
|
+
gc9ctPjSMvgSyXEKv6Vwobleeg88V2ZgzenziORoWj4KszG/lbQZvg==
|
16
22
|
-----END CERTIFICATE-----
|
@@ -0,0 +1,175 @@
|
|
1
|
+
// Copyright 2018 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#include "absl/time/civil_time.h"
|
16
|
+
|
17
|
+
#include <cstdlib>
|
18
|
+
#include <string>
|
19
|
+
|
20
|
+
#include "absl/strings/str_cat.h"
|
21
|
+
#include "absl/time/time.h"
|
22
|
+
|
23
|
+
namespace absl {
|
24
|
+
ABSL_NAMESPACE_BEGIN
|
25
|
+
|
26
|
+
namespace {
|
27
|
+
|
28
|
+
// Since a civil time has a larger year range than absl::Time (64-bit years vs
|
29
|
+
// 64-bit seconds, respectively) we normalize years to roughly +/- 400 years
|
30
|
+
// around the year 2400, which will produce an equivalent year in a range that
|
31
|
+
// absl::Time can handle.
|
32
|
+
inline civil_year_t NormalizeYear(civil_year_t year) {
|
33
|
+
return 2400 + year % 400;
|
34
|
+
}
|
35
|
+
|
36
|
+
// Formats the given CivilSecond according to the given format.
|
37
|
+
std::string FormatYearAnd(string_view fmt, CivilSecond cs) {
|
38
|
+
const CivilSecond ncs(NormalizeYear(cs.year()), cs.month(), cs.day(),
|
39
|
+
cs.hour(), cs.minute(), cs.second());
|
40
|
+
const TimeZone utc = UTCTimeZone();
|
41
|
+
// TODO(absl-team): Avoid conversion of fmt std::string.
|
42
|
+
return StrCat(cs.year(),
|
43
|
+
FormatTime(std::string(fmt), FromCivil(ncs, utc), utc));
|
44
|
+
}
|
45
|
+
|
46
|
+
template <typename CivilT>
|
47
|
+
bool ParseYearAnd(string_view fmt, string_view s, CivilT* c) {
|
48
|
+
// Civil times support a larger year range than absl::Time, so we need to
|
49
|
+
// parse the year separately, normalize it, then use absl::ParseTime on the
|
50
|
+
// normalized std::string.
|
51
|
+
const std::string ss = std::string(s); // TODO(absl-team): Avoid conversion.
|
52
|
+
const char* const np = ss.c_str();
|
53
|
+
char* endp;
|
54
|
+
errno = 0;
|
55
|
+
const civil_year_t y =
|
56
|
+
std::strtoll(np, &endp, 10); // NOLINT(runtime/deprecated_fn)
|
57
|
+
if (endp == np || errno == ERANGE) return false;
|
58
|
+
const std::string norm = StrCat(NormalizeYear(y), endp);
|
59
|
+
|
60
|
+
const TimeZone utc = UTCTimeZone();
|
61
|
+
Time t;
|
62
|
+
if (ParseTime(StrCat("%Y", fmt), norm, utc, &t, nullptr)) {
|
63
|
+
const auto cs = ToCivilSecond(t, utc);
|
64
|
+
*c = CivilT(y, cs.month(), cs.day(), cs.hour(), cs.minute(), cs.second());
|
65
|
+
return true;
|
66
|
+
}
|
67
|
+
|
68
|
+
return false;
|
69
|
+
}
|
70
|
+
|
71
|
+
// Tries to parse the type as a CivilT1, but then assigns the result to the
|
72
|
+
// argument of type CivilT2.
|
73
|
+
template <typename CivilT1, typename CivilT2>
|
74
|
+
bool ParseAs(string_view s, CivilT2* c) {
|
75
|
+
CivilT1 t1;
|
76
|
+
if (ParseCivilTime(s, &t1)) {
|
77
|
+
*c = CivilT2(t1);
|
78
|
+
return true;
|
79
|
+
}
|
80
|
+
return false;
|
81
|
+
}
|
82
|
+
|
83
|
+
template <typename CivilT>
|
84
|
+
bool ParseLenient(string_view s, CivilT* c) {
|
85
|
+
// A fastpath for when the given std::string data parses exactly into the given
|
86
|
+
// type T (e.g., s="YYYY-MM-DD" and CivilT=CivilDay).
|
87
|
+
if (ParseCivilTime(s, c)) return true;
|
88
|
+
// Try parsing as each of the 6 types, trying the most common types first
|
89
|
+
// (based on csearch results).
|
90
|
+
if (ParseAs<CivilDay>(s, c)) return true;
|
91
|
+
if (ParseAs<CivilSecond>(s, c)) return true;
|
92
|
+
if (ParseAs<CivilHour>(s, c)) return true;
|
93
|
+
if (ParseAs<CivilMonth>(s, c)) return true;
|
94
|
+
if (ParseAs<CivilMinute>(s, c)) return true;
|
95
|
+
if (ParseAs<CivilYear>(s, c)) return true;
|
96
|
+
return false;
|
97
|
+
}
|
98
|
+
} // namespace
|
99
|
+
|
100
|
+
std::string FormatCivilTime(CivilSecond c) {
|
101
|
+
return FormatYearAnd("-%m-%dT%H:%M:%S", c);
|
102
|
+
}
|
103
|
+
std::string FormatCivilTime(CivilMinute c) {
|
104
|
+
return FormatYearAnd("-%m-%dT%H:%M", c);
|
105
|
+
}
|
106
|
+
std::string FormatCivilTime(CivilHour c) {
|
107
|
+
return FormatYearAnd("-%m-%dT%H", c);
|
108
|
+
}
|
109
|
+
std::string FormatCivilTime(CivilDay c) { return FormatYearAnd("-%m-%d", c); }
|
110
|
+
std::string FormatCivilTime(CivilMonth c) { return FormatYearAnd("-%m", c); }
|
111
|
+
std::string FormatCivilTime(CivilYear c) { return FormatYearAnd("", c); }
|
112
|
+
|
113
|
+
bool ParseCivilTime(string_view s, CivilSecond* c) {
|
114
|
+
return ParseYearAnd("-%m-%dT%H:%M:%S", s, c);
|
115
|
+
}
|
116
|
+
bool ParseCivilTime(string_view s, CivilMinute* c) {
|
117
|
+
return ParseYearAnd("-%m-%dT%H:%M", s, c);
|
118
|
+
}
|
119
|
+
bool ParseCivilTime(string_view s, CivilHour* c) {
|
120
|
+
return ParseYearAnd("-%m-%dT%H", s, c);
|
121
|
+
}
|
122
|
+
bool ParseCivilTime(string_view s, CivilDay* c) {
|
123
|
+
return ParseYearAnd("-%m-%d", s, c);
|
124
|
+
}
|
125
|
+
bool ParseCivilTime(string_view s, CivilMonth* c) {
|
126
|
+
return ParseYearAnd("-%m", s, c);
|
127
|
+
}
|
128
|
+
bool ParseCivilTime(string_view s, CivilYear* c) {
|
129
|
+
return ParseYearAnd("", s, c);
|
130
|
+
}
|
131
|
+
|
132
|
+
bool ParseLenientCivilTime(string_view s, CivilSecond* c) {
|
133
|
+
return ParseLenient(s, c);
|
134
|
+
}
|
135
|
+
bool ParseLenientCivilTime(string_view s, CivilMinute* c) {
|
136
|
+
return ParseLenient(s, c);
|
137
|
+
}
|
138
|
+
bool ParseLenientCivilTime(string_view s, CivilHour* c) {
|
139
|
+
return ParseLenient(s, c);
|
140
|
+
}
|
141
|
+
bool ParseLenientCivilTime(string_view s, CivilDay* c) {
|
142
|
+
return ParseLenient(s, c);
|
143
|
+
}
|
144
|
+
bool ParseLenientCivilTime(string_view s, CivilMonth* c) {
|
145
|
+
return ParseLenient(s, c);
|
146
|
+
}
|
147
|
+
bool ParseLenientCivilTime(string_view s, CivilYear* c) {
|
148
|
+
return ParseLenient(s, c);
|
149
|
+
}
|
150
|
+
|
151
|
+
namespace time_internal {
|
152
|
+
|
153
|
+
std::ostream& operator<<(std::ostream& os, CivilYear y) {
|
154
|
+
return os << FormatCivilTime(y);
|
155
|
+
}
|
156
|
+
std::ostream& operator<<(std::ostream& os, CivilMonth m) {
|
157
|
+
return os << FormatCivilTime(m);
|
158
|
+
}
|
159
|
+
std::ostream& operator<<(std::ostream& os, CivilDay d) {
|
160
|
+
return os << FormatCivilTime(d);
|
161
|
+
}
|
162
|
+
std::ostream& operator<<(std::ostream& os, CivilHour h) {
|
163
|
+
return os << FormatCivilTime(h);
|
164
|
+
}
|
165
|
+
std::ostream& operator<<(std::ostream& os, CivilMinute m) {
|
166
|
+
return os << FormatCivilTime(m);
|
167
|
+
}
|
168
|
+
std::ostream& operator<<(std::ostream& os, CivilSecond s) {
|
169
|
+
return os << FormatCivilTime(s);
|
170
|
+
}
|
171
|
+
|
172
|
+
} // namespace time_internal
|
173
|
+
|
174
|
+
ABSL_NAMESPACE_END
|
175
|
+
} // namespace absl
|
@@ -0,0 +1,538 @@
|
|
1
|
+
// Copyright 2018 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
//
|
15
|
+
// -----------------------------------------------------------------------------
|
16
|
+
// File: civil_time.h
|
17
|
+
// -----------------------------------------------------------------------------
|
18
|
+
//
|
19
|
+
// This header file defines abstractions for computing with "civil time".
|
20
|
+
// The term "civil time" refers to the legally recognized human-scale time
|
21
|
+
// that is represented by the six fields `YYYY-MM-DD hh:mm:ss`. A "date"
|
22
|
+
// is perhaps the most common example of a civil time (represented here as
|
23
|
+
// an `absl::CivilDay`).
|
24
|
+
//
|
25
|
+
// Modern-day civil time follows the Gregorian Calendar and is a
|
26
|
+
// time-zone-independent concept: a civil time of "2015-06-01 12:00:00", for
|
27
|
+
// example, is not tied to a time zone. Put another way, a civil time does not
|
28
|
+
// map to a unique point in time; a civil time must be mapped to an absolute
|
29
|
+
// time *through* a time zone.
|
30
|
+
//
|
31
|
+
// Because a civil time is what most people think of as "time," it is common to
|
32
|
+
// map absolute times to civil times to present to users.
|
33
|
+
//
|
34
|
+
// Time zones define the relationship between absolute and civil times. Given an
|
35
|
+
// absolute or civil time and a time zone, you can compute the other time:
|
36
|
+
//
|
37
|
+
// Civil Time = F(Absolute Time, Time Zone)
|
38
|
+
// Absolute Time = G(Civil Time, Time Zone)
|
39
|
+
//
|
40
|
+
// The Abseil time library allows you to construct such civil times from
|
41
|
+
// absolute times; consult time.h for such functionality.
|
42
|
+
//
|
43
|
+
// This library provides six classes for constructing civil-time objects, and
|
44
|
+
// provides several helper functions for rounding, iterating, and performing
|
45
|
+
// arithmetic on civil-time objects, while avoiding complications like
|
46
|
+
// daylight-saving time (DST):
|
47
|
+
//
|
48
|
+
// * `absl::CivilSecond`
|
49
|
+
// * `absl::CivilMinute`
|
50
|
+
// * `absl::CivilHour`
|
51
|
+
// * `absl::CivilDay`
|
52
|
+
// * `absl::CivilMonth`
|
53
|
+
// * `absl::CivilYear`
|
54
|
+
//
|
55
|
+
// Example:
|
56
|
+
//
|
57
|
+
// // Construct a civil-time object for a specific day
|
58
|
+
// const absl::CivilDay cd(1969, 07, 20);
|
59
|
+
//
|
60
|
+
// // Construct a civil-time object for a specific second
|
61
|
+
// const absl::CivilSecond cd(2018, 8, 1, 12, 0, 1);
|
62
|
+
//
|
63
|
+
// Note: In C++14 and later, this library is usable in a constexpr context.
|
64
|
+
//
|
65
|
+
// Example:
|
66
|
+
//
|
67
|
+
// // Valid in C++14
|
68
|
+
// constexpr absl::CivilDay cd(1969, 07, 20);
|
69
|
+
|
70
|
+
#ifndef ABSL_TIME_CIVIL_TIME_H_
|
71
|
+
#define ABSL_TIME_CIVIL_TIME_H_
|
72
|
+
|
73
|
+
#include <string>
|
74
|
+
|
75
|
+
#include "absl/strings/string_view.h"
|
76
|
+
#include "absl/time/internal/cctz/include/cctz/civil_time.h"
|
77
|
+
|
78
|
+
namespace absl {
|
79
|
+
ABSL_NAMESPACE_BEGIN
|
80
|
+
|
81
|
+
namespace time_internal {
|
82
|
+
struct second_tag : cctz::detail::second_tag {};
|
83
|
+
struct minute_tag : second_tag, cctz::detail::minute_tag {};
|
84
|
+
struct hour_tag : minute_tag, cctz::detail::hour_tag {};
|
85
|
+
struct day_tag : hour_tag, cctz::detail::day_tag {};
|
86
|
+
struct month_tag : day_tag, cctz::detail::month_tag {};
|
87
|
+
struct year_tag : month_tag, cctz::detail::year_tag {};
|
88
|
+
} // namespace time_internal
|
89
|
+
|
90
|
+
// -----------------------------------------------------------------------------
|
91
|
+
// CivilSecond, CivilMinute, CivilHour, CivilDay, CivilMonth, CivilYear
|
92
|
+
// -----------------------------------------------------------------------------
|
93
|
+
//
|
94
|
+
// Each of these civil-time types is a simple value type with the same
|
95
|
+
// interface for construction and the same six accessors for each of the civil
|
96
|
+
// time fields (year, month, day, hour, minute, and second, aka YMDHMS). These
|
97
|
+
// classes differ only in their alignment, which is indicated by the type name
|
98
|
+
// and specifies the field on which arithmetic operates.
|
99
|
+
//
|
100
|
+
// CONSTRUCTION
|
101
|
+
//
|
102
|
+
// Each of the civil-time types can be constructed in two ways: by directly
|
103
|
+
// passing to the constructor up to six integers representing the YMDHMS fields,
|
104
|
+
// or by copying the YMDHMS fields from a differently aligned civil-time type.
|
105
|
+
// Omitted fields are assigned their minimum valid value. Hours, minutes, and
|
106
|
+
// seconds will be set to 0, month and day will be set to 1. Since there is no
|
107
|
+
// minimum year, the default is 1970.
|
108
|
+
//
|
109
|
+
// Examples:
|
110
|
+
//
|
111
|
+
// absl::CivilDay default_value; // 1970-01-01 00:00:00
|
112
|
+
//
|
113
|
+
// absl::CivilDay a(2015, 2, 3); // 2015-02-03 00:00:00
|
114
|
+
// absl::CivilDay b(2015, 2, 3, 4, 5, 6); // 2015-02-03 00:00:00
|
115
|
+
// absl::CivilDay c(2015); // 2015-01-01 00:00:00
|
116
|
+
//
|
117
|
+
// absl::CivilSecond ss(2015, 2, 3, 4, 5, 6); // 2015-02-03 04:05:06
|
118
|
+
// absl::CivilMinute mm(ss); // 2015-02-03 04:05:00
|
119
|
+
// absl::CivilHour hh(mm); // 2015-02-03 04:00:00
|
120
|
+
// absl::CivilDay d(hh); // 2015-02-03 00:00:00
|
121
|
+
// absl::CivilMonth m(d); // 2015-02-01 00:00:00
|
122
|
+
// absl::CivilYear y(m); // 2015-01-01 00:00:00
|
123
|
+
//
|
124
|
+
// m = absl::CivilMonth(y); // 2015-01-01 00:00:00
|
125
|
+
// d = absl::CivilDay(m); // 2015-01-01 00:00:00
|
126
|
+
// hh = absl::CivilHour(d); // 2015-01-01 00:00:00
|
127
|
+
// mm = absl::CivilMinute(hh); // 2015-01-01 00:00:00
|
128
|
+
// ss = absl::CivilSecond(mm); // 2015-01-01 00:00:00
|
129
|
+
//
|
130
|
+
// Each civil-time class is aligned to the civil-time field indicated in the
|
131
|
+
// class's name after normalization. Alignment is performed by setting all the
|
132
|
+
// inferior fields to their minimum valid value (as described above). The
|
133
|
+
// following are examples of how each of the six types would align the fields
|
134
|
+
// representing November 22, 2015 at 12:34:56 in the afternoon. (Note: the
|
135
|
+
// string format used here is not important; it's just a shorthand way of
|
136
|
+
// showing the six YMDHMS fields.)
|
137
|
+
//
|
138
|
+
// absl::CivilSecond : 2015-11-22 12:34:56
|
139
|
+
// absl::CivilMinute : 2015-11-22 12:34:00
|
140
|
+
// absl::CivilHour : 2015-11-22 12:00:00
|
141
|
+
// absl::CivilDay : 2015-11-22 00:00:00
|
142
|
+
// absl::CivilMonth : 2015-11-01 00:00:00
|
143
|
+
// absl::CivilYear : 2015-01-01 00:00:00
|
144
|
+
//
|
145
|
+
// Each civil-time type performs arithmetic on the field to which it is
|
146
|
+
// aligned. This means that adding 1 to an absl::CivilDay increments the day
|
147
|
+
// field (normalizing as necessary), and subtracting 7 from an absl::CivilMonth
|
148
|
+
// operates on the month field (normalizing as necessary). All arithmetic
|
149
|
+
// produces a valid civil time. Difference requires two similarly aligned
|
150
|
+
// civil-time objects and returns the scalar answer in units of the objects'
|
151
|
+
// alignment. For example, the difference between two absl::CivilHour objects
|
152
|
+
// will give an answer in units of civil hours.
|
153
|
+
//
|
154
|
+
// ALIGNMENT CONVERSION
|
155
|
+
//
|
156
|
+
// The alignment of a civil-time object cannot change, but the object may be
|
157
|
+
// used to construct a new object with a different alignment. This is referred
|
158
|
+
// to as "realigning". When realigning to a type with the same or more
|
159
|
+
// precision (e.g., absl::CivilDay -> absl::CivilSecond), the conversion may be
|
160
|
+
// performed implicitly since no information is lost. However, if information
|
161
|
+
// could be discarded (e.g., CivilSecond -> CivilDay), the conversion must
|
162
|
+
// be explicit at the call site.
|
163
|
+
//
|
164
|
+
// Examples:
|
165
|
+
//
|
166
|
+
// void UseDay(absl::CivilDay day);
|
167
|
+
//
|
168
|
+
// absl::CivilSecond cs;
|
169
|
+
// UseDay(cs); // Won't compile because data may be discarded
|
170
|
+
// UseDay(absl::CivilDay(cs)); // OK: explicit conversion
|
171
|
+
//
|
172
|
+
// absl::CivilDay cd;
|
173
|
+
// UseDay(cd); // OK: no conversion needed
|
174
|
+
//
|
175
|
+
// absl::CivilMonth cm;
|
176
|
+
// UseDay(cm); // OK: implicit conversion to absl::CivilDay
|
177
|
+
//
|
178
|
+
// NORMALIZATION
|
179
|
+
//
|
180
|
+
// Normalization takes invalid values and adjusts them to produce valid values.
|
181
|
+
// Within the civil-time library, integer arguments passed to the Civil*
|
182
|
+
// constructors may be out-of-range, in which case they are normalized by
|
183
|
+
// carrying overflow into a field of courser granularity to produce valid
|
184
|
+
// civil-time objects. This normalization enables natural arithmetic on
|
185
|
+
// constructor arguments without worrying about the field's range.
|
186
|
+
//
|
187
|
+
// Examples:
|
188
|
+
//
|
189
|
+
// // Out-of-range; normalized to 2016-11-01
|
190
|
+
// absl::CivilDay d(2016, 10, 32);
|
191
|
+
// // Out-of-range, negative: normalized to 2016-10-30T23
|
192
|
+
// absl::CivilHour h1(2016, 10, 31, -1);
|
193
|
+
// // Normalization is cumulative: normalized to 2016-10-30T23
|
194
|
+
// absl::CivilHour h2(2016, 10, 32, -25);
|
195
|
+
//
|
196
|
+
// Note: If normalization is undesired, you can signal an error by comparing
|
197
|
+
// the constructor arguments to the normalized values returned by the YMDHMS
|
198
|
+
// properties.
|
199
|
+
//
|
200
|
+
// COMPARISON
|
201
|
+
//
|
202
|
+
// Comparison between civil-time objects considers all six YMDHMS fields,
|
203
|
+
// regardless of the type's alignment. Comparison between differently aligned
|
204
|
+
// civil-time types is allowed.
|
205
|
+
//
|
206
|
+
// Examples:
|
207
|
+
//
|
208
|
+
// absl::CivilDay feb_3(2015, 2, 3); // 2015-02-03 00:00:00
|
209
|
+
// absl::CivilDay mar_4(2015, 3, 4); // 2015-03-04 00:00:00
|
210
|
+
// // feb_3 < mar_4
|
211
|
+
// // absl::CivilYear(feb_3) == absl::CivilYear(mar_4)
|
212
|
+
//
|
213
|
+
// absl::CivilSecond feb_3_noon(2015, 2, 3, 12, 0, 0); // 2015-02-03 12:00:00
|
214
|
+
// // feb_3 < feb_3_noon
|
215
|
+
// // feb_3 == absl::CivilDay(feb_3_noon)
|
216
|
+
//
|
217
|
+
// // Iterates all the days of February 2015.
|
218
|
+
// for (absl::CivilDay d(2015, 2, 1); d < absl::CivilMonth(2015, 3); ++d) {
|
219
|
+
// // ...
|
220
|
+
// }
|
221
|
+
//
|
222
|
+
// ARITHMETIC
|
223
|
+
//
|
224
|
+
// Civil-time types support natural arithmetic operators such as addition,
|
225
|
+
// subtraction, and difference. Arithmetic operates on the civil-time field
|
226
|
+
// indicated in the type's name. Difference operators require arguments with
|
227
|
+
// the same alignment and return the answer in units of the alignment.
|
228
|
+
//
|
229
|
+
// Example:
|
230
|
+
//
|
231
|
+
// absl::CivilDay a(2015, 2, 3);
|
232
|
+
// ++a; // 2015-02-04 00:00:00
|
233
|
+
// --a; // 2015-02-03 00:00:00
|
234
|
+
// absl::CivilDay b = a + 1; // 2015-02-04 00:00:00
|
235
|
+
// absl::CivilDay c = 1 + b; // 2015-02-05 00:00:00
|
236
|
+
// int n = c - a; // n = 2 (civil days)
|
237
|
+
// int m = c - absl::CivilMonth(c); // Won't compile: different types.
|
238
|
+
//
|
239
|
+
// ACCESSORS
|
240
|
+
//
|
241
|
+
// Each civil-time type has accessors for all six of the civil-time fields:
|
242
|
+
// year, month, day, hour, minute, and second.
|
243
|
+
//
|
244
|
+
// civil_year_t year()
|
245
|
+
// int month()
|
246
|
+
// int day()
|
247
|
+
// int hour()
|
248
|
+
// int minute()
|
249
|
+
// int second()
|
250
|
+
//
|
251
|
+
// Recall that fields inferior to the type's alignment will be set to their
|
252
|
+
// minimum valid value.
|
253
|
+
//
|
254
|
+
// Example:
|
255
|
+
//
|
256
|
+
// absl::CivilDay d(2015, 6, 28);
|
257
|
+
// // d.year() == 2015
|
258
|
+
// // d.month() == 6
|
259
|
+
// // d.day() == 28
|
260
|
+
// // d.hour() == 0
|
261
|
+
// // d.minute() == 0
|
262
|
+
// // d.second() == 0
|
263
|
+
//
|
264
|
+
// CASE STUDY: Adding a month to January 31.
|
265
|
+
//
|
266
|
+
// One of the classic questions that arises when considering a civil time
|
267
|
+
// library (or a date library or a date/time library) is this:
|
268
|
+
// "What is the result of adding a month to January 31?"
|
269
|
+
// This is an interesting question because it is unclear what is meant by a
|
270
|
+
// "month", and several different answers are possible, depending on context:
|
271
|
+
//
|
272
|
+
// 1. March 3 (or 2 if a leap year), if "add a month" means to add a month to
|
273
|
+
// the current month, and adjust the date to overflow the extra days into
|
274
|
+
// March. In this case the result of "February 31" would be normalized as
|
275
|
+
// within the civil-time library.
|
276
|
+
// 2. February 28 (or 29 if a leap year), if "add a month" means to add a
|
277
|
+
// month, and adjust the date while holding the resulting month constant.
|
278
|
+
// In this case, the result of "February 31" would be truncated to the last
|
279
|
+
// day in February.
|
280
|
+
// 3. An error. The caller may get some error, an exception, an invalid date
|
281
|
+
// object, or perhaps return `false`. This may make sense because there is
|
282
|
+
// no single unambiguously correct answer to the question.
|
283
|
+
//
|
284
|
+
// Practically speaking, any answer that is not what the programmer intended
|
285
|
+
// is the wrong answer.
|
286
|
+
//
|
287
|
+
// The Abseil time library avoids this problem by making it impossible to
|
288
|
+
// ask ambiguous questions. All civil-time objects are aligned to a particular
|
289
|
+
// civil-field boundary (such as aligned to a year, month, day, hour, minute,
|
290
|
+
// or second), and arithmetic operates on the field to which the object is
|
291
|
+
// aligned. This means that in order to "add a month" the object must first be
|
292
|
+
// aligned to a month boundary, which is equivalent to the first day of that
|
293
|
+
// month.
|
294
|
+
//
|
295
|
+
// Of course, there are ways to compute an answer the question at hand using
|
296
|
+
// this Abseil time library, but they require the programmer to be explicit
|
297
|
+
// about the answer they expect. To illustrate, let's see how to compute all
|
298
|
+
// three of the above possible answers to the question of "Jan 31 plus 1
|
299
|
+
// month":
|
300
|
+
//
|
301
|
+
// Example:
|
302
|
+
//
|
303
|
+
// const absl::CivilDay d(2015, 1, 31);
|
304
|
+
//
|
305
|
+
// // Answer 1:
|
306
|
+
// // Add 1 to the month field in the constructor, and rely on normalization.
|
307
|
+
// const auto normalized = absl::CivilDay(d.year(), d.month() + 1, d.day());
|
308
|
+
// // normalized == 2015-03-03 (aka Feb 31)
|
309
|
+
//
|
310
|
+
// // Answer 2:
|
311
|
+
// // Add 1 to month field, capping to the end of next month.
|
312
|
+
// const auto next_month = absl::CivilMonth(d) + 1;
|
313
|
+
// const auto last_day_of_next_month = absl::CivilDay(next_month + 1) - 1;
|
314
|
+
// const auto capped = std::min(normalized, last_day_of_next_month);
|
315
|
+
// // capped == 2015-02-28
|
316
|
+
//
|
317
|
+
// // Answer 3:
|
318
|
+
// // Signal an error if the normalized answer is not in next month.
|
319
|
+
// if (absl::CivilMonth(normalized) != next_month) {
|
320
|
+
// // error, month overflow
|
321
|
+
// }
|
322
|
+
//
|
323
|
+
using CivilSecond =
|
324
|
+
time_internal::cctz::detail::civil_time<time_internal::second_tag>;
|
325
|
+
using CivilMinute =
|
326
|
+
time_internal::cctz::detail::civil_time<time_internal::minute_tag>;
|
327
|
+
using CivilHour =
|
328
|
+
time_internal::cctz::detail::civil_time<time_internal::hour_tag>;
|
329
|
+
using CivilDay =
|
330
|
+
time_internal::cctz::detail::civil_time<time_internal::day_tag>;
|
331
|
+
using CivilMonth =
|
332
|
+
time_internal::cctz::detail::civil_time<time_internal::month_tag>;
|
333
|
+
using CivilYear =
|
334
|
+
time_internal::cctz::detail::civil_time<time_internal::year_tag>;
|
335
|
+
|
336
|
+
// civil_year_t
|
337
|
+
//
|
338
|
+
// Type alias of a civil-time year value. This type is guaranteed to (at least)
|
339
|
+
// support any year value supported by `time_t`.
|
340
|
+
//
|
341
|
+
// Example:
|
342
|
+
//
|
343
|
+
// absl::CivilSecond cs = ...;
|
344
|
+
// absl::civil_year_t y = cs.year();
|
345
|
+
// cs = absl::CivilSecond(y, 1, 1, 0, 0, 0); // CivilSecond(CivilYear(cs))
|
346
|
+
//
|
347
|
+
using civil_year_t = time_internal::cctz::year_t;
|
348
|
+
|
349
|
+
// civil_diff_t
|
350
|
+
//
|
351
|
+
// Type alias of the difference between two civil-time values.
|
352
|
+
// This type is used to indicate arguments that are not
|
353
|
+
// normalized (such as parameters to the civil-time constructors), the results
|
354
|
+
// of civil-time subtraction, or the operand to civil-time addition.
|
355
|
+
//
|
356
|
+
// Example:
|
357
|
+
//
|
358
|
+
// absl::civil_diff_t n_sec = cs1 - cs2; // cs1 == cs2 + n_sec;
|
359
|
+
//
|
360
|
+
using civil_diff_t = time_internal::cctz::diff_t;
|
361
|
+
|
362
|
+
// Weekday::monday, Weekday::tuesday, Weekday::wednesday, Weekday::thursday,
|
363
|
+
// Weekday::friday, Weekday::saturday, Weekday::sunday
|
364
|
+
//
|
365
|
+
// The Weekday enum class represents the civil-time concept of a "weekday" with
|
366
|
+
// members for all days of the week.
|
367
|
+
//
|
368
|
+
// absl::Weekday wd = absl::Weekday::thursday;
|
369
|
+
//
|
370
|
+
using Weekday = time_internal::cctz::weekday;
|
371
|
+
|
372
|
+
// GetWeekday()
|
373
|
+
//
|
374
|
+
// Returns the absl::Weekday for the given (realigned) civil-time value.
|
375
|
+
//
|
376
|
+
// Example:
|
377
|
+
//
|
378
|
+
// absl::CivilDay a(2015, 8, 13);
|
379
|
+
// absl::Weekday wd = absl::GetWeekday(a); // wd == absl::Weekday::thursday
|
380
|
+
//
|
381
|
+
inline Weekday GetWeekday(CivilSecond cs) {
|
382
|
+
return time_internal::cctz::get_weekday(cs);
|
383
|
+
}
|
384
|
+
|
385
|
+
// NextWeekday()
|
386
|
+
// PrevWeekday()
|
387
|
+
//
|
388
|
+
// Returns the absl::CivilDay that strictly follows or precedes a given
|
389
|
+
// absl::CivilDay, and that falls on the given absl::Weekday.
|
390
|
+
//
|
391
|
+
// Example, given the following month:
|
392
|
+
//
|
393
|
+
// August 2015
|
394
|
+
// Su Mo Tu We Th Fr Sa
|
395
|
+
// 1
|
396
|
+
// 2 3 4 5 6 7 8
|
397
|
+
// 9 10 11 12 13 14 15
|
398
|
+
// 16 17 18 19 20 21 22
|
399
|
+
// 23 24 25 26 27 28 29
|
400
|
+
// 30 31
|
401
|
+
//
|
402
|
+
// absl::CivilDay a(2015, 8, 13);
|
403
|
+
// // absl::GetWeekday(a) == absl::Weekday::thursday
|
404
|
+
// absl::CivilDay b = absl::NextWeekday(a, absl::Weekday::thursday);
|
405
|
+
// // b = 2015-08-20
|
406
|
+
// absl::CivilDay c = absl::PrevWeekday(a, absl::Weekday::thursday);
|
407
|
+
// // c = 2015-08-06
|
408
|
+
//
|
409
|
+
// absl::CivilDay d = ...
|
410
|
+
// // Gets the following Thursday if d is not already Thursday
|
411
|
+
// absl::CivilDay thurs1 = absl::NextWeekday(d - 1, absl::Weekday::thursday);
|
412
|
+
// // Gets the previous Thursday if d is not already Thursday
|
413
|
+
// absl::CivilDay thurs2 = absl::PrevWeekday(d + 1, absl::Weekday::thursday);
|
414
|
+
//
|
415
|
+
inline CivilDay NextWeekday(CivilDay cd, Weekday wd) {
|
416
|
+
return CivilDay(time_internal::cctz::next_weekday(cd, wd));
|
417
|
+
}
|
418
|
+
inline CivilDay PrevWeekday(CivilDay cd, Weekday wd) {
|
419
|
+
return CivilDay(time_internal::cctz::prev_weekday(cd, wd));
|
420
|
+
}
|
421
|
+
|
422
|
+
// GetYearDay()
|
423
|
+
//
|
424
|
+
// Returns the day-of-year for the given (realigned) civil-time value.
|
425
|
+
//
|
426
|
+
// Example:
|
427
|
+
//
|
428
|
+
// absl::CivilDay a(2015, 1, 1);
|
429
|
+
// int yd_jan_1 = absl::GetYearDay(a); // yd_jan_1 = 1
|
430
|
+
// absl::CivilDay b(2015, 12, 31);
|
431
|
+
// int yd_dec_31 = absl::GetYearDay(b); // yd_dec_31 = 365
|
432
|
+
//
|
433
|
+
inline int GetYearDay(CivilSecond cs) {
|
434
|
+
return time_internal::cctz::get_yearday(cs);
|
435
|
+
}
|
436
|
+
|
437
|
+
// FormatCivilTime()
|
438
|
+
//
|
439
|
+
// Formats the given civil-time value into a string value of the following
|
440
|
+
// format:
|
441
|
+
//
|
442
|
+
// Type | Format
|
443
|
+
// ---------------------------------
|
444
|
+
// CivilSecond | YYYY-MM-DDTHH:MM:SS
|
445
|
+
// CivilMinute | YYYY-MM-DDTHH:MM
|
446
|
+
// CivilHour | YYYY-MM-DDTHH
|
447
|
+
// CivilDay | YYYY-MM-DD
|
448
|
+
// CivilMonth | YYYY-MM
|
449
|
+
// CivilYear | YYYY
|
450
|
+
//
|
451
|
+
// Example:
|
452
|
+
//
|
453
|
+
// absl::CivilDay d = absl::CivilDay(1969, 7, 20);
|
454
|
+
// std::string day_string = absl::FormatCivilTime(d); // "1969-07-20"
|
455
|
+
//
|
456
|
+
std::string FormatCivilTime(CivilSecond c);
|
457
|
+
std::string FormatCivilTime(CivilMinute c);
|
458
|
+
std::string FormatCivilTime(CivilHour c);
|
459
|
+
std::string FormatCivilTime(CivilDay c);
|
460
|
+
std::string FormatCivilTime(CivilMonth c);
|
461
|
+
std::string FormatCivilTime(CivilYear c);
|
462
|
+
|
463
|
+
// absl::ParseCivilTime()
|
464
|
+
//
|
465
|
+
// Parses a civil-time value from the specified `absl::string_view` into the
|
466
|
+
// passed output parameter. Returns `true` upon successful parsing.
|
467
|
+
//
|
468
|
+
// The expected form of the input string is as follows:
|
469
|
+
//
|
470
|
+
// Type | Format
|
471
|
+
// ---------------------------------
|
472
|
+
// CivilSecond | YYYY-MM-DDTHH:MM:SS
|
473
|
+
// CivilMinute | YYYY-MM-DDTHH:MM
|
474
|
+
// CivilHour | YYYY-MM-DDTHH
|
475
|
+
// CivilDay | YYYY-MM-DD
|
476
|
+
// CivilMonth | YYYY-MM
|
477
|
+
// CivilYear | YYYY
|
478
|
+
//
|
479
|
+
// Example:
|
480
|
+
//
|
481
|
+
// absl::CivilDay d;
|
482
|
+
// bool ok = absl::ParseCivilTime("2018-01-02", &d); // OK
|
483
|
+
//
|
484
|
+
// Note that parsing will fail if the string's format does not match the
|
485
|
+
// expected type exactly. `ParseLenientCivilTime()` below is more lenient.
|
486
|
+
//
|
487
|
+
bool ParseCivilTime(absl::string_view s, CivilSecond* c);
|
488
|
+
bool ParseCivilTime(absl::string_view s, CivilMinute* c);
|
489
|
+
bool ParseCivilTime(absl::string_view s, CivilHour* c);
|
490
|
+
bool ParseCivilTime(absl::string_view s, CivilDay* c);
|
491
|
+
bool ParseCivilTime(absl::string_view s, CivilMonth* c);
|
492
|
+
bool ParseCivilTime(absl::string_view s, CivilYear* c);
|
493
|
+
|
494
|
+
// ParseLenientCivilTime()
|
495
|
+
//
|
496
|
+
// Parses any of the formats accepted by `absl::ParseCivilTime()`, but is more
|
497
|
+
// lenient if the format of the string does not exactly match the associated
|
498
|
+
// type.
|
499
|
+
//
|
500
|
+
// Example:
|
501
|
+
//
|
502
|
+
// absl::CivilDay d;
|
503
|
+
// bool ok = absl::ParseLenientCivilTime("1969-07-20", &d); // OK
|
504
|
+
// ok = absl::ParseLenientCivilTime("1969-07-20T10", &d); // OK: T10 floored
|
505
|
+
// ok = absl::ParseLenientCivilTime("1969-07", &d); // OK: day defaults to 1
|
506
|
+
//
|
507
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilSecond* c);
|
508
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilMinute* c);
|
509
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilHour* c);
|
510
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilDay* c);
|
511
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilMonth* c);
|
512
|
+
bool ParseLenientCivilTime(absl::string_view s, CivilYear* c);
|
513
|
+
|
514
|
+
namespace time_internal { // For functions found via ADL on civil-time tags.
|
515
|
+
|
516
|
+
// Streaming Operators
|
517
|
+
//
|
518
|
+
// Each civil-time type may be sent to an output stream using operator<<().
|
519
|
+
// The result matches the string produced by `FormatCivilTime()`.
|
520
|
+
//
|
521
|
+
// Example:
|
522
|
+
//
|
523
|
+
// absl::CivilDay d = absl::CivilDay(1969, 7, 20);
|
524
|
+
// std::cout << "Date is: " << d << "\n";
|
525
|
+
//
|
526
|
+
std::ostream& operator<<(std::ostream& os, CivilYear y);
|
527
|
+
std::ostream& operator<<(std::ostream& os, CivilMonth m);
|
528
|
+
std::ostream& operator<<(std::ostream& os, CivilDay d);
|
529
|
+
std::ostream& operator<<(std::ostream& os, CivilHour h);
|
530
|
+
std::ostream& operator<<(std::ostream& os, CivilMinute m);
|
531
|
+
std::ostream& operator<<(std::ostream& os, CivilSecond s);
|
532
|
+
|
533
|
+
} // namespace time_internal
|
534
|
+
|
535
|
+
ABSL_NAMESPACE_END
|
536
|
+
} // namespace absl
|
537
|
+
|
538
|
+
#endif // ABSL_TIME_CIVIL_TIME_H_
|