.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Rinci::resmeta 3pm" .TH Rinci::resmeta 3pm 2024-01-20 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Rinci::resmeta \- Function/method result metadata .SH "SPECIFICATION VERSION" .IX Header "SPECIFICATION VERSION" .Vb 1 \& 1.1 .Ve .SH VERSION .IX Header "VERSION" This document describes version 1.1.104 of Rinci::resmeta (from Perl distribution Rinci), released on 2023\-09\-30. .SH INTRODUCTION .IX Header "INTRODUCTION" This document describes metadata for function/method result. This specification is part of Rinci. Please do a read up on it first, if you have not already done so. .SH SPECIFICATION .IX Header "SPECIFICATION" There are currently several properties being used: .SS cmdline.* .IX Subsection "cmdline.*" Interpreted by Perinci::CmdLine. See its documentation for more detail. .SS content_type .IX Subsection "content_type" Value: str* (MIME content type) .PP Can be used to describe the MIME content type of result. Example enveloped result (in Perl): .PP .Vb 1 \& [200, "OK", "...", {content_type => "image/jpeg"}] .Ve .PP See also "Properties: func_content_type.*". .PP Note: borrowed from HTTP. .SS func.* .IX Subsection "func.*" Value: any. .PP These properties allow function to return extra results. Usually done to avoid breaking format of existing result (to maintain API compatibility). The attributes after \f(CW\*(C`func.\*(C'\fR is up to the respective function. An example is the \&\f(CWget_args_from_argv()\fR function in the Perinci::Sub::GetArgs::Argv Perl module. The function returns \f(CW$args\fR but from v0.26 it also wants to give hints about whether or not there are missing arguments. It can do this via \&\f(CW\*(C`func.missing_arg\*(C'\fR result metadata. Some other examples (in Perl): .PP .Vb 9 \& # result from check_user() \& [200, "OK", 1, # 1 means valie \& { \& "func.detail" => { # detailed check result \& last_login => \*(Aq2021\-01\-21T01:55:40Z\*(Aq, \& password_secure => 1, \& quota_exceeded => 0, \& }, \& }] .Ve .SS func_content_type.* .IX Subsection "func_content_type.*" Value: str* (MIME content type) .PP Can be used to describe the MIME content type of each extra result. Example (in Perl): .PP .Vb 2 \& func.attachment => \*(Aq...\*(Aq, \& func_content_type.attachment => \*(Aqimage/jpeg\*(Aq, .Ve .PP See also "Property: content_type". .SS len .IX Subsection "len" Value: int* .PP The \f(CW\*(C`len\*(C'\fR, \f(CW\*(C`part_start\*(C'\fR and \f(CW\*(C`part_len\*(C'\fR properties specifies the range of data when function sends partial result. Suppose your function is returning a partial content of a large file where total file size is 24500000 bytes and the returned content is from bytes 10000000 to 15000000, then \f(CW\*(C`len\*(C'\fR is 24500000, \f(CW\*(C`part_len\*(C'\fR is 5000000, and \f(CW\*(C`part_start\*(C'\fR is 10000000. When returning partial content, status will be 206. .SS location .IX Subsection "location" Value: str* (URL) .PP Can be used to specify that the content is elsewhere. Used in combination with 301 or 302 result status. Example (in Perl): .PP .Vb 2 \& # result from a function that generates a chart \& [301, "Moved", undef, {content_type => "image/jpeg", location=>"file:/tmp/asd9uxzw.png"}] .Ve .PP Note: borrowed from HTTP. .SS logs .IX Subsection "logs" Value: array[hash] .PP Store log of events happening to this result, stored chronologically (older first). Each log should be a hash which should have at least the following keys: \&\f(CW\*(C`time\*(C'\fR (Unix timestamp), \f(CW\*(C`type\*(C'\fR (string). .PP Normally, the first element of the log will contain information about who produced the result and where/when. It has the \f(CW\*(C`type\*(C'\fR key with the value of \&\f(CW\*(C`create\*(C'\fR. It should be a hash with the following keys: .IP \(bu 4 package .Sp Package (namespace) where this result is produced. .IP \(bu 4 file .Sp File name where the result is created. Might be a relative or absolute path. .IP \(bu 4 line .Sp Line number where the result is created. .IP \(bu 4 func .Sp Function name where this result is produced. .IP \(bu 4 stack_trace .Sp Optional, a stack trace. In Perl this can be produced by using << [\fBcaller\fR\|(1), \&\fBcaller\fR\|(2), ...] >>. .SS part_len .IX Subsection "part_len" Value: int* .PP See "Property: len" .SS part_start .IX Subsection "part_start" Value: int* .PP See "Property: len". .SS perm_err .IX Subsection "perm_err" Value: bool .PP Indicate that error is permanent (instead of temporary/transient). This is to provide a feature like that found in SMTP/POP protocol, where 4xx codes indicate transient errors and 5xx permanent ones. .SS prev .IX Subsection "prev" Value: any .PP Store "previous result". Result MUST be enveloped. Usually useful when tracing errors, especially in conjunction with \f(CW\*(C`logs\*(C'\fR: when reporting error that results from a call to another function, the original result can be set here, to preserve information. See Perinci::Sub::Util's \f(CWerr()\fR for a convenience function for this, and Perinci::CmdLine's way of displaying it. .PP Example: .PP .Vb 5 \& sub f1 { \& ... \& if (error) { return [500, "Can\*(Aqt f1: blah"] } \& ... \& } \& \& sub f2 { \& ... \& my $res = f1(...); \& if ($res is error) { return [500, "Can\*(Aqt f2", undef, {prev=>$res}] } \& ... \& } \& \& sub f3 { \& ... \& my $res = f1(...); \& if ($res is error) { return [500, "Can\*(Aqt f3", undef, {prev=>$res}] } \& } .Ve .SS results .IX Subsection "results" Value: array* .PP When a function returns an error response (in particular status 207, but other statuses can also use this), it can put detailed errors here. For example, a function which processed 5 items wanted to report that 2 items were successfully processed but the rest 3 failed: .PP .Vb 9 \& [207, "Multistatus", undef, { \& results => [ \& {status=>200, message=>"OK", item_id=>1}, \& {status=>403, message=>"Forbidden", item_id=>2}, \& {status=>404, message=>"Not found", item_id=>3}, \& {status=>500, message=>"Failed", item_id=>4}, \& {status=>200, message=>"OK", item_id=>5}, \& ], \& }] .Ve .PP Each result is a hash to be able to store \f(CW\*(C`status\*(C'\fR, \f(CW\*(C`message\*(C'\fR, as well as additional data like \f(CW\*(C`item_id\*(C'\fR or whatever the function wants. .PP Another example, a function wants to give information on what arguments fail validation: .PP .Vb 9 \& [400, "Some arguments fail validation", undef, { \& results => [ \& {status=>400, arg=>"name", message=>"Missing"}, \& {status=>400, arg=>"location/street", message=>"Missing"}, \& {status=>400, arg=>"age", message=>"Must be numbers only"}, \& {status=>400, arg=>"password", is_warning=>1, \& message=>"Should be longer than 4 characters"}, # warning only \& ], \& }] .Ve .SS schema .IX Subsection "schema" Value: sah::schema .PP Describe result's schema. Has lower precedence than schema from function metadata's result property. .SS stream .IX Subsection "stream" Value: bool* .PP If set to true, signify that result is an output stream. Usually in implementations the result will be a filehandle or an object with \f(CW\*(C`getline\*(C'\fR or \&\f(CW\*(C`getitem\*(C'\fR methods, where caller can then fetch data from it. .SS caption .IX Subsection "caption" Value: str* .PP Optional. .SS undo_data .IX Subsection "undo_data" Value: any .PP (DEPRECATED) Explained in \f(CW\*(C`undo\*(C'\fR feature section in Rinci::function. .SH FAQ .IX Header "FAQ" .SH HOMEPAGE .IX Header "HOMEPAGE" Please visit the project's homepage at . .SH SOURCE .IX Header "SOURCE" Source repository is at . .SH "SEE ALSO" .IX Header "SEE ALSO" Rinci .SH AUTHOR .IX Header "AUTHOR" perlancar .SH CONTRIBUTING .IX Header "CONTRIBUTING" To contribute, you can send patches by email/via RT, or send pull requests on GitHub. .PP Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via: .PP .Vb 1 \& % prove \-l .Ve .PP If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla\- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me. .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 by perlancar . .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. .SH BUGS .IX Header "BUGS" Please report any bugs or feature requests on the bugtracker website .PP When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.