123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803 |
- #include "cmPrefix.h"
- #include "cmGlobal.h"
- #include "cmRpt.h"
- #include "cmErr.h"
- #include "cmCtx.h"
- #include "cmMem.h"
- #include "cmMallocDebug.h"
- #include "cmLinkedHeap.h"
- #include "cmText.h"
-
- #include "cmFloatTypes.h"
- #include "cmVectOps.h"
-
-
- typedef struct cmTextSys_str
- {
- cmErr_t err;
- cmLHeapH_t lhH;
- cmChar_t* buf;
- } cmTextSys_t;
-
- cmTextSysH_t cmTextSysNullHandle = cmSTATIC_NULL_HANDLE;
- cmTextSysH_t _cmTextSysGlobalH = cmSTATIC_NULL_HANDLE;
-
- cmTextSys_t* _cmTextSysHandleToPtr( cmTextSysH_t h )
- {
- cmTextSys_t* p = (cmTextSys_t*)h.h;
- assert(p != NULL);
- return p;
- }
-
- cmTxRC_t _cmTextSysFinalize( cmTextSys_t* p )
- {
- cmTxRC_t rc = kOkTxRC;
-
- if( cmLHeapIsValid(p->lhH) )
- cmLHeapDestroy(&p->lhH);
-
- cmMemFree(p->buf);
-
- cmMemFree(p);
- return rc;
- }
-
- cmTxRC_t cmTextSysInitialize( cmCtx_t* ctx, cmTextSysH_t* hp )
- {
- cmTxRC_t rc;
- if((rc = cmTextSysFinalize(hp)) != kOkTxRC )
- return rc;
-
- cmTextSys_t* p = cmMemAllocZ(cmTextSys_t,1);
-
- cmErrSetup(&p->err,&ctx->rpt,"Text System");
-
- if( cmLHeapIsValid( p->lhH = cmLHeapCreate( 8192, ctx )) == false )
- {
- rc = cmErrMsg(&p->err,kLHeapFailTxRC,"Linked Heap create failed.");
- goto errLabel;
- }
-
- hp->h = p;
-
- errLabel:
- return rc;
- }
-
- cmTxRC_t cmTextSysFinalize( cmTextSysH_t* hp )
- {
- cmTxRC_t rc = kOkTxRC;
-
- if( hp == NULL || cmTextSysIsValid(*hp)==false )
- return kOkTxRC;
-
- cmTextSys_t* p = _cmTextSysHandleToPtr(*hp);
-
- if((rc = _cmTextSysFinalize(p)) == kOkTxRC )
- {
- hp->h = NULL;
- }
-
- return rc;
- }
-
- bool cmTextSysIsValid( cmTextSysH_t h )
- { return h.h != NULL; }
-
-
- cmChar_t* _cmTextSysVPrintf( cmTextSysH_t h, cmLHeapH_t lhH, bool staticFl, const cmChar_t* fmt, va_list vl )
- {
- va_list vl1;
- va_copy(vl1,vl);
-
- cmTextSys_t* p = cmLHeapIsValid(lhH) ? NULL : _cmTextSysHandleToPtr(h);
- unsigned n = vsnprintf(NULL,0,fmt,vl);
- cmChar_t* s = NULL;
-
- if( staticFl )
- s = p->buf = cmMemResize(cmChar_t,p->buf,n+1);
- else
- s = cmLhAllocZ(cmLHeapIsValid(lhH) ? lhH : p->lhH,cmChar_t,n+1);
-
- unsigned m = vsnprintf(s,n+1,fmt,vl1);
- assert(m==n);
- s[n] = 0;
- va_end(vl1);
- return s;
- }
-
- cmChar_t* cmTextSysVPrintfH( cmLHeapH_t lhH, const cmChar_t* fmt, va_list vl )
- { return _cmTextSysVPrintf( cmTextSysNullHandle, lhH, false, fmt, vl ); }
-
- cmChar_t* cmTextSysPrintfH( cmLHeapH_t lhH, const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start( vl, fmt );
- cmChar_t* s = cmTextSysVPrintfH(lhH,fmt,vl);
- va_end(vl);
- return s;
- }
-
- cmChar_t* cmTextSysVPrintfS( cmTextSysH_t h, const cmChar_t* fmt, va_list vl )
- { return _cmTextSysVPrintf(h,cmLHeapNullHandle,true,fmt,vl); }
-
- cmChar_t* cmTextSysPrintfS( cmTextSysH_t h, const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmChar_t* s = cmTextSysVPrintfS(h,fmt,vl);
- va_end(vl);
- return s;
- }
-
- cmChar_t* cmTextSysVPrintf( cmTextSysH_t h, const cmChar_t* fmt, va_list vl )
- { return _cmTextSysVPrintf(h,cmLHeapNullHandle,false,fmt,vl); }
-
- cmChar_t* cmTextSysPrintf( cmTextSysH_t h, const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmChar_t* s = cmTextSysVPrintf(h,fmt,vl);
- va_end(vl);
- return s;
- }
-
- void cmTextSysFreeStr( cmTextSysH_t h, const cmChar_t* s )
- {
- cmTextSys_t* p = _cmTextSysHandleToPtr(h);
- cmLhFree(p->lhH,(cmChar_t*)s);
- }
-
- bool cmTextSysIsStored(cmTextSysH_t h, const cmChar_t* s )
- {
- cmTextSys_t* p = _cmTextSysHandleToPtr(h);
- return cmLHeapIsPtrInHeap(p->lhH,s);
- }
-
-
- //
- // Global interface
- //
-
-
-
- cmTxRC_t cmTsInitialize( cmCtx_t* ctx )
- { return cmTextSysInitialize(ctx,&_cmTextSysGlobalH); }
-
- cmTxRC_t cmTsFinalize()
- { return cmTextSysFinalize(&_cmTextSysGlobalH); }
-
- bool cmTsIsValid()
- { return cmTextSysIsValid(_cmTextSysGlobalH); }
-
- cmChar_t* cmTsVPrintfS( const cmChar_t* fmt, va_list vl )
- { return cmTextSysVPrintfS(_cmTextSysGlobalH,fmt,vl); }
-
- cmChar_t* cmTsPrintfS( const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmChar_t* s = cmTsVPrintfS(fmt,vl);
- va_end(vl);
- return s;
- }
-
- cmChar_t* cmTsVPrintfH( cmLHeapH_t h, const cmChar_t* fmt, va_list vl )
- { return cmTextSysVPrintfH(h,fmt,vl); }
-
- cmChar_t* cmTsPrintfH( cmLHeapH_t h, const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmChar_t* s = cmTsVPrintfH(h,fmt,vl);
- va_end(vl);
- return s;
- }
-
- cmChar_t* cmTsVPrintf( const cmChar_t* fmt, va_list vl )
- { return cmTextSysVPrintf(_cmTextSysGlobalH,fmt,vl); }
-
- cmChar_t* cmTsPrintf( const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmChar_t* s = cmTsVPrintf(fmt,vl);
- va_end(vl);
- return s;
- }
-
- void cmTsFreeStr( const cmChar_t* s )
- { cmTextSysFreeStr(_cmTextSysGlobalH,s); }
-
- bool cmTsIsStored( const cmChar_t* s )
- { return cmTextSysIsStored(_cmTextSysGlobalH,s); }
-
- cmChar_t* cmTsVPrintfP( cmChar_t* s, const cmChar_t* fmt, va_list vl )
- {
- va_list vl1;
- va_copy(vl1,vl);
-
- int n = vsnprintf(NULL,0,fmt,vl);
- assert(n != -1);
-
- s = cmMemResize(cmChar_t,s,n+1);
-
- unsigned m = vsnprintf(s,n+1,fmt,vl1);
- assert(m==n);
- s[n] = 0;
- return s;
- }
-
- cmChar_t* cmTsPrintfP( cmChar_t* s, const cmChar_t* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- s = cmTsVPrintfP(s,fmt,vl);
- va_end(vl);
- return s;
- }
-
- void _cmTxError( cmErr_t* err, cmTxRC_t rc, const char* fmt, ... )
- {
- va_list vl;
- va_start(vl,fmt);
- cmErrVMsg(err,rc,fmt,vl);
- va_end(vl);
- }
-
-
- cmTxRC_t _cmTxRptError( cmErr_t* err, const char* msg, const char* inputText )
- {
- if( err == NULL )
- return kOkTxRC;
-
- if( inputText == NULL )
- {
- _cmTxError(err,kNullTxRC,"Text to %s conversion failed due to NULL input text.");
- return kNullTxRC;
- }
-
- if( errno != 0 )
- {
- _cmTxError(err,kCvtErrTxRC,"Text to %s conversion failed on input '%s'.",msg,inputText);
- return kCvtErrTxRC;
- }
-
- return kOkTxRC;
- }
-
-
- cmTxRC_t cmTextToInt(const char* text, int* vp, cmErr_t* err )
- {
- assert( vp != NULL );
-
- cmTxRC_t rc = kOkTxRC;
- int en = errno;
-
- errno = 0;
- *vp = text==NULL ? 0 : strtol(text,NULL,0);
- rc = _cmTxRptError(err,"integer",text);
- errno = en;
-
- return rc;
- }
-
- cmTxRC_t cmTextToUInt( const char* text, unsigned* vp, cmErr_t* err )
- {
- assert( vp != NULL );
-
- cmTxRC_t rc = kOkTxRC;
- int en = errno;
-
- errno = 0;
- *vp = text==NULL ? 0 : (unsigned)strtol(text,NULL,0);
-
- rc = _cmTxRptError(err,"unsigned integer",text);
-
- errno = en;
-
- return rc;
- }
-
- cmTxRC_t cmTextToFloat( const char* text, float* vp, cmErr_t* err )
- {
- assert( vp != NULL );
-
- cmTxRC_t rc = kOkTxRC;
- int en = errno;
- errno = 0;
- *vp = text==NULL ? 0 : (float)strtod(text,NULL);
-
- rc = _cmTxRptError(err,"float",text);
-
- errno = en;
-
- return rc;
- }
-
- cmTxRC_t cmTextToDouble( const char* text, double* vp, cmErr_t* err )
- {
- assert( vp != NULL );
-
- cmTxRC_t rc = kOkTxRC;
- int en = errno;
- errno = 0;
- *vp = text==NULL ? 0 : strtod(text,NULL);
-
- rc = _cmTxRptError(err,"double",text);
-
- errno = en;
-
- return rc;
- }
-
- cmTxRC_t cmTextToBool( const char* text, bool* vp, cmErr_t* err )
- {
- assert( vp != NULL );
-
- cmTxRC_t rc = kOkTxRC;
-
- if( strcasecmp(text,"true") == 0 || strcasecmp(text,"0") == 0 )
- *vp = true;
- else
- if( strcasecmp(text,"false") == 0 || strcasecmp(text,"1") == 0 )
- *vp = false;
- else
- rc = _cmTxRptError(err,"bool",text);
-
-
- return rc;
-
- }
-
-
- cmChar_t* cmTextNextNonWhiteOrEos( cmChar_t* s )
- {
- assert( s != NULL );
-
- while( (*s) && isspace(*s) )
- ++s;
-
- return s;
- }
-
- const cmChar_t* cmTextNextNonWhiteOrEosC( const cmChar_t* s )
- { return cmTextNextNonWhiteOrEos((cmChar_t*)s); }
-
-
- cmChar_t* cmTextNextNonWhite( cmChar_t* s )
- { //return (*(s=cmTextNextNonWhiteOrEos(s))) == 0 ? NULL : s;
- s=cmTextNextNonWhiteOrEos(s);
- if( *s == 0 )
- return NULL;
- return s;
- }
-
- const cmChar_t* cmTextNextNonWhiteC( const cmChar_t* s )
- { return cmTextNextNonWhite((cmChar_t*)s); }
-
-
- cmChar_t* cmTextPrevNonWhiteOrBos( cmChar_t* s0, const cmChar_t* s1 )
- {
- assert( s0!=NULL && s1!=NULL && s0 <= s1 );
-
- for(; s0 < s1; --s1 )
- if( !isspace(*s1) )
- break;
-
- return (cmChar_t*)s1;
- }
-
- const cmChar_t* cmTextPrevNonWhiteOrBosC( const cmChar_t* s0, const cmChar_t* s1 )
- { return cmTextPrevNonWhiteOrBos((cmChar_t*)s0,s1); }
-
- cmChar_t* cmTextPrevNonWhite( cmChar_t* s0, const cmChar_t* s1 )
- {
- cmChar_t* s2;
- if((s2 = cmTextPrevNonWhiteOrBos(s0,s1)) == s0 )
- return NULL;
- return s2;
- }
-
- const cmChar_t* cmTextPrevNonWhiteC( const cmChar_t* s0, const cmChar_t* s1 )
- { return cmTextPrevNonWhite((cmChar_t*)s0,s1); }
-
- cmChar_t* cmTextNextWhiteOrEos( cmChar_t* s )
- {
- assert( s!=NULL);
- while(*s && !isspace(*s) )
- ++s;
- return s;
- }
-
- const cmChar_t* cmTextNextWhiteOrEosC( const cmChar_t* s )
- { return cmTextNextWhiteOrEos((cmChar_t*)s); }
-
- cmChar_t* cmTextNextWhite( cmChar_t* s )
- { return (*(s=cmTextNextWhiteOrEos(s)))!=0 ? s : NULL; }
-
- const cmChar_t* cmTextNextWhiteC( const cmChar_t* s )
- { return cmTextNextWhite((cmChar_t*)s); }
-
- cmChar_t* cmTextPrevWhiteOrBos( cmChar_t* s0, const cmChar_t* s1 )
- {
- assert( s0!=NULL && s1!=NULL && s0 <= s1 );
- while( s1>s0 && !isspace(*s1) )
- --s1;
- return (cmChar_t*)s1;
- }
-
- const cmChar_t* cmTextPrevWhiteOrBosC( const cmChar_t* s0, const cmChar_t* s1 )
- { return cmTextPrevWhiteOrBos((cmChar_t*)s0,s1); }
-
- cmChar_t* cmTextPrevWhite( cmChar_t* s0, const cmChar_t* s1 )
- {
- cmChar_t* s2;
- if((s2 = cmTextPrevWhiteOrBos(s0,s1)) == s0 )
- return NULL;
- return s2;
- }
-
- const cmChar_t* cmTextPrevWhiteC( const cmChar_t* s0, const cmChar_t* s1 )
- { return cmTextPrevWhite((cmChar_t*)s0,s1); }
-
- cmChar_t* cmTextBegOfLine( cmChar_t* s0, const cmChar_t* s1 )
- {
- assert( s1!=NULL && s0!=NULL && s1 >= s0 );
-
- if( s0 == s1 )
- return s0;
-
- --s1;
-
- while( s1>s0 && *s1 != '\n' )
- --s1;
-
- if( *s1 == '\n' )
- ++s1;
-
- return (cmChar_t*)s1;
-
- }
-
- const cmChar_t* cmTextBegOfLineC( const cmChar_t* s0, const cmChar_t* s1 )
- { return cmTextBegOfLine((cmChar_t*)s0,s1); }
-
- cmChar_t* cmTextEndOfLine( cmChar_t* s )
- {
-
- assert( s!=NULL);
-
- while( *s!=0 && *s != '\n' )
- ++s;
-
- return s;
-
- }
-
- const cmChar_t* cmTextEndOfLineC( const cmChar_t* s )
- { return cmTextEndOfLine((cmChar_t*)s); }
-
- cmChar_t* cmTextLastNonWhiteChar( const cmChar_t* s )
- {
- unsigned n;
- if(s==NULL || (n = strlen(s)) == 0 )
- return NULL;
-
- cmChar_t* s0 = (cmChar_t*)s + n-1;
-
- for(; s0>=s; --s0)
- if( !isspace(*s0) )
- return s0;
-
- return NULL;
-
- }
-
- const cmChar_t* cmTextLastNonWhiteCharC( const cmChar_t* s )
- { return cmTextLastNonWhiteChar(s); }
-
-
- void cmTextShrinkS( cmChar_t* s, const cmChar_t* t, unsigned tn )
- { cmVOC_Shrink(s,strlen(s)+1,t,tn); }
-
- void cmTextShrinkSN(cmChar_t* s, unsigned sn, const cmChar_t* t, unsigned tn )
- { cmVOC_Shrink(s,sn,t,tn); }
-
- void cmTextClip( cmChar_t* s, unsigned n )
- {
- if( n == 0 || s == NULL || strlen(s)==0 )
- return;
-
- if( n >= strlen(s) )
- {
- s[0]=0;
- return;
- }
-
- s[ strlen(s)-n ] = 0;
-
- }
-
-
- cmChar_t* cmTextExpandS( cmChar_t* s, const cmChar_t* t, unsigned tn )
- { return cmVOC_Expand(s,strlen(s)+1,t,tn); }
-
- cmChar_t* cmTextReplaceSN( cmChar_t* s, const cmChar_t* t, unsigned tn, const cmChar_t* u, unsigned un )
- {
- unsigned n = strlen(s)+1;
- return cmVOC_Replace(s,&n,t,tn,u,un);
- }
-
- cmChar_t* cmTextReplaceS( cmChar_t* s, const cmChar_t* t, unsigned tn, const cmChar_t* u )
- { return cmTextReplaceSN(s,t,tn,u,u==NULL ? 0 : strlen(u)); }
-
- cmChar_t* _cmTextReplace( cmChar_t* s, const cmChar_t* t, const cmChar_t* u, unsigned n )
- {
- // we will go into an endless loop if 't' is contained in 'u' and n > 1.
- assert( s!= NULL && t!=NULL && u!=NULL && (n==1 || strstr(u,t) == NULL) );
-
- int tn = strlen(t);
- cmChar_t* c = NULL;
- unsigned i = 0;
-
- while( (c = strstr(s,t)) != NULL )
- {
- s = cmTextReplaceS(s,c,tn,u);
-
- assert(s!=NULL);
-
- ++i;
- if( n!=cmInvalidCnt && i>=n)
- break;
-
- };
-
- return s;
- }
-
- cmChar_t* cmTextReplaceAll( cmChar_t* s, const cmChar_t* t, const cmChar_t* u )
- { return _cmTextReplace(s,t,u,cmInvalidCnt); }
-
- cmChar_t* cmTextReplaceFirst( cmChar_t* s, const cmChar_t* t, const cmChar_t* u )
- { return _cmTextReplace(s,t,u,1); }
-
- cmChar_t* cmTextInsertSN( cmChar_t* s, const cmChar_t* t, const cmChar_t* u, unsigned un )
- {
- unsigned n = strlen(s)+1;
- return cmVOC_Replace(s,&n,t,0,u,un);
- }
-
- cmChar_t* cmTextInsertS( cmChar_t* s, const cmChar_t* t, const cmChar_t* u )
- { return cmTextInsertSN(s,t,u,u==NULL?0:strlen(u)); }
-
-
- cmChar_t* cmTextAppend( cmChar_t* s, unsigned* sn, const cmChar_t* u, unsigned un )
- { return cmVOC_Replace(s,sn,s+(*sn),0,u,un); }
-
- cmChar_t* cmTextAppendSN( cmChar_t* s, const cmChar_t* u, unsigned un )
- {
- unsigned sn = s==NULL ? 0 : strlen(s);
- if( un > 0 )
- {
- s = cmTextAppend(s,&sn,u,un+1);
- s[sn-1] = 0;
- }
- return s;
- }
-
- // append u[un] to s[] and append terminating zero.
- cmChar_t* cmTextAppendSNZ( cmChar_t* s, const cmChar_t* u, unsigned un )
- {
- unsigned sn = s==NULL ? 0 : strlen(s)+1;
- cmChar_t z = 0;
- s = cmTextAppend(s,&sn,u,un);
- return cmTextAppend(s,&sn,&z,1);
- }
-
- // both s[] and u[] are strz's
- cmChar_t* cmTextAppendSS( cmChar_t* s, const cmChar_t* u )
- { return cmTextAppendSN(s,u,strlen(u)); }
-
-
- cmChar_t* cmTextAppendChar( cmChar_t* s, cmChar_t c, unsigned n )
- {
- if( n <= 0 )
- return s;
-
- cmChar_t t[ n+1 ];
- memset(t,' ',n);
- t[n] = 0;
- return cmTextAppendSS(s,t);
- }
-
- bool cmTextIsEmpty( const cmChar_t* s )
- {
- if( s!=NULL )
- for(; *s; ++s )
- if( !isspace(*s) )
- return false;
- return true;
- }
-
- bool cmTextIsNotEmpty( const cmChar_t* s )
- { return !cmTextIsEmpty(s); }
-
- int cmTextCmp( const cmChar_t* s0, const cmChar_t* s1 )
- {
- if( s0 == NULL && s1 == NULL )
- return 0;
-
- if( s0 == NULL || s1 == NULL )
- {
- if( s0 == NULL )
- return -1;
- return 1;
- }
-
- return strcmp(s0,s1);
- }
-
- cmChar_t* cmTextLine( cmChar_t* s, unsigned line )
- {
- assert( line>0);
-
- unsigned i;
-
- // count down to the code line containing the tag reference
- for(i=0; i<line-1; ++i)
- {
- s = strchr(s,'\n');
-
- if( s == NULL )
- return NULL;
-
- ++s;
- }
-
- return s+1;
- }
-
- const cmChar_t* cmTextLineC( const cmChar_t* s, unsigned line )
- { return cmTextLine((cmChar_t*)s,line); }
-
-
- cmChar_t* cmTextRemoveConsecutiveSpaces( cmChar_t* s )
- {
- if( s==NULL || strlen(s) < 2 )
- return s;
-
- int i=1;
- while( s[i] )
- {
- if( isspace(s[i-1]) && isspace(s[i]) )
- cmTextShrinkS(s, s+i, 1 );
- else
- ++i;
- }
-
- return s;
- }
-
- cmChar_t* cmTextColumize( cmChar_t* s, unsigned colCnt )
- {
- if( s==NULL || strlen(s) < colCnt )
- return s;
-
- int i = 0;
- int c = 0;
- cmChar_t* c0 = NULL;
-
- for(; s[i]; ++i)
- {
- // remove any existing newlines
- if( s[i] == '\n' )
- s[i] = ' ';
-
- // track the last space (which is a potential wrap point).
- if( isspace(s[i]) )
- c0 = s+i;
-
- if( c < colCnt )
- ++c;
- else
- {
-
- // if there is no previous wrap point ...
- if( c0 == NULL )
- {
- // ... then insert one
- s = cmTextInsertS(s,s+i,"\n");
- }
- else
- {
- // replace the wrap point with a '\n'
- *c0 = '\n';
- }
-
- c = 0;
- c0 = NULL;
- }
- }
-
- return s;
- }
-
- cmChar_t* _cmTextPrefixRows( cmChar_t* s, const cmChar_t* t )
- {
- if( s==NULL || t==NULL || strlen(t)==0 )
- return s;
-
- int i;
-
- for(i=0; s[i]; ++i)
- if( i==0 || s[i]=='\n')
- {
- cmChar_t* u = s + (i==0 ? 0 : i+1);
- s = cmTextInsertS(s,u,t);
- }
- return s;
- }
-
- cmChar_t* cmTextIndentRows( cmChar_t* s, unsigned indent )
- {
- if( s==NULL || indent==0 )
- return s;
-
- cmChar_t* t = cmMemAllocZ( cmChar_t, indent+1 );
- cmVOC_Fill(t,indent,' ');
- t[indent] = 0;
-
- s = _cmTextPrefixRows(s,t);
-
- cmMemFree(t);
- return s;
- }
-
- cmChar_t* cmTextPrefixRows( cmChar_t* s, const cmChar_t* t )
- { return _cmTextPrefixRows(s,t); }
-
-
- cmChar_t* cmTextTrimRows( cmChar_t* s )
- {
- bool fl = true;
- int i = 0;
- while( s[i] )
- {
- if( s[i] == '\n' )
- {
- fl = true;
- ++i;
- }
- else
- {
- if( isspace(s[i]) && fl )
- cmTextShrinkS(s, s+i, 1 );
- else
- {
- fl = false;
- ++i;
- }
- }
- }
-
- return s;
- }
-
-
- cmChar_t* cmTextEatLeadingSpace( cmChar_t* s )
- {
- if( s == NULL )
- return s;
-
- while( *s )
- {
- if( !isspace(*s) )
- break;
-
- cmTextShrinkS(s,s,1);
- }
-
- return s;
- }
|