/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include #include "nsXPCOM.h" #include "nsIComponentManager.h" #include "nsISupports.h" #include "nsServiceManagerUtils.h" #include "nsILineBreaker.h" #include "nsIWordBreaker.h" #include "nsLWBrkCIID.h" #include "nsStringAPI.h" #include "nsEmbedString.h" #define WORK_AROUND_SERVICE_MANAGER_ASSERT NS_DEFINE_CID(kLBrkCID, NS_LBRK_CID); NS_DEFINE_CID(kWBrkCID, NS_WBRK_CID); static char teng1[] = // 1 2 3 4 5 6 7 //01234567890123456789012345678901234567890123456789012345678901234567890123456789 "This is a test to test(reasonable) line break. This 0.01123 = 45 x 48."; static PRUint32 exp1[] = { 4,5,7,8,9,10,14,15,17,18,22,34,35,39,40,41,42,43,49,50,54,55,62,63,64,65, 67,68,69,70 }; static PRUint32 wexp1[] = { 4,5,7,8,9,10,14,15,17,18,22,23,33,34,35,39,43,48,49,50,54,55,56,57,62,63, 64,65,67,68,69,70,72 }; // 1 2 3 4 5 6 7 //01234567890123456789012345678901234567890123456789012345678901234567890123456789 static char teng2[] = "()((reasonab(l)e) line break. .01123=45x48."; static PRUint32 lexp2[] = { 2,12,15,17,18,22,23,24,30,31,37,38, }; static PRUint32 wexp2[] = { 4,12,13,14,15,16,17,18,22,24,29,30,31,32,37,38,43 }; // 1 2 3 4 5 6 7 //01234567890123456789012345678901234567890123456789012345678901234567890123456789 static char teng3[] = "It's a test to test(ronae ) line break...."; static PRUint32 exp3[] = { 4, 5, 6,7,11,12,14,15,19,25,27,28,32,33 }; static PRUint32 wexp3[] = { 4,5,6,7,11,12,14,15,19,20,25,26,27,28,32,33,38 }; static char ruler1[] = " 1 2 3 4 5 6 7 "; static char ruler2[] = "0123456789012345678901234567890123456789012345678901234567890123456789012"; PRBool TestASCIILB(nsILineBreaker *lb, const char* in, const PRUint32 len, const PRUint32* out, PRUint32 outlen) { NS_ConvertASCIItoUTF16 eng1(in); PRUint32 i,j; PRUint32 res[256]; PRBool ok = PR_TRUE; PRInt32 curr; for(i = 0, curr = 0; (curr != NS_LINEBREAKER_NEED_MORE_TEXT) && (i < 256); i++) { curr = lb->Next(eng1.get(), eng1.Length(), curr); res [i] = curr != NS_LINEBREAKER_NEED_MORE_TEXT ? curr : eng1.Length(); } if (i != outlen) { ok = PR_FALSE; printf("WARNING!!! return size wrong, expect %d but got %d \n", outlen, i); } printf("string = \n%s\n", in); printf("%s\n", ruler1); printf("%s\n", ruler2); printf("Expect = \n"); for(j=0;jNextWord(eng1.get(), eng1.Length(), curr); (curr != NS_WORDBREAKER_NEED_MORE_TEXT) && (i < 256); curr = lb->NextWord(eng1.get(), eng1.Length(), curr), i++) { res [i] = curr != NS_WORDBREAKER_NEED_MORE_TEXT ? curr : eng1.Length(); } if (i != outlen) { ok = PR_FALSE; printf("WARNING!!! return size wrong, expect %d but got %d\n", outlen, i); } printf("string = \n%s\n", in); printf("%s\n", ruler1); printf("%s\n", ruler2); printf("Expect = \n"); for(j=0;jNextWord(fragText.get(), fragText.Length(), cur); PRUint32 start = 0; for(PRUint32 j = 0; cur != NS_WORDBREAKER_NEED_MORE_TEXT ; j++) { result.Append(Substring(fragText, start, cur - start)); result.Append('^'); start = (cur >= 0 ? cur : cur - start); cur = wbk->NextWord(fragText.get(), fragText.Length(), cur); } result.Append(Substring(fragText, fragText.Length() - start)); if( i != (numOfFragment -1 )) { NS_ConvertASCIItoUTF16 nextFragText(wb[i+1]); PRBool canBreak = PR_TRUE; canBreak = wbk->BreakInBetween( fragText.get(), fragText.Length(), nextFragText.get(), nextFragText.Length()); if(canBreak) result.Append('^'); fragText.Assign(nextFragText); } } printf("Output From SamplePrintWordWithBreak() \n\n"); printf("[%s]\n", NS_ConvertUTF16toUTF8(result).get()); NS_IF_RELEASE(wbk); } void SampleFindWordBreakFromPosition(PRUint32 fragN, PRUint32 offset) { PRUint32 numOfFragment = sizeof(wb) / sizeof(char*); nsIWordBreaker *wbk = NULL; CallGetService(kWBrkCID, &wbk); NS_ConvertASCIItoUTF16 fragText(wb[fragN]); nsWordRange res = wbk->FindWord(fragText.get(), fragText.Length(), offset); PRBool canBreak; nsAutoString result(Substring(fragText, res.mBegin, res.mEnd-res.mBegin)); if((PRUint32)fragText.Length() == res.mEnd) // if we hit the end of the fragment { nsAutoString curFragText = fragText; for(PRUint32 p = fragN +1; p < numOfFragment ;p++) { NS_ConvertASCIItoUTF16 nextFragText(wb[p]); canBreak = wbk->BreakInBetween(curFragText.get(), curFragText.Length(), nextFragText.get(), nextFragText.Length()); if(canBreak) break; nsWordRange r = wbk->FindWord(nextFragText.get(), nextFragText.Length(), 0); result.Append(Substring(nextFragText, r.mBegin, r.mEnd - r.mBegin)); if((PRUint32)nextFragText.Length() != r.mEnd) break; nextFragText.Assign(curFragText); } } if(0 == res.mBegin) // if we hit the beginning of the fragment { nsAutoString curFragText = fragText; for(PRUint32 p = fragN ; p > 0 ;p--) { NS_ConvertASCIItoUTF16 prevFragText(wb[p-1]); canBreak = wbk->BreakInBetween(prevFragText.get(), prevFragText.Length(), curFragText.get(), curFragText.Length()); if(canBreak) break; nsWordRange r = wbk->FindWord(prevFragText.get(), prevFragText.Length(), prevFragText.Length()); result.Insert(Substring(prevFragText, r.mBegin, r.mEnd - r.mBegin), 0); if(0 != r.mBegin) break; prevFragText.Assign(curFragText); } } printf("Output From SamplePrintWordWithBreak() \n\n"); printf("[%s]\n", NS_ConvertUTF16toUTF8(result).get()); NS_IF_RELEASE(wbk); } // Main int main(int argc, char** argv) { NS_InitXPCOM2(nsnull, nsnull, nsnull); // -------------------------------------------- printf("Test Line Break\n"); PRBool lbok ; PRBool wbok ; lbok =TestWordBreaker(); if(lbok) printf("Line Break Test\nOK\n"); else printf("Line Break Test\nFailed\n"); wbok = TestLineBreaker(); if(wbok) printf("Word Break Test\nOK\n"); else printf("Word Break Test\nFailed\n"); SampleWordBreakUsage(); // -------------------------------------------- printf("Finish All The Test Cases\n"); if(lbok && wbok) printf("Line/Word Break Test\nOK\n"); else printf("Line/Word Break Test\nFailed\n"); return 0; }