urbit/gen164/3/rap.c

87 lines
1.8 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/rap.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
2014-09-04 01:33:18 +04:00
u2_noun
u2_cqc_rap(u2_atom a,
u2_noun b)
2013-09-29 00:21:18 +04:00
{
2014-08-20 05:39:48 +04:00
if ( u2_ne(u2_co_is_cat(a)) || (a >= 32) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
}
else {
2014-08-20 05:39:48 +04:00
c3_g a_g = a;
c3_w tot_w = 0;
c3_w* sal_w;
2013-09-29 00:21:18 +04:00
/* Measure and validate the slab required.
*/
{
u2_noun cab = b;
while ( 1 ) {
u2_noun h_cab;
c3_w len_w;
2014-08-20 05:39:48 +04:00
if ( 0 == cab ) {
2013-09-29 00:21:18 +04:00
break;
}
2014-08-20 05:39:48 +04:00
else if ( u2_no == u2du(cab) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
}
2014-08-20 05:39:48 +04:00
else if ( u2_no == u2ud(h_cab = u2h(cab)) ) {
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
}
2014-08-20 05:39:48 +04:00
else if ( (tot_w + (len_w = u2_cr_met(a_g, h_cab))) < tot_w ) {
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
}
tot_w += len_w;
2014-08-20 05:39:48 +04:00
cab = u2t(cab);
2013-09-29 00:21:18 +04:00
}
if ( 0 == tot_w ) {
2014-08-20 05:39:48 +04:00
return 0;
2013-09-29 00:21:18 +04:00
}
2014-08-20 05:39:48 +04:00
if ( 0 == (sal_w = u2_ca_slaq(a_g, tot_w)) ) {
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
}
}
/* Chop the list atoms in.
*/
{
u2_noun cab = b;
c3_w pos_w = 0;
2014-08-20 05:39:48 +04:00
while ( 0 != cab ) {
u2_noun h_cab = u2h(cab);
c3_w len_w = u2_cr_met(a_g, h_cab);
2013-09-29 00:21:18 +04:00
2014-08-20 05:39:48 +04:00
u2_cr_chop(a_g, 0, len_w, pos_w, sal_w, h_cab);
2013-09-29 00:21:18 +04:00
pos_w += len_w;
2014-08-20 05:39:48 +04:00
cab = u2t(cab);
2013-09-29 00:21:18 +04:00
}
}
2014-08-20 05:39:48 +04:00
// return u2_ca_moot(sal_w);
return u2_ca_malt(sal_w);
2013-09-29 00:21:18 +04:00
}
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwc_rap(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a, b;
2014-08-20 05:39:48 +04:00
if ( (u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0)) ||
(u2_no == u2ud(a)) )
2013-09-29 00:21:18 +04:00
{
2014-08-20 05:39:48 +04:00
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqc_rap(a, b);
2013-09-29 00:21:18 +04:00
}
}