[jira] [Commented] (TS-3341) Add plugin APIs about server transaction status

2016-08-20 Thread William Bardwell (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3341?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15429561#comment-15429561
 ] 

William Bardwell commented on TS-3341:
--

I have some code, it seems to occasionally claim that things were aborted that 
don't look like they were...when I get some slack I would still like to deal 
with this.

> Add plugin APIs about server transaction status
> ---
>
> Key: TS-3341
> URL: https://issues.apache.org/jira/browse/TS-3341
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: TS API
>Reporter: William Bardwell
>Assignee: William Bardwell
> Fix For: sometime
>
>
> {code}
> // Indicates if the connection to the client was aborted,
> // will not be true if the client closed cleanly at the end
> // of the transaction.
> int
> TSHttpTxnServerTransactionClientAbortGet(TSHttpTxn txnp)
> {
>   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
>   HttpTransact::State *s = &(((HttpSM *) txnp)->t_state);
>   return (s->client_info.abort == HttpTransact::ABORTED);
> }
> {code}
> {code}
> // Indicates if the transaction with the origin server is complete.
> // Will be true if the connection to the origin never started or
> // failed, as well as if it finished successfully.  If this is checked
> // to early or for a cache hit, it will return true.
> int
> TSHttpTxnServerTransactionCompleteGet(TSHttpTxn txnp)
> {
>   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
>   HttpTransact::State *s = &(((HttpSM *) txnp)->t_state);
>   return ((TSServerState)s->current.state != TS_SRVSTATE_CONNECTION_ALIVE) ||
> (s->current.server ? (s->current.server->state == 
> HttpTransact::TRANSACTION_COMPLETE):false);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3341) Add plugin APIs about server transaction status

2016-08-16 Thread Bryan Call (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3341?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15423436#comment-15423436
 ] 

Bryan Call commented on TS-3341:


[~wbardwel]  Are you going to work on this?  If not please close.

> Add plugin APIs about server transaction status
> ---
>
> Key: TS-3341
> URL: https://issues.apache.org/jira/browse/TS-3341
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: TS API
>Reporter: William Bardwell
>Assignee: William Bardwell
> Fix For: sometime
>
>
> {code}
> // Indicates if the connection to the client was aborted,
> // will not be true if the client closed cleanly at the end
> // of the transaction.
> int
> TSHttpTxnServerTransactionClientAbortGet(TSHttpTxn txnp)
> {
>   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
>   HttpTransact::State *s = &(((HttpSM *) txnp)->t_state);
>   return (s->client_info.abort == HttpTransact::ABORTED);
> }
> {code}
> {code}
> // Indicates if the transaction with the origin server is complete.
> // Will be true if the connection to the origin never started or
> // failed, as well as if it finished successfully.  If this is checked
> // to early or for a cache hit, it will return true.
> int
> TSHttpTxnServerTransactionCompleteGet(TSHttpTxn txnp)
> {
>   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
>   HttpTransact::State *s = &(((HttpSM *) txnp)->t_state);
>   return ((TSServerState)s->current.state != TS_SRVSTATE_CONNECTION_ALIVE) ||
> (s->current.server ? (s->current.server->state == 
> HttpTransact::TRANSACTION_COMPLETE):false);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3341) Add plugin APIs about server transaction status

2015-02-02 Thread Leif Hedstrom (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3341?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14302282#comment-14302282
 ] 

Leif Hedstrom commented on TS-3341:
---

[~wbardwel] It sounds like you are suggesting a new API? If so, please go 
through the process for this, documented at

https://cwiki.apache.org/confluence/display/TS/API+Review+Process

Thanks!

 Add plugin APIs about server transaction status
 ---

 Key: TS-3341
 URL: https://issues.apache.org/jira/browse/TS-3341
 Project: Traffic Server
  Issue Type: Improvement
  Components: TS API
Reporter: William Bardwell
Assignee: William Bardwell
 Fix For: 5.3.0


 {code}
 int
 TSHttpTxnServerTransactionClientAbortGet(TSHttpTxn txnp)
 {
   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
   HttpTransact::State *s = (((HttpSM *) txnp)-t_state);
   return (s-client_info.abort == HttpTransact::ABORTED);
 }
 {code}
 {code}
 int
 TSHttpTxnServerTransactionCompleteGet(TSHttpTxn txnp)
 {
   sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS);
   HttpTransact::State *s = (((HttpSM *) txnp)-t_state);
   return ((TSServerState)s-current.state != TS_SRVSTATE_CONNECTION_ALIVE) ||
 (s-current.server ? (s-current.server-state == 
 HttpTransact::TRANSACTION_COMPLETE):false);
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)