123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334(********************************************************)(* AUTOGENERATED FILE - DO NOT EDIT! *)(********************************************************)(* Generated by: ocaml-protoc-plugin *)(* https://github.com/andersfugmann/ocaml-protoc-plugin *)(********************************************************)(*
Source: google/protobuf/duration.proto
Syntax: proto3
Parameters:
debug=false
annot=''
opens=[]
int64_as_int=true
int32_as_int=true
fixed_as_int=false
singleton_record=false
prefix_output_with_package=false
*)[@@@ocaml.alert"-protobuf"](* Disable deprecation warnings for protobuf*)(**/**)moduleRuntime'=Ocaml_protoc_plugin[@@warning"-33"]moduleImported'modules=structend(**/**)modulerecGoogle:sigmodulerecProtobuf:sig(**
{%html:
<p>A Duration represents a signed, fixed-length span of time represented
as a count of seconds and fractions of seconds at nanosecond
resolution. It is independent of any calendar and concepts like "day"
or "month". It is related to Timestamp in that the difference between
two Timestamp values is a Duration and it can be added or subtracted
from a Timestamp. Range is approximately +-10,000 years.</p>
<h1 id="examples">Examples</h1>
<p>Example 1: Compute Duration from two Timestamps in pseudo code.</p>
<pre><code> Timestamp start = ...;
Timestamp end = ...;
Duration duration = ...;
duration.seconds = end.seconds - start.seconds;
duration.nanos = end.nanos - start.nanos;
if (duration.seconds < 0 && duration.nanos > 0) {
duration.seconds += 1;
duration.nanos -= 1000000000;
} else if (duration.seconds > 0 && duration.nanos < 0) {
duration.seconds -= 1;
duration.nanos += 1000000000;
}
</code></pre>
<p>Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.</p>
<pre><code> Timestamp start = ...;
Duration duration = ...;
Timestamp end = ...;
end.seconds = start.seconds + duration.seconds;
end.nanos = start.nanos + duration.nanos;
if (end.nanos < 0) {
end.seconds -= 1;
end.nanos += 1000000000;
} else if (end.nanos >= 1000000000) {
end.seconds += 1;
end.nanos -= 1000000000;
}
</code></pre>
<p>Example 3: Compute Duration from datetime.timedelta in Python.</p>
<pre><code> td = datetime.timedelta(days=3, minutes=10)
duration = Duration()
duration.FromTimedelta(td)
</code></pre>
<h1 id="json-mapping">JSON Mapping</h1>
<p>In JSON format, the Duration type is encoded as a string rather than an
object, where the string ends in the suffix "s" (indicating seconds) and
is preceded by the number of seconds, with nanoseconds expressed as
fractional seconds. For example, 3 seconds with 0 nanoseconds should be
encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
be expressed in JSON format as "3.000000001s", and 3 seconds and 1
microsecond should be expressed in JSON format as "3.000001s".</p>
%}
*)modulerecDuration:sigtypet={seconds:int;(**
{%html:
<p>Signed seconds of the span of time. Must be from -315,576,000,000
to +315,576,000,000 inclusive. Note: these bounds are computed from:
60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years</p>
%}
*)nanos:int;(**
{%html:
<p>Signed fractions of a second at nanosecond resolution of the span
of time. Durations less than one second are represented with a 0
<code>seconds</code> field and a positive or negative <code>nanos</code> field. For durations
of one second or more, a non-zero value for the <code>nanos</code> field must be
of the same sign as the <code>seconds</code> field. Must be from -999,999,999
to +999,999,999 inclusive.</p>
%}
*)}valmake:?seconds:int->?nanos:int->unit->t(** Helper function to generate a message using default values *)valto_proto:t->Runtime'.Writer.t(** Serialize the message to binary format *)valfrom_proto:Runtime'.Reader.t->(t,[>Runtime'.Result.error])result(** Deserialize from binary format *)valto_json:Runtime'.Json_options.t->t->Runtime'.Json.t(** Serialize to Json (compatible with Yojson.Basic.t) *)valfrom_json:Runtime'.Json.t->(t,[>Runtime'.Result.error])result(** Deserialize from Json (compatible with Yojson.Basic.t) *)valname:unit->string(** Fully qualified protobuf name of this message *)(**/**)typemake_t=?seconds:int->?nanos:int->unit->tvalmerge:t->t->tvalto_proto':Runtime'.Writer.t->t->unitvalfrom_proto_exn:Runtime'.Reader.t->tvalfrom_json_exn:Runtime'.Json.t->t(**/**)endendend=structmodulerecProtobuf:sig(**
{%html:
<p>A Duration represents a signed, fixed-length span of time represented
as a count of seconds and fractions of seconds at nanosecond
resolution. It is independent of any calendar and concepts like "day"
or "month". It is related to Timestamp in that the difference between
two Timestamp values is a Duration and it can be added or subtracted
from a Timestamp. Range is approximately +-10,000 years.</p>
<h1 id="examples">Examples</h1>
<p>Example 1: Compute Duration from two Timestamps in pseudo code.</p>
<pre><code> Timestamp start = ...;
Timestamp end = ...;
Duration duration = ...;
duration.seconds = end.seconds - start.seconds;
duration.nanos = end.nanos - start.nanos;
if (duration.seconds < 0 && duration.nanos > 0) {
duration.seconds += 1;
duration.nanos -= 1000000000;
} else if (duration.seconds > 0 && duration.nanos < 0) {
duration.seconds -= 1;
duration.nanos += 1000000000;
}
</code></pre>
<p>Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.</p>
<pre><code> Timestamp start = ...;
Duration duration = ...;
Timestamp end = ...;
end.seconds = start.seconds + duration.seconds;
end.nanos = start.nanos + duration.nanos;
if (end.nanos < 0) {
end.seconds -= 1;
end.nanos += 1000000000;
} else if (end.nanos >= 1000000000) {
end.seconds += 1;
end.nanos -= 1000000000;
}
</code></pre>
<p>Example 3: Compute Duration from datetime.timedelta in Python.</p>
<pre><code> td = datetime.timedelta(days=3, minutes=10)
duration = Duration()
duration.FromTimedelta(td)
</code></pre>
<h1 id="json-mapping">JSON Mapping</h1>
<p>In JSON format, the Duration type is encoded as a string rather than an
object, where the string ends in the suffix "s" (indicating seconds) and
is preceded by the number of seconds, with nanoseconds expressed as
fractional seconds. For example, 3 seconds with 0 nanoseconds should be
encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
be expressed in JSON format as "3.000000001s", and 3 seconds and 1
microsecond should be expressed in JSON format as "3.000001s".</p>
%}
*)modulerecDuration:sigtypet={seconds:int;(**
{%html:
<p>Signed seconds of the span of time. Must be from -315,576,000,000
to +315,576,000,000 inclusive. Note: these bounds are computed from:
60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years</p>
%}
*)nanos:int;(**
{%html:
<p>Signed fractions of a second at nanosecond resolution of the span
of time. Durations less than one second are represented with a 0
<code>seconds</code> field and a positive or negative <code>nanos</code> field. For durations
of one second or more, a non-zero value for the <code>nanos</code> field must be
of the same sign as the <code>seconds</code> field. Must be from -999,999,999
to +999,999,999 inclusive.</p>
%}
*)}valmake:?seconds:int->?nanos:int->unit->t(** Helper function to generate a message using default values *)valto_proto:t->Runtime'.Writer.t(** Serialize the message to binary format *)valfrom_proto:Runtime'.Reader.t->(t,[>Runtime'.Result.error])result(** Deserialize from binary format *)valto_json:Runtime'.Json_options.t->t->Runtime'.Json.t(** Serialize to Json (compatible with Yojson.Basic.t) *)valfrom_json:Runtime'.Json.t->(t,[>Runtime'.Result.error])result(** Deserialize from Json (compatible with Yojson.Basic.t) *)valname:unit->string(** Fully qualified protobuf name of this message *)(**/**)typemake_t=?seconds:int->?nanos:int->unit->tvalmerge:t->t->tvalto_proto':Runtime'.Writer.t->t->unitvalfrom_proto_exn:Runtime'.Reader.t->tvalfrom_json_exn:Runtime'.Json.t->t(**/**)endend=structmodulerecDuration:sigtypet={seconds:int;(**
{%html:
<p>Signed seconds of the span of time. Must be from -315,576,000,000
to +315,576,000,000 inclusive. Note: these bounds are computed from:
60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years</p>
%}
*)nanos:int;(**
{%html:
<p>Signed fractions of a second at nanosecond resolution of the span
of time. Durations less than one second are represented with a 0
<code>seconds</code> field and a positive or negative <code>nanos</code> field. For durations
of one second or more, a non-zero value for the <code>nanos</code> field must be
of the same sign as the <code>seconds</code> field. Must be from -999,999,999
to +999,999,999 inclusive.</p>
%}
*)}valmake:?seconds:int->?nanos:int->unit->t(** Helper function to generate a message using default values *)valto_proto:t->Runtime'.Writer.t(** Serialize the message to binary format *)valfrom_proto:Runtime'.Reader.t->(t,[>Runtime'.Result.error])result(** Deserialize from binary format *)valto_json:Runtime'.Json_options.t->t->Runtime'.Json.t(** Serialize to Json (compatible with Yojson.Basic.t) *)valfrom_json:Runtime'.Json.t->(t,[>Runtime'.Result.error])result(** Deserialize from Json (compatible with Yojson.Basic.t) *)valname:unit->string(** Fully qualified protobuf name of this message *)(**/**)typemake_t=?seconds:int->?nanos:int->unit->tvalmerge:t->t->tvalto_proto':Runtime'.Writer.t->t->unitvalfrom_proto_exn:Runtime'.Reader.t->tvalfrom_json_exn:Runtime'.Json.t->t(**/**)end=structmoduleThis'_=Durationletname()=".google.protobuf.Duration"typet={seconds:int;nanos:int;}typemake_t=?seconds:int->?nanos:int->unit->tletmake?(seconds=0)?(nanos=0)()={seconds;nanos}letmerge=letmerge_seconds=Runtime'.Merge.mergeRuntime'.Spec.(basic((1,"seconds","seconds"),int64_int,(0)))inletmerge_nanos=Runtime'.Merge.mergeRuntime'.Spec.(basic((2,"nanos","nanos"),int32_int,(0)))infunt1t2->{seconds=(merge_secondst1.secondst2.seconds);nanos=(merge_nanost1.nanost2.nanos);}letspec()=Runtime'.Spec.(basic((1,"seconds","seconds"),int64_int,(0))^::basic((2,"nanos","nanos"),int32_int,(0))^::nil)letto_proto'=letserialize=Runtime'.apply_lazy(fun()->Runtime'.Serialize.serialize(spec()))infunwriter{seconds;nanos}->serializewritersecondsnanosletto_protot=letwriter=Runtime'.Writer.init()into_proto'writert;writerletfrom_proto_exn=letconstructorsecondsnanos={seconds;nanos}inRuntime'.apply_lazy(fun()->Runtime'.Deserialize.deserialize(spec())constructor)letfrom_protowriter=Runtime'.Result.catch(fun()->from_proto_exnwriter)letto_jsonoptions=letserialize=Runtime'.Serialize_json.serialize~message_name:(name())(spec())optionsinfun{seconds;nanos}->serializesecondsnanosletfrom_json_exn=letconstructorsecondsnanos={seconds;nanos}inRuntime'.apply_lazy(fun()->Runtime'.Deserialize_json.deserialize~message_name:(name())(spec())constructor)letfrom_jsonjson=Runtime'.Result.catch(fun()->from_json_exnjson)endendend