| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237 |
- /*
- * Copyright (c) 2004-2005 Mark Haverkamp
- * Copyright (c) 2004-2005 Open Source Development Lab
- *
- * All rights reserved.
- *
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the Open Source Development Lab nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- * Test program for event service
- *
- * test_initialize ();
- * Version check in saEvtInitialze()
- *
- * test_channel();
- * Test basic channel operations. Open/close/subscribe/unsubscribe
- *
- * test_event();
- * Event operations: allocation, free, setting and getting
- * attributes, publishing.
- *
- * test_multi_channel1();
- * test_multi_channel1();
- * test_multi_channel1();
- * Test events on multiple channels and multiple subscriptions.
- *
- * test_retention();
- * Test event retention times.
- *
- * test_unlink_channel();
- * Test event channel unlink.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <sys/poll.h>
- #include <stdlib.h>
- #include "saAis.h"
- #include "saEvt.h"
- extern int get_sa_error(SaAisErrorT, char *, int);
- char result_buf[256];
- int result_buf_len = sizeof(result_buf);
- #define TRY_WAIT 2
- void testresult (SaAisErrorT result, SaAisErrorT expected, int test_no)
- {
- if (result == expected) {
- printf ("Test %d passed\n", test_no);
- } else {
- get_sa_error(result, result_buf, result_buf_len);
- printf ("ERROR: Test %d FAILED (expected %d got %s)\n",
- test_no, expected, result_buf);
- }
- }
- SaVersionT version1 = { 'B', 0x01, 0x01 };
- SaVersionT version2 = { 'A', 0x01, 0x01 };
- SaVersionT version3 = { 'B', 0x02, 0x01 };
- SaVersionT version4 = { 'B', 0x01, 0xff };
- SaVersionT version5 = { 'C', 0xff, 0xff };
- struct version_test {
- SaVersionT *version;
- SaAisErrorT result;
- };
- struct version_test versions[] = {
- { &version1, SA_AIS_OK },
- { &version2, SA_AIS_ERR_VERSION },
- { &version3, SA_AIS_ERR_VERSION },
- { &version4, SA_AIS_OK},
- { &version5, SA_AIS_ERR_VERSION},
- { 0, SA_AIS_ERR_INVALID_PARAM}
- };
- int version_size = sizeof(versions) / sizeof(struct version_test);
- void open_callback(SaInvocationT invocation,
- SaEvtChannelHandleT channelHandle,
- SaAisErrorT error);
- void event_callback(SaEvtSubscriptionIdT subscriptionId,
- const SaEvtEventHandleT eventHandle,
- const SaSizeT eventDataSize);
- SaEvtCallbacksT callbacks = {
- open_callback,
- event_callback
- };
- char channel[256] = "TESTEVT_CHANNEL";
- char unlink_channel[256] = "TESTEVT_UNLINK_CHANNEL";
- SaEvtSubscriptionIdT subscription_id = 0xabcdef;
- SaInvocationT open_invocation = 0xaa55cc33;
- unsigned long long test_ret_time = 30000000000ULL; /* 30 seconds */
- /*
- * event data
- */
- long *exp_data;
- #define DATA_SIZE 2048 /* default data size */
- #define LCOUNT DATA_SIZE/sizeof(long)
-
- /*
- * Test saEvtInitialize and version checking.
- */
- void test_initialize (void) {
- SaAisErrorT result;
- SaEvtHandleT handle;
- int i;
- /*
- * version check tests
- */
- printf("Test lib version check on initlialize\n");
- for (i=0; i < version_size; i++) {
- do {
- result = saEvtInitialize (&handle, 0, versions[i].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- testresult (result, versions[i].result, i);
- if (result == SA_AIS_OK) {
- saEvtFinalize(handle);
- }
- }
- }
- #define _patt1 "Filter pattern 1"
- #define patt1 (SaUint8T *) _patt1
- #define patt1_size sizeof(_patt1)
- #define _patt2 "Filter pattern 2"
- #define patt2 (SaUint8T *) _patt2
- #define patt2_size sizeof(_patt2)
- #define _patt3 "Filter pattern 3"
- #define patt3 (SaUint8T *) _patt3
- #define patt3_size sizeof(_patt3)
- #define _patt4 "Filter pattern 4"
- #define patt4 (SaUint8T *) _patt4
- #define patt4_size sizeof(_patt4)
- SaEvtEventFilterT filters[] = {
- {SA_EVT_PREFIX_FILTER, {patt1_size, patt1_size, patt1}},
- {SA_EVT_SUFFIX_FILTER, {patt2_size, patt2_size, patt2}},
- {SA_EVT_EXACT_FILTER, {patt3_size, patt3_size, patt3}},
- {SA_EVT_PASS_ALL_FILTER, {patt4_size, patt4_size, patt4}}
- };
- SaEvtEventFilterArrayT subscribe_filters = {
- sizeof(filters)/sizeof(SaEvtEventFilterT),
- filters
- };
- /*
- * Process the open callback
- */
- void open_callback(SaInvocationT invocation,
- SaEvtChannelHandleT channel_handle,
- SaAisErrorT error)
- {
- SaAisErrorT result;
- printf(" Received open channel callback\n");
- if (error != SA_AIS_OK) {
- get_sa_error(error, result_buf, result_buf_len);
- printf("ERROR: async channel open result: %s\n", result_buf);
- return;
- }
- if (invocation != open_invocation) {
- printf("ERROR: Unexpected invocation value: e 0x%llx, a 0x%llx\n",
- (long long)open_invocation, (long long)invocation);
- }
- printf(" Close async channel:\n");
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result: %s\n", result_buf);
- return;
- }
- }
- /*
- * Test channel operations.
- * 1. Open a channel.
- * 2. Close a channel.
- * 3. Channel subscription.
- * 4. Channel unsubscribe
- * 5. unsubscribe/finalize with no channel close.
- * 6. Multiple subscriptions.
- * 7. Duplicate subscription ID.
- * 8. unsubscribe non-exsistent subscription ID.
- * 9. Open a channel async.
- *
- */
- void
- test_channel()
- {
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaAisErrorT result;
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- flags = SA_EVT_CHANNEL_PUBLISHER |
- SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- /*
- * Channel open/close test
- */
- printf("Test Channel operations:\n");
- printf(" Channel open:\n");
- do {
- result = saEvtInitialize (&handle,
- &callbacks, versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- return;
- }
- printf(" Channel close:\n");
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- return;
- }
-
- /*
- * Test channel subscribe
- */
- printf(" Channel subscribe:\n");
- do {
- result = saEvtInitialize (&handle, &callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- printf(" Channel unsubscribe:\n");
- do {
- result = saEvtEventUnsubscribe(channel_handle, subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event unsubscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- /*
- * Test channel subscribe with no close
- */
- printf(" Channel subscribe with no close at end:\n");
- do {
- result = saEvtInitialize (&handle, &callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- result = saEvtFinalize(handle);
- return;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- result = saEvtChannelClose(channel_handle);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize failed\n");
- return;
- }
- /*
- * Test multiple subscriptions
- */
- printf(" Multiple subscriptions\n");
- do {
- result = saEvtInitialize (&handle, &callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: First event subscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id+1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: second event subscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- /*
- * Test duplicate subscription
- */
- printf(" Duplicate subscription\n");
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_EXIST) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: First event subscribe result: %s\n", result_buf);
- result = saEvtChannelClose(channel_handle);
- result = saEvtFinalize(handle);
- return;
- }
- /*
- * Test unsubscribe non-existent sub_id
- */
- printf(" Unsubscribe non-existent sub_id\n");
- do {
- result = saEvtEventUnsubscribe(channel_handle,
- subscription_id+2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NOT_EXIST) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event unsubscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtEventUnsubscribe(channel_handle, subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: first event unsubscribe result: %s\n", result_buf);
- }
- do {
- result = saEvtEventUnsubscribe(channel_handle,
- subscription_id+1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: second event unsubscribe result: %s\n", result_buf);
- }
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- /*
- * Test opening a channel async.
- */
- printf(" Channel open async:\n");
- do {
- result = saEvtInitialize (&handle, &callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpenAsync(handle, open_invocation,
- &channel_name, flags);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open async result: %s\n", result_buf);
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- return;
- }
- /*
- * See if we got the open callback
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd <= 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- return;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- return;
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- return;
- }
- printf("Done\n");
- }
- SaUint8T pat0[100];
- SaUint8T pat1[100];
- SaUint8T pat2[100];
- SaUint8T pat3[100];
- SaUint8T pat4[100];
- SaEvtEventPatternT evt_patts[5] = {
- {100, 100, pat0},
- {100, 100, pat1},
- {100, 100, pat2},
- {100, 100, pat3},
- {100, 100, pat4}};
- SaEvtEventPatternArrayT evt_pat_get_array = { 5, 0, evt_patts };
- SaEvtEventPatternT patterns[] = {
- {patt1_size, patt1_size, patt1},
- {patt2_size, patt2_size, patt2},
- {patt3_size, patt3_size, patt3},
- {patt4_size, patt4_size, patt4}
- };
- SaNameT test_pub_name = {13, "Test Pub Name"};
- #define TEST_PRIORITY 2
- SaEvtEventPatternArrayT evt_pat_set_array = {
- sizeof(patterns)/sizeof(SaEvtEventPatternT),
- sizeof(patterns)/sizeof(SaEvtEventPatternT),
- patterns
- };
- char event_data[1000];
- #define EVENT_DATA_SIZE 1000
- SaEvtEventIdT event_id = 0;
- SaUint8T priority;
- SaTimeT retention_time = 0ULL;
- SaNameT publisher_name = {0, {0}};
- SaSizeT event_data_size = 0;
- int expected_pat_count;
- /*
- * Test event operations.
- *
- * 1. Event allocation
- * 2. Get event attributes (no pointers).
- * 3. Get event attributes with pointers.
- * 4. Set/Get event attributes.
- * 5. Get event user data no pointer or count
- * 6. Get event user data with pointer and no count
- * 7. Get event user data with no pointer with a count.
- * 8. Get event user data with pointer and count.
- * 9. Get event user data woth a short count.
- * 10. Free event.
- * 11. Publish with no set patterns.
- * 12. Publish with set patterns and event user data.
- *
- */
- void
- event_callback(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- SaUint8T my_priority;
- SaTimeT my_retention_time;
- SaNameT my_publisher_name = {0, {0}};
- SaTimeT my_publish_time;
- SaEvtEventIdT my_event_id;
- int i;
- long *act_data;
- SaSizeT data_size;
- printf(" event_callback called\n");
- if (my_subscription_id != subscription_id) {
- printf("ERROR: sub ID: e=%x, a=%x\n",
- subscription_id, my_subscription_id);
- }
- if (my_event_data_size != event_data_size) {
- printf("ERROR: event data size e=%llu, a=%llu\n",
- (unsigned long long)event_data_size,
- (unsigned long long)my_event_data_size);
- }
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &my_priority, /* priority */
- &my_retention_time, /* retention time */
- &my_publisher_name, /* publisher name */
- &my_publish_time, /* publish time */
- &my_event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result(2): %s\n", result_buf);
- goto evt_free;
- }
- if (my_event_id != event_id) {
- printf("ERROR: Call back event ID error: e=%llx, a=%llx\n",
- (unsigned long long)event_id, (unsigned long long)my_event_id);
- }
- if (evt_pat_get_array.patternsNumber != expected_pat_count) {
- printf("ERROR: pattern array count not %d: %llu\n",
- expected_pat_count,
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- if (expected_pat_count == 0) {
- goto evt_free;
- }
- for (i = 0; i < evt_pat_get_array.patternsNumber; i++) {
- if (evt_pat_get_array.patterns[i].patternSize !=
- evt_pat_set_array.patterns[i].patternSize) {
- printf("ERROR: pattern %d count not equal g=%llu, s=%llu\n",
- i,
- (unsigned long long)evt_pat_get_array.patterns[i].patternSize,
- (unsigned long long)evt_pat_set_array.patterns[i].patternSize);
- printf("ERROR: pattern %d content g=\"%s\", s=\"%s\"\n",
- i,
- evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern);
- } else {
- if (memcmp(evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern,
- evt_pat_get_array.patterns[i].patternSize) != 0){
- printf(
- "ERROR: pattern %d don't match g=\"%s\", s=\"%s\"\n",
- i,
- evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern);
- }
- }
- }
- if (priority != my_priority) {
- printf("ERROR: priority: e=0x%x a=0x%x\n",
- priority, my_priority);
- }
- if (retention_time != my_retention_time) {
- printf("ERROR: retention: e=0x%llx a=0x%llx\n",
- (unsigned long long)retention_time,
- (unsigned long long)my_retention_time);
- }
- if (publisher_name.length != my_publisher_name.length) {
- printf("ERROR: publisher name length: e=%d, a=%d\n",
- publisher_name.length,
- my_publisher_name.length);
- } else {
- if (memcmp(publisher_name.value, my_publisher_name.value,
- publisher_name.length) != 0) {
- printf("ERROR: publisher name content: e=%s, a=%s\n",
- publisher_name.value,
- my_publisher_name.value);
- }
- }
- act_data = malloc(my_event_data_size);
- memset(act_data, 0, my_event_data_size);
- data_size = my_event_data_size;
- do {
- result = saEvtEventDataGet(event_handle, act_data, &data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event data get result: %s\n", result_buf);
- goto dat_free;
- }
- if (data_size != event_data_size) {
- printf("ERROR: Data size: e=%llu a=%llu\n",
- (unsigned long long)event_data_size,
- (unsigned long long)data_size);
- }
- for (i = 0; i < (data_size/sizeof(long)); i++) {
- if (act_data[i] != exp_data[i]) {
- printf("ERROR: Event Data e=%lx a=%lx at index %d\n",
- exp_data[i], act_data[i], i);
- break;
- }
- }
- dat_free:
- free(act_data);
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- }
- void
- test_event()
- {
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtEventHandleT event_handle;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaTimeT publish_time;
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- SaAisErrorT result;
- int i;
-
- flags = SA_EVT_CHANNEL_PUBLISHER|SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- printf("Test Event operations:\n");
- do {
- result = saEvtInitialize (&handle, &callbacks, versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto evt_fin;
- }
- /*
- * Allocate an event
- */
- printf(" Event allocation\n");
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate result: %s\n", result_buf);
- goto evt_close;
- }
- printf(" Get event attributes(1)\n");
- do {
- result = saEvtEventAttributesGet(event_handle,
- 0, /* patterns */
- 0, /* priority */
- 0, /* retention time */
- 0, /* publisher name */
- 0, /* publish time */
- 0 /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result(1): %s\n", result_buf);
- goto evt_free;
- }
- /*
- * Get event attributes, this time supply pointers.
- * validate the default values.
- */
- printf(" Get event attributes(2)\n");
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &priority, /* priority */
- &retention_time, /* retention time */
- &publisher_name, /* publisher name */
- &publish_time, /* publish time */
- &event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result(2): %s\n", result_buf);
- goto evt_free;
- }
- if (evt_pat_get_array.patternsNumber != 0) {
- printf("ERROR: pattern array count not zero: %llu\n",
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- if (priority != SA_EVT_LOWEST_PRIORITY) {
- printf("ERROR: priority not lowest: 0x%x\n", priority);
- }
- if (retention_time != 0) {
- printf("ERROR: retention time not zero: %0llx\n",
- (unsigned long long)retention_time);
- }
- if (publisher_name.length != 0) {
- printf("ERROR: publisher name not null: %s\n", publisher_name.value);
- }
- if (event_id != 0) {
- printf("ERROR: event id not zero: 0x%llx\n",
- (unsigned long long)event_id);
- }
- /*
- * Set some attributes, then read them back
- */
- printf(" Set/get event attributes(1)\n");
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat_set_array,
- TEST_PRIORITY,
- test_ret_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result(1): %s\n", result_buf);
- goto evt_free;
- }
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &priority, /* priority */
- &retention_time, /* retention time */
- &publisher_name, /* publisher name */
- &publish_time, /* publish time */
- &event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result(2): %s\n", result_buf);
- goto evt_free;
- }
- if (evt_pat_get_array.patternsNumber != 4) {
- printf("ERROR: pattern array count not 4: %llu\n",
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- for (i = 0; i < evt_pat_get_array.patternsNumber; i++) {
- if (evt_pat_get_array.patterns[i].patternSize !=
- evt_pat_set_array.patterns[i].patternSize) {
- printf("ERROR: pattern %d count not equal g=%lld, s=%lld\n",
- i,
- (unsigned long long)evt_pat_get_array.patterns[i].patternSize,
- (unsigned long long)evt_pat_set_array.patterns[i].patternSize);
- printf("ERROR: pattern %d content g=\"%s\", s=\"%s\"\n",
- i,
- evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern);
- } else {
- if (memcmp(evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern,
- evt_pat_get_array.patterns[i].patternSize) != 0){
- printf(
- "ERROR: pattern %d don't match g=\"%s\", s=\"%s\"\n",
- i,
- evt_pat_get_array.patterns[i].pattern,
- evt_pat_set_array.patterns[i].pattern);
- }
- }
- }
- if (priority != TEST_PRIORITY) {
- printf("ERROR: priority: e=0x%x a=0x%x\n",
- TEST_PRIORITY, priority);
- }
- if (retention_time != test_ret_time) {
- printf("ERROR: retention: e=0x%llx a=0x%llx\n",
- (unsigned long long)test_ret_time,
- (unsigned long long)retention_time);
- }
- if (publisher_name.length != test_pub_name.length) {
- printf("ERROR: publisher name length: e=%d, a=%d\n",
- test_pub_name.length,
- publisher_name.length);
- } else {
- if (memcmp(publisher_name.value, test_pub_name.value,
- publisher_name.length) != 0) {
- printf("ERROR: publisher name content: e=%s, a=%s\n",
- test_pub_name.value,
- publisher_name.value);
- }
- }
- if (event_id != 0) {
- printf("ERROR: event id not zero: 0x%llx\n",
- (unsigned long long)event_id);
- }
- /*
- * event user data
- */
- event_data_size = 0;
- printf(" Get event data(1)\n");
- do {
- result = saEvtEventDataGet(event_handle, 0, &event_data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NO_SPACE) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Get event data(1) result: %s\n", result_buf);
- }
- printf(" Get event data(2)\n");
- do {
- result = saEvtEventDataGet(event_handle, event_data, &event_data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_BAD_HANDLE) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Get event data(2) result: %s\n", result_buf);
- }
- printf(" Get event data(3)\n");
- event_data_size = EVENT_DATA_SIZE;
- do {
- result = saEvtEventDataGet(event_handle, 0, &event_data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NO_SPACE) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Get event data(3) result: %s\n", result_buf);
- }
- printf(" Get event data(4)\n");
- event_data_size = EVENT_DATA_SIZE;
- do {
- result = saEvtEventDataGet(event_handle, event_data,
- &event_data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_BAD_HANDLE) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Get event data(4) result: %s\n", result_buf);
- }
- printf(" Get event data(5)\n");
- event_data_size = 1;
- do {
- result = saEvtEventDataGet(event_handle, event_data,
- &event_data_size);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_BAD_HANDLE) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Get event data(5) result: %s\n", result_buf);
- }
- printf(" Free event(1)\n");
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- /*
- * Test publication.
- */
- printf(" Publish with no patterns set\n");
- event_data_size = 0;
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Channel close result: %s\n", result_buf);
- }
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Finalize result: %s\n", result_buf);
- }
- return;
- }
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate result: %s\n", result_buf);
- goto evt_close;
- }
- expected_pat_count = 0;
- do {
- result = saEvtEventPublish(event_handle, 0, 0, &event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result(1): %s\n", result_buf);
- goto evt_close;
- }
- /*
- * See if we got the event
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd <= 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- return;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- return;
- }
- /*
- * Publish with pattens
- */
- printf(" Publish with patterns set\n");
- retention_time = 0ULL;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat_set_array,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result(2): %s\n", result_buf);
- goto evt_free;
- }
- /*
- * Generate event data
- */
- exp_data = malloc(DATA_SIZE);
- for (i = 0; i < LCOUNT; i++) {
- exp_data[i] = lrand48();
- }
- event_data_size = DATA_SIZE;
- expected_pat_count = 4;
- /*
- * Send it
- */
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result(2): %s\n", result_buf);
- goto evt_close;
- }
- /*
- * See if we got the event
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd <= 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- return;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- return;
- }
- /*
- * Test cleanup
- */
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- evt_close:
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result: %s\n", result_buf);
- }
- evt_fin:
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- SaEvtEventIdT event_id1;
- SaEvtEventIdT event_id2;
- SaEvtEventIdT event_id3;
- SaEvtSubscriptionIdT sub1 = 0x101010;
- SaEvtSubscriptionIdT sub2 = 0x202020;
- static int call_count = 0;
- /*
- * Handle call back for multi-test1
- * Checks event ID with subscription ID to make sure that we
- * received an event on the correct subscription.
- */
- void
- multi_test_callback1(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- SaUint8T my_priority;
- SaTimeT my_retention_time;
- SaNameT my_publisher_name = {0, {0}};
- SaTimeT my_publish_time;
- SaEvtEventIdT my_event_id;
- SaEvtSubscriptionIdT exp_sub_id;
- printf(" multi_test_callback1 called(%d)\n", ++call_count);
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &my_priority, /* priority */
- &my_retention_time, /* retention time */
- &my_publisher_name, /* publisher name */
- &my_publish_time, /* publish time */
- &my_event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result: %s\n", result_buf);
- goto evt_free;
- }
- if (my_event_id == event_id1) {
- exp_sub_id = sub1;
- } else if (my_event_id == event_id2) {
- exp_sub_id = sub2;
- } else if (my_event_id == event_id3) {
- printf("ERROR: Received event 3 but not subscribed\n");
- goto evt_free;
- } else {
- printf("ERROR: Received event %llx but not sent\n",
- (unsigned long long)my_event_id);
- goto evt_free;
- }
- if (my_subscription_id != exp_sub_id) {
- printf("ERROR: sub ID: e=%x, a=%x\n",
- exp_sub_id, my_subscription_id);
- goto evt_free;
- }
- if (evt_pat_get_array.patternsNumber != 1) {
- printf("ERROR: pattern array count not 1: %lld\n",
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- }
- /*
- * Test multiple channel operations
- * 1. Test multiple subscriptions on a single channel and receiving
- * events.
- * 2. Test multiple openings of a single channel and receving events.
- * 3. Test opening of multiple channels and receiving events
- */
- void
- test_multi_channel1()
- {
- SaEvtEventFilterT filt1[1] = {
- {SA_EVT_EXACT_FILTER, {8,8, (SaUint8T *) "ChanPat1"}},
- };
- SaEvtEventFilterT filt2[1] = {
- {SA_EVT_EXACT_FILTER, {8, 8, (SaUint8T *) "ChanPat2"}},
- };
- SaEvtEventFilterArrayT sub_filt = {
- 1, NULL
- };
- SaEvtEventPatternT pat1 = {8, 8, (SaUint8T *) "ChanPat1"};
- SaEvtEventPatternT pat2 = {8, 8, (SaUint8T *) "ChanPat2"};
- SaEvtEventPatternT pat3 = {8, 8, (SaUint8T *) "ChanPat3"};
- SaEvtEventPatternArrayT evt_pat = {
- 1, 1, NULL
- };
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtEventHandleT event_handle;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaEvtCallbacksT multi_callbacks = {
- 0,
- multi_test_callback1
- };
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- SaAisErrorT result;
-
- flags = SA_EVT_CHANNEL_PUBLISHER|SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- printf("Test multiple operations:\n");
- do {
- result = saEvtInitialize (&handle, &multi_callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto evt_fin;
- }
- /*
- * Allocate an event
- */
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate result: %s\n", result_buf);
- goto evt_close;
- }
- /*
- * 1. Test multiple subscriptions on a single channel and receiving
- * events.
- *
- * Subscribe twice with two different filters. Then send three events.
- * One will match the first filter, the second will match the second
- * filter, the third will match none. We will validate that we receive
- * two events and that the subscription IDs match what we expect for the
- * given pattern.
- */
- sub_filt.filters = filt1;
- do {
- result = saEvtEventSubscribe(channel_handle,
- &sub_filt,
- sub1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(1) result: %s\n", result_buf);
- goto evt_free;
- }
- sub_filt.filters = filt2;
- do {
- result = saEvtEventSubscribe(channel_handle,
- &sub_filt,
- sub2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(2) result: %s\n", result_buf);
- goto evt_free;
- }
- retention_time = 0ULL;
- evt_pat.patterns = &pat1;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result(1): %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result:(1) %s\n", result_buf);
- goto evt_close;
- }
- evt_pat.patterns = &pat2;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result(2): %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result:(2) %s\n", result_buf);
- goto evt_close;
- }
- evt_pat.patterns = &pat3;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result(3): %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id3);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result:(3) %s\n", result_buf);
- goto evt_close;
- }
- /*
- * See if we got the event
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- while(1) {
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd == 0) {
- break;
- } else if (nfd < 0) {
- perror("ERROR: poll error");
- break;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ALL);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- goto evt_free;
- }
- }
- if (call_count != 2) {
- printf("ERROR: call back count: e=2, a=%d\n", call_count);
- goto evt_free;
- }
- /*
- * Test cleanup
- */
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- evt_close:
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result: %s\n", result_buf);
- }
- evt_fin:
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- /*
- * Handle call back for multi-test2
- * Counts events received. Makes sure that we get one event from
- * each subscription.
- *
- */
- void
- multi_test_callback2(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- SaUint8T my_priority;
- SaTimeT my_retention_time;
- SaNameT my_publisher_name = {0, {0}};
- SaTimeT my_publish_time;
- SaEvtEventIdT my_event_id;
- SaEvtSubscriptionIdT last_sub_id = 0;
- printf(" multi_test_callback2 called(%d)\n", ++call_count);
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &my_priority, /* priority */
- &my_retention_time, /* retention time */
- &my_publisher_name, /* publisher name */
- &my_publish_time, /* publish time */
- &my_event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result: %s\n", result_buf);
- goto evt_free;
- }
- if (my_event_id != event_id1) {
- printf("ERROR: Received wrong event\n");
- goto evt_free;
- }
- if (last_sub_id == 0) {
- if (my_subscription_id != sub1 &&
- my_subscription_id != sub2) {
- printf("ERROR: Received bad subscription ID\n");
- goto evt_free;
- }
- last_sub_id = my_subscription_id;
- } else {
- if (my_subscription_id == last_sub_id) {
- printf("ERROR: Received subscription ID twice\n");
- goto evt_free;
- }
- if (my_subscription_id != sub1 &&
- my_subscription_id != sub2) {
- printf("ERROR: Received bad subscription ID\n");
- goto evt_free;
- }
- }
- if (evt_pat_get_array.patternsNumber != 1) {
- printf("ERROR: pattern array count not 1: %llu\n",
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- }
- void
- test_multi_channel2()
- {
- SaEvtEventFilterT filt1[1] = {
- {SA_EVT_EXACT_FILTER, {8, 8, (SaUint8T *) "ChanPat1"}},
- };
- SaEvtEventFilterArrayT sub_filt = {
- 1, NULL
- };
- SaEvtEventPatternT pat1 = {8, 8, (SaUint8T *) "ChanPat1"};
- SaEvtEventPatternArrayT evt_pat = {
- 1, 1, NULL
- };
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtChannelHandleT channel_handle1;
- SaEvtEventHandleT event_handle;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaEvtCallbacksT multi_callbacks = {
- 0,
- multi_test_callback2
- };
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- SaAisErrorT result;
-
- flags = SA_EVT_CHANNEL_PUBLISHER|SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- /*
- * 2. Test multiple openings of a single channel and receving events.
- *
- * Open and subscribe to a channel twice. When an event is sent, it
- * should be delivered twice, once for each open channel.
- */
- printf("Test multiple opens/subscribes:\n");
- do {
- result = saEvtInitialize (&handle, &multi_callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(0) result: %s\n", result_buf);
- goto evt_fin;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(1) result: %s\n", result_buf);
- goto evt_fin;
- }
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate result: %s\n", result_buf);
- goto evt_close;
- }
- sub_filt.filters = filt1;
- do {
- result = saEvtEventSubscribe(channel_handle,
- &sub_filt,
- sub1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(0) result: %s\n", result_buf);
- goto evt_free;
- }
- sub_filt.filters = filt1;
- do {
- result = saEvtEventSubscribe(channel_handle1,
- &sub_filt,
- sub2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(1) result: %s\n", result_buf);
- goto evt_free;
- }
- retention_time = 0ULL;
- evt_pat.patterns = &pat1;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result: %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result: %s\n", result_buf);
- goto evt_close;
- }
- /*
- * See if we got the event
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- call_count = 0;
- while(1) {
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd == 0) {
- break;
- } else if (nfd < 0) {
- perror("ERROR: poll error");
- break;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ALL);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- goto evt_free;
- }
- }
- if (call_count != 2) {
- printf("ERROR: call back count: e=2, a=%d\n", call_count);
- goto evt_free;
- }
- /*
- * Test cleanup
- */
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- evt_close:
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result(0): %s\n", result_buf);
- }
- do {
- result = saEvtChannelClose(channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result(1): %s\n", result_buf);
- }
- evt_fin:
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- /*
- * Handle call back for multi-test3
- * Verifies that the event recevied is associated with the correct
- * subscription.
- *
- */
- void
- multi_test_callback3(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- SaUint8T my_priority;
- SaTimeT my_retention_time;
- SaNameT my_publisher_name = {0, {0}};
- SaTimeT my_publish_time;
- SaEvtEventIdT my_event_id;
- printf(" multi_test_callback2 called(%d)\n", ++call_count);
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &my_priority, /* priority */
- &my_retention_time, /* retention time */
- &my_publisher_name, /* publisher name */
- &my_publish_time, /* publish time */
- &my_event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result: %s\n", result_buf);
- goto evt_free;
- }
- if ((my_subscription_id != sub1) && (my_subscription_id != sub2)) {
- printf("ERROR: Received wrong subscription ID %x\n",
- my_subscription_id);
- printf(" sub1 %x, sub2 %x\n", sub1, sub2);
- goto evt_free;
- }
- if ((my_event_id != event_id1) && (my_event_id != event_id2)) {
- printf("ERROR: Received wrong event ID %llx\n",
- (unsigned long long)my_event_id);
- printf(" id1 %llx, id2 %llx\n",
- (unsigned long long)event_id1,
- (unsigned long long)event_id2);
- goto evt_free;
- }
- if ((my_subscription_id == sub1) && (my_event_id != event_id1)) {
- printf("ERROR: Received event on wrong subscription\n");
- goto evt_free;
- }
- if ((my_subscription_id == sub2) && (my_event_id != event_id2)) {
- printf("ERROR: Received event on wrong subscription\n");
- goto evt_free;
- }
- if (evt_pat_get_array.patternsNumber != 1) {
- printf("ERROR: pattern array count not 1: %llu\n",
- (unsigned long long)evt_pat_get_array.patternsNumber);
- }
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- }
- void
- test_multi_channel3()
- {
- SaEvtEventFilterT filt1[1] = {
- {SA_EVT_PREFIX_FILTER, {7, 7, (SaUint8T *) "ChanPat"}},
- };
- SaEvtEventFilterArrayT sub_filt = {
- 1, NULL
- };
- SaEvtEventPatternT pat1 = {8, 8, (SaUint8T *) "ChanPat1"};
- SaEvtEventPatternT pat2 = {8, 8, (SaUint8T *) "ChanPat2"};
- SaEvtEventPatternArrayT evt_pat = {
- 1, 1, NULL
- };
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtChannelHandleT channel_handle1;
- SaEvtEventHandleT event_handle;
- SaEvtEventHandleT event_handle1;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaNameT channel_name1;
- SaEvtCallbacksT multi_callbacks = {
- 0,
- multi_test_callback3
- };
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- SaAisErrorT result;
-
- flags = SA_EVT_CHANNEL_PUBLISHER|SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen((char *)channel_name.value);
- strcpy((char *)channel_name1.value, channel);
- strcat((char *)channel_name1.value, "_1");
- channel_name1.length = strlen((char *)channel_name1.value);
- /*
- * 3. Test opening of multiple channels and receiving events.
- * Open and subscribe to two different channels twice.
- * Subscribe to each channel with the same filters.
- * Sending an event on one channel should be received in the
- * call-back with the subscription ID corresponding to the sent
- * channel.
- */
- printf("Test multiple different channels/subscribes:\n");
- do {
- result = saEvtInitialize (&handle, &multi_callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(0) result: %s\n", result_buf);
- goto evt_fin;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name1, flags, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(1) result: %s\n", result_buf);
- goto evt_fin;
- }
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate(0) result: %s\n", result_buf);
- goto evt_close;
- }
- do {
- result = saEvtEventAllocate(channel_handle1, &event_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate(1) result: %s\n", result_buf);
- goto evt_close;
- }
- sub_filt.filters = filt1;
- do {
- result = saEvtEventSubscribe(channel_handle,
- &sub_filt,
- sub1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(0) result: %s\n", result_buf);
- goto evt_free;
- }
- sub_filt.filters = filt1;
- do {
- result = saEvtEventSubscribe(channel_handle1,
- &sub_filt,
- sub2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe(1) result: %s\n", result_buf);
- goto evt_free;
- }
- retention_time = 0ULL;
- evt_pat.patterns = &pat1;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr(0) result: %s\n", result_buf);
- goto evt_free;
- }
- evt_pat.patterns = &pat2;
- do {
- result = saEvtEventAttributesSet(event_handle1,
- &evt_pat,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr(1) result: %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventPublish(event_handle, exp_data, DATA_SIZE,
- &event_id1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result: %s\n", result_buf);
- goto evt_close;
- }
- do {
- result = saEvtEventPublish(event_handle1, exp_data, DATA_SIZE,
- &event_id2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result: %s\n", result_buf);
- goto evt_close;
- }
- /*
- * See if we got the events
- */
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- call_count = 0;
- while(1) {
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd == 0) {
- break;
- } else if (nfd < 0) {
- perror("ERROR: poll error");
- break;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ALL);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- goto evt_free;
- }
- }
- if (call_count != 2) {
- printf("ERROR: call back count: e=2, a=%d\n", call_count);
- goto evt_free;
- }
- /*
- * Test cleanup
- */
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- do {
- result = saEvtEventFree(event_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- evt_close:
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result(0): %s\n", result_buf);
- }
- do {
- result = saEvtChannelClose(channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result(1): %s\n", result_buf);
- }
- evt_fin:
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- /*
- * Test event retention
- * Test 1: publish the event with a retention time and then
- * subscribe. If the event was retained, we should receive it.
- *
- * Test 2: Publish the event, sleep until it expires, then
- * subscribe. We shouldn't get an event delivered.
- *
- * Test 3: Publish an event with a retention time.
- * subscribe.
- * wait for it.
- * unsubscribe
- * Clear it.
- * Then subscribe and make sure that the messages isn't delivered.
- *
- */
- #define EXPIRE_TIME 10 /* Seconds */
- SaEvtEventIdT retained_id;
- int got_event;
- void
- event_callback_retained(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- //printf("event_callback_retained called\n");
- do {
- result = saEvtEventAttributesGet(event_handle,
- 0, /* patterns */
- 0, /* priority */
- 0, /* retention time */
- 0, /* publisher name */
- 0, /* publish time */
- &retained_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: callback attr get result: %s\n", result_buf);
- return;
- }
- got_event = 1;
- }
- void
- test_retention()
- {
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle;
- SaEvtEventHandleT event_handle;
- SaEvtChannelOpenFlagsT flags;
- SaNameT channel_name;
- SaEvtCallbacksT callbacks_retain = {
- 0,
- event_callback_retained
- };
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = (EXPIRE_TIME + 5);
- SaAisErrorT result;
-
- flags = SA_EVT_CHANNEL_PUBLISHER |
- SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- printf("Test Event retention:\n");
- do {
- result = saEvtInitialize (&handle, &callbacks_retain,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- return;
- }
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags, SA_TIME_MAX,
- &channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto evt_fin;
- }
- /*
- * Allocate an event
- */
- do {
- result = saEvtEventAllocate(channel_handle, &event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Allocate result: %s\n", result_buf);
- goto evt_close;
- }
- retention_time = (EXPIRE_TIME)*1000000000ULL;
- do {
- result = saEvtEventAttributesSet(event_handle,
- &evt_pat_set_array,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set attr result: %s\n", result_buf);
- goto evt_free;
- }
- /*
- * Test 1: publish the event with a retention time and then
- * subscribe. If the event was retained, we should receive it.
- */
- printf(" Receive retained event\n");
- got_event=0;
- retained_id=0;
- do {
- result = saEvtEventPublish(event_handle, exp_data, 0, &event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result(1): %s\n", result_buf);
- goto evt_close;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- goto evt_free;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, 1000);
- if (nfd <= 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- goto evt_free;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- goto evt_free;
- }
- if (!got_event) {
- printf("ERROR: retained event not recevied\n");
- goto evt_free;
- }
- if (retained_id != event_id) {
- printf("ERROR: received the wrong event: e=%llx, a=%llx\n",
- (unsigned long long)event_id,
- (unsigned long long)retained_id);
- goto evt_free;
- }
- do {
- result = saEvtEventUnsubscribe(channel_handle, subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: unsubscribe result: %s\n", result_buf);
- goto evt_free;
- }
- /*
- * Test 2: Publish the event, sleep until it expires, then
- * subscribe. We shouldn't get an event delivered.
- */
- printf(" Expire retained event\n");
- got_event=0;
- retained_id=0;
- do {
- result = saEvtEventPublish(event_handle, exp_data, 0, &event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result(1): %s\n", result_buf);
- goto evt_close;
- }
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtSelectionObject get %s\n", result_buf);
- /* error */
- return;
- }
- /*
- * Wait for the event to expire, then subscribe. We shouldn't get
- * an event
- */
- sleep(timeout);
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- result = saEvtChannelClose(channel_handle);
- goto evt_free;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, 1000);
- if (nfd != 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- goto evt_free;
- }
- do {
- result = saEvtEventUnsubscribe(channel_handle, subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: unsubscribe result: %s\n", result_buf);
- goto evt_free;
- }
- /*
- * Test 3:
- * Publish an event with a retention time.
- * subscribe.
- * wait for it.
- * unsubscribe
- * Clear it.
- * Then subscribe and make sure that the message isn't delivered.
- */
- printf(" Clear event retention time\n");
- got_event=0;
- retained_id=0;
- do {
- result = saEvtEventPublish(event_handle, exp_data, 0, &event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event Publish result(2): %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- goto evt_free;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, 1000);
- if (nfd <= 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- goto evt_free;
- }
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- /* error */
- goto evt_free;
- }
- if (!got_event) {
- printf("ERROR: retained event not recevied\n");
- goto evt_free;
- }
- if (retained_id != event_id) {
- printf("ERROR: received the wrong event: e=%llx, a=%llx\n",
- (unsigned long long)event_id,
- (unsigned long long)retained_id);
- goto evt_free;
- }
- do {
- result = saEvtEventUnsubscribe(channel_handle, subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: unsubscribe result: %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventRetentionTimeClear(channel_handle, event_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: clear retention time result: %s\n", result_buf);
- goto evt_free;
- }
- do {
- result = saEvtEventSubscribe(channel_handle,
- &subscribe_filters,
- subscription_id);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event subscribe result: %s\n", result_buf);
- goto evt_free;
- }
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, 1000);
- if (nfd != 0) {
- printf("ERROR: poll fds %d\n", nfd);
- if (nfd < 0) {
- perror("ERROR: poll error");
- }
- /* Error */
- goto evt_free;
- }
- /*
- * Test cleanup
- */
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- evt_close:
- do {
- result = saEvtChannelClose(channel_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close result: %s\n", result_buf);
- }
- evt_fin:
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- void
- unlink_chan_callback(SaEvtSubscriptionIdT my_subscription_id,
- const SaEvtEventHandleT event_handle,
- const SaSizeT my_event_data_size)
- {
- SaAisErrorT result;
- SaUint8T my_priority;
- SaTimeT my_retention_time;
- SaNameT my_publisher_name = {0, {0}};
- SaTimeT my_publish_time;
- SaEvtEventIdT my_event_id;
- SaEvtSubscriptionIdT exp_sub_id;
- printf(" unlink_chan_callback called(%d)\n", ++call_count);
- evt_pat_get_array.patternsNumber = 4;
- do {
- result = saEvtEventAttributesGet(event_handle,
- &evt_pat_get_array, /* patterns */
- &my_priority, /* priority */
- &my_retention_time, /* retention time */
- &my_publisher_name, /* publisher name */
- &my_publish_time, /* publish time */
- &my_event_id /* event_id */
- );
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event get attr result: %s\n", result_buf);
- goto evt_free;
- }
- if (my_event_id == event_id1) {
- exp_sub_id = sub1;
- } else if (my_event_id == event_id2) {
- exp_sub_id = sub2;
- } else {
- printf("ERROR: Received event %llx but not sent\n",
- (unsigned long long)my_event_id);
- goto evt_free;
- }
- if (my_subscription_id != exp_sub_id) {
- printf("ERROR: sub ID: e=%x, a=%x\n",
- exp_sub_id, my_subscription_id);
- goto evt_free;
- }
- evt_free:
- do {
- result = saEvtEventFree(event_handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event free result: %s\n", result_buf);
- }
- }
- /*
- * Test channel unlink operations.
- * 1. Unlink channel.
- * 2. Open/create a channel, close channel, open channel.
- * 3. unlink channel, Open channel.
- * 4. Open/create, unlink channel, close channel, open channel.
- * 5. Open/create a channel, unlink channel, open/create channel, send
- * event on each.
- * 6. unlink all, close all.
- */
- SaEvtCallbacksT unlink_callbacks = {
- open_callback,
- unlink_chan_callback
- };
- void
- test_unlink_channel()
- {
- SaEvtHandleT handle;
- SaEvtChannelHandleT channel_handle1;
- SaEvtChannelHandleT channel_handle2;
- SaEvtEventHandleT event_handle1;
- SaEvtEventHandleT event_handle2;
- SaEvtChannelOpenFlagsT flags1, flags2;
- SaNameT channel_name;
- SaAisErrorT result;
- struct pollfd pfd;
- int nfd;
- SaSelectionObjectT fd;
- int timeout = 5000;
-
- flags1 = SA_EVT_CHANNEL_PUBLISHER |
- SA_EVT_CHANNEL_SUBSCRIBER |
- SA_EVT_CHANNEL_CREATE;
- flags2 = SA_EVT_CHANNEL_PUBLISHER |
- SA_EVT_CHANNEL_SUBSCRIBER;
- printf("Test Channel Unlink operations:\n");
- do {
- result = saEvtInitialize (&handle, &unlink_callbacks,
- versions[0].version);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Initialize result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- * 1. Unlink channel.
- *
- * Unlink previously opened channel should return OK.
- * Unlink of non-existent channel should return error.
- */
- printf(" 1 Channel unlink:\n");
- strcpy((char *)channel_name.value, channel);
- channel_name.length = strlen(channel);
- do {
- result = saEvtChannelUnlink(handle, &channel_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel unlink(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- strcpy((char *)channel_name.value, unlink_channel);
- channel_name.length = strlen(unlink_channel);
- do {
- result = saEvtChannelUnlink(handle, &channel_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NOT_EXIST) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel unlink(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- * 2. Open/create a channel, close channel, open channel.
- *
- * Open/create the channel.
- * Close the channel.
- * Open without create. This should succeed in the B spec.
- */
- printf(" 2 Channel open/close/open:\n");
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags1, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelClose(channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
-
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags2, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- * 3. unlink channel, Open channel, close channel
- *
- * Unlink the channel. Should mark for deletion but not
- * delete it since it is already open.
- * Open the channel without create. This should fail since
- * the channel is marked for deletion and a new version
- * hasn't been created.
- * Close channel.
- */
- printf(" 3 Channel unlink/open/close:\n");
- do {
- result = saEvtChannelUnlink(handle, &channel_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel unlink result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags2, SA_TIME_MAX,
- &channel_handle2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NOT_EXIST) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelClose(channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- *
- * 4. Open/create, unlink channel, close channel, open channel.
- *
- * Open/create the channel.
- * unlink the channel.
- * close the channel. This should delete the channel instance since
- * it was marked for deletion.
- * open the channel without create. This should fail since the
- * channel doesn't exist anymore.
- */
- printf(" 4 Channel open/unlink/close/open:\n");
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags1, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelUnlink(handle, &channel_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel unlink result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelClose(channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel close(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags2, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_ERR_NOT_EXIST) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- * 5. Open/create a channel, unlink channel, open/create channel, send
- * event on each.
- *
- * Open/create.
- * unlink. Mark for deletion.
- * open/create. Create new channel of same name.
- * send event on each open channel. The events should be received on
- * separate channels.
- */
- printf(" 5 Channel open/unlink/open/send:\n");
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags1, SA_TIME_MAX,
- &channel_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelUnlink(handle, &channel_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel unlink result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtChannelOpen(handle, &channel_name, flags1, SA_TIME_MAX,
- &channel_handle2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel open result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventSubscribe(channel_handle1,
- &subscribe_filters,
- sub1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel subscribe(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventSubscribe(channel_handle2,
- &subscribe_filters,
- sub2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: channel subscribe(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- retention_time = 0ULL;
- do {
- result = saEvtEventAllocate(channel_handle1, &event_handle1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event allocate(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventAttributesSet(event_handle1,
- &evt_pat_set_array,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventAllocate(channel_handle2, &event_handle2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event allocate(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventAttributesSet(event_handle2,
- &evt_pat_set_array,
- TEST_PRIORITY,
- retention_time,
- &test_pub_name);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event set(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventPublish(event_handle1, 0, 0, &event_id1);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event publish(1) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtEventPublish(event_handle2, 0, 0, &event_id2);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: event publish(2) result: %s\n", result_buf);
- goto unlink_exit;
- }
- do {
- result = saEvtSelectionObjectGet(handle, &fd);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: select object get result: %s\n", result_buf);
- goto unlink_exit;
- }
- /*
- * We should see a total of two events processed, not four
- * as if both events were recevied on both channels.
- */
- call_count = 0;
- do {
- pfd.fd = fd;
- pfd.events = POLLIN;
- nfd = poll(&pfd, 1, timeout);
- if (nfd <= 0) {
- if (nfd < 0) {
- perror("ERROR: poll error");
- goto unlink_exit;
- }
- } else {
- do {
- result = saEvtDispatch(handle, SA_DISPATCH_ONE);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: saEvtDispatch %s\n", result_buf);
- goto unlink_exit;
- }
- }
- } while (nfd > 0);
- if (call_count != 2) {
- printf("ERROR: processed %d events\n", call_count);
- goto unlink_exit;
- }
-
- /*
- * 6. unlink all, close all.
- *
- * close all open channels.
- * unlink the channel.
- * open without create the channel. Verify that the channel no
- * longer exists.
- */
- printf(" 6 Channel unlink all/close all/open:\n");
- unlink_exit:
- saEvtChannelClose(channel_handle1);
- saEvtChannelClose(channel_handle2);
- saEvtChannelUnlink(handle, &channel_name);
- do {
- result = saEvtFinalize(handle);
- } while ((result == SA_AIS_ERR_TRY_AGAIN) && !sleep(TRY_WAIT));
- if (result != SA_AIS_OK) {
- get_sa_error(result, result_buf, result_buf_len);
- printf("ERROR: Event Finalize result: %s\n", result_buf);
- }
- printf("Done\n");
- }
- int main (void)
- {
- test_initialize ();
- test_channel();
- test_event();
- test_multi_channel1();
- test_multi_channel2();
- test_multi_channel3();
- test_retention();
- test_unlink_channel();
- return (0);
- }
- /*
- * vi: set autoindent tabstop=4 shiftwidth=4 :
- */
|