123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /*
- * Copyright (C) 2008-2013 Teluu Inc. (http://www.teluu.com)
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #include <pjsua2.hpp>
- #include <iostream>
- #include <pj/file_access.h>
- #define THIS_FILE "pjsua2_demo.cpp"
- using namespace pj;
- /* Valid test number:
- * 0: JSON account config test
- * 1: call test
- * 2: JSON endpoint config test
- * 3: media player and recorder test
- * 4: simple registration test
- */
- #define USE_TEST 1
- class MyEndpoint : public Endpoint
- {
- public:
- MyEndpoint() : Endpoint() {};
- virtual pj_status_t onCredAuth(OnCredAuthParam &prm)
- {
- PJ_UNUSED_ARG(prm);
- std::cout << "*** Callback onCredAuth called ***" << std::endl;
- /* Return PJ_ENOTSUP to use
- * pjsip_auth_create_aka_response()/<b>libmilenage</b> (default),
- * if PJSIP_HAS_DIGEST_AKA_AUTH is defined.
- */
- return PJ_ENOTSUP;
- }
- };
- class MyAccount;
- class MyAudioMediaPort: public AudioMediaPort
- {
- virtual void onFrameRequested(MediaFrame &frame)
- {
- // Give the input frame here
- frame.type = PJMEDIA_FRAME_TYPE_AUDIO;
- // frame.buf.assign(frame.size, 'c');
- }
- virtual void onFrameReceived(MediaFrame &frame)
- {
- PJ_UNUSED_ARG(frame);
- // Process the incoming frame here
- }
- };
- class MyCall : public Call
- {
- private:
- MyAccount *myAcc;
- AudioMediaPlayer *wav_player;
- AudioMediaPort *med_port;
- public:
- MyCall(Account &acc, int call_id = PJSUA_INVALID_ID)
- : Call(acc, call_id)
- {
- wav_player = NULL;
- med_port = NULL;
- myAcc = (MyAccount *)&acc;
- }
-
- ~MyCall()
- {
- if (wav_player)
- delete wav_player;
- if (med_port)
- delete med_port;
- }
-
- virtual void onCallState(OnCallStateParam &prm);
- virtual void onCallTransferRequest(OnCallTransferRequestParam &prm);
- virtual void onCallReplaceRequest(OnCallReplaceRequestParam &prm);
- virtual void onCallMediaState(OnCallMediaStateParam &prm);
- };
- class MyAccount : public Account
- {
- public:
- std::vector<Call *> calls;
-
- public:
- MyAccount()
- {}
- ~MyAccount()
- {
- std::cout << "*** Account is being deleted: No of calls="
- << calls.size() << std::endl;
- for (std::vector<Call *>::iterator it = calls.begin();
- it != calls.end(); )
- {
- delete (*it);
- it = calls.erase(it);
- }
- }
-
- void removeCall(Call *call)
- {
- for (std::vector<Call *>::iterator it = calls.begin();
- it != calls.end(); ++it)
- {
- if (*it == call) {
- calls.erase(it);
- break;
- }
- }
- }
- virtual void onRegState(OnRegStateParam &prm)
- {
- AccountInfo ai = getInfo();
- std::cout << (ai.regIsActive? "*** Register: code=" : "*** Unregister: code=")
- << prm.code << std::endl;
- }
-
- virtual void onIncomingCall(OnIncomingCallParam &iprm)
- {
- Call *call = new MyCall(*this, iprm.callId);
- CallInfo ci = call->getInfo();
- CallOpParam prm;
-
- std::cout << "*** Incoming Call: " << ci.remoteUri << " ["
- << ci.stateText << "]" << std::endl;
-
- calls.push_back(call);
- prm.statusCode = (pjsip_status_code)200;
- call->answer(prm);
- }
- };
- void MyCall::onCallState(OnCallStateParam &prm)
- {
- PJ_UNUSED_ARG(prm);
- CallInfo ci = getInfo();
- std::cout << "*** Call: " << ci.remoteUri << " [" << ci.stateText
- << "]" << std::endl;
-
- if (ci.state == PJSIP_INV_STATE_DISCONNECTED) {
- //myAcc->removeCall(this);
- /* Delete the call */
- //delete this;
- }
- }
- void MyCall::onCallMediaState(OnCallMediaStateParam &prm)
- {
- PJ_UNUSED_ARG(prm);
- CallInfo ci = getInfo();
- AudioMedia aud_med;
- AudioMedia& play_dev_med =
- MyEndpoint::instance().audDevManager().getPlaybackDevMedia();
- try {
- // Get the first audio media
- aud_med = getAudioMedia(-1);
- } catch(...) {
- std::cout << "Failed to get audio media" << std::endl;
- return;
- }
- if (!wav_player) {
- wav_player = new AudioMediaPlayer();
- try {
- wav_player->createPlayer(
- "../../../../tests/pjsua/wavs/input.16.wav", 0);
- } catch (...) {
- std::cout << "Failed opening wav file" << std::endl;
- delete wav_player;
- wav_player = NULL;
- }
- }
- // This will connect the wav file to the call audio media
- if (wav_player)
- wav_player->startTransmit(aud_med);
- if (!med_port) {
- med_port = new MyAudioMediaPort();
- MediaFormatAudio fmt;
- fmt.init(PJMEDIA_FORMAT_PCM, 16000, 1, 20000, 16);
- med_port->createPort("med_port", fmt);
- // Connect the media port to the call audio media in both directions
- med_port->startTransmit(aud_med);
- aud_med.startTransmit(*med_port);
- }
- // And this will connect the call audio media to the sound device/speaker
- aud_med.startTransmit(play_dev_med);
- }
- void MyCall::onCallTransferRequest(OnCallTransferRequestParam &prm)
- {
- /* Create new Call for call transfer */
- prm.newCall = new MyCall(*myAcc);
- }
- void MyCall::onCallReplaceRequest(OnCallReplaceRequestParam &prm)
- {
- /* Create new Call for call replace */
- prm.newCall = new MyCall(*myAcc);
- }
- #if USE_TEST == 1
- static void mainProg1(MyEndpoint &ep)
- {
- // Init library
- EpConfig ep_cfg;
- ep_cfg.logConfig.level = 4;
- ep.libInit( ep_cfg );
- // Transport
- TransportConfig tcfg;
- tcfg.port = 5060;
- ep.transportCreate(PJSIP_TRANSPORT_UDP, tcfg);
- // Start library
- ep.libStart();
- std::cout << "*** PJSUA2 STARTED ***" << std::endl;
- // Add account
- AccountConfig acc_cfg;
- acc_cfg.idUri = "sip:test1@pjsip.org";
- acc_cfg.regConfig.registrarUri = "sip:sip.pjsip.org";
- #if PJSIP_HAS_DIGEST_AKA_AUTH
- AuthCredInfo aci("Digest", "*", "test", PJSIP_CRED_DATA_EXT_AKA | PJSIP_CRED_DATA_PLAIN_PASSWD, "passwd");
- aci.akaK = "passwd";
- #else
- AuthCredInfo aci("digest", "*", "test1", 0, "test1");
- #endif
- acc_cfg.sipConfig.authCreds.push_back(aci);
- MyAccount *acc(new MyAccount);
- try {
- acc->create(acc_cfg);
- } catch (...) {
- std::cout << "Adding account failed" << std::endl;
- }
-
- pj_thread_sleep(2000);
-
- // Make outgoing call
- Call *call = new MyCall(*acc);
- acc->calls.push_back(call);
- CallOpParam prm(true);
- prm.opt.audioCount = 1;
- prm.opt.videoCount = 0;
- call->makeCall("sip:test1@pjsip.org", prm);
-
- // Hangup all calls
- pj_thread_sleep(4000);
- ep.hangupAllCalls();
- pj_thread_sleep(4000);
-
- // Destroy library
- std::cout << "*** PJSUA2 SHUTTING DOWN ***" << std::endl;
- delete acc; /* Will delete all calls too */
- }
- #endif
- #if USE_TEST == 2
- static void mainProg2()
- {
- string json_str;
- {
- EpConfig epCfg;
- JsonDocument jDoc;
- epCfg.uaConfig.maxCalls = 61;
- epCfg.uaConfig.userAgent = "Just JSON Test";
- epCfg.uaConfig.stunServer.push_back("stun1.pjsip.org");
- epCfg.uaConfig.stunServer.push_back("stun2.pjsip.org");
- epCfg.logConfig.filename = "THE.LOG";
- jDoc.writeObject(epCfg);
- json_str = jDoc.saveString();
- std::cout << json_str << std::endl << std::endl;
- }
- {
- EpConfig epCfg;
- JsonDocument rDoc;
- string output;
- rDoc.loadString(json_str);
- rDoc.readObject(epCfg);
- JsonDocument wDoc;
- wDoc.writeObject(epCfg);
- json_str = wDoc.saveString();
- std::cout << json_str << std::endl << std::endl;
- wDoc.saveFile("jsontest.js");
- }
- {
- EpConfig epCfg;
- JsonDocument rDoc;
- rDoc.loadFile("jsontest.js");
- rDoc.readObject(epCfg);
- pj_file_delete("jsontest.js");
- }
- }
- #endif
- #if USE_TEST == 3
- static void mainProg3(MyEndpoint &ep)
- {
- const char *paths[] = { "../../../../tests/pjsua/wavs/input.16.wav",
- "../../tests/pjsua/wavs/input.16.wav",
- "input.16.wav"};
- unsigned i;
- const char *filename = NULL;
- // Init library
- EpConfig ep_cfg;
- ep.libInit( ep_cfg );
- for (i=0; i<PJ_ARRAY_SIZE(paths); ++i) {
- if (pj_file_exists(paths[i])) {
- filename = paths[i];
- break;
- }
- }
- if (!filename) {
- PJSUA2_RAISE_ERROR3(PJ_ENOTFOUND, "mainProg3()",
- "Could not locate input.16.wav");
- }
- // Start library
- ep.libStart();
- std::cout << "*** PJSUA2 STARTED ***" << std::endl;
- /* Use Null Audio Device as main media clock. This is useful for improving
- * media clock (see also https://trac.pjsip.org/repos/wiki/FAQ#tx-timing)
- * especially when sound device clock is jittery.
- */
- ep.audDevManager().setNullDev();
- /* And install sound device using Extra Audio Device */
- ExtraAudioDevice auddev2(-1, -1);
- try {
- auddev2.open();
- } catch (...) {
- std::cout << "Extra sound device failed" << std::endl;
- }
- // Create player and recorder
- {
- AudioMediaPlayer amp;
- amp.createPlayer(filename);
- AudioMediaRecorder amr;
- amr.createRecorder("recorder_test_output.wav");
- amp.startTransmit(amr);
- if (auddev2.isOpened())
- amp.startTransmit(auddev2);
- pj_thread_sleep(5000);
- }
- }
- #endif
- #if USE_TEST == 0
- static void mainProg(MyEndpoint &)
- {
- string json_str;
- {
- JsonDocument jdoc;
- AccountConfig accCfg;
- accCfg.idUri = "\"Just Test\" <sip:test@pjsip.org>";
- accCfg.regConfig.registrarUri = "sip:sip.pjsip.org";
- SipHeader h;
- h.hName = "X-Header";
- h.hValue = "User header";
- accCfg.regConfig.headers.push_back(h);
- accCfg.sipConfig.proxies.push_back("<sip:sip.pjsip.org;transport=tcp>");
- accCfg.sipConfig.proxies.push_back("<sip:sip.pjsip.org;transport=tls>");
- accCfg.mediaConfig.transportConfig.tlsConfig.ciphers.push_back(1);
- accCfg.mediaConfig.transportConfig.tlsConfig.ciphers.push_back(2);
- accCfg.mediaConfig.transportConfig.tlsConfig.ciphers.push_back(3);
- AuthCredInfo aci;
- aci.scheme = "digest";
- aci.username = "test";
- aci.data = "passwd";
- aci.realm = "*";
- aci.dataType = PJSIP_CRED_DATA_PLAIN_PASSWD;
- #if PJSIP_HAS_DIGEST_AKA_AUTH
- aci.dataType |= PJSIP_CRED_DATA_EXT_AKA;
- aci.akaK = "key";
- #endif
- accCfg.sipConfig.authCreds.push_back(aci);
- jdoc.writeObject(accCfg);
- json_str = jdoc.saveString();
- std::cout << "Original:" << std::endl;
- std::cout << json_str << std::endl << std::endl;
- }
- {
- JsonDocument rdoc;
- rdoc.loadString(json_str);
- AccountConfig accCfg;
- rdoc.readObject(accCfg);
- JsonDocument wdoc;
- wdoc.writeObject(accCfg);
- json_str = wdoc.saveString();
- std::cout << "Parsed:" << std::endl;
- std::cout << json_str << std::endl << std::endl;
- }
- }
- #endif
- #if USE_TEST == 4
- static void mainProg4(MyEndpoint &ep)
- {
- // Init library
- EpConfig ep_cfg;
- ep.libInit( ep_cfg );
- // Create transport
- TransportConfig tcfg;
- tcfg.port = 5060;
- ep.transportCreate(PJSIP_TRANSPORT_UDP, tcfg);
- ep.transportCreate(PJSIP_TRANSPORT_TCP, tcfg);
- // Add account
- AccountConfig acc_cfg;
- acc_cfg.idUri = "sip:localhost";
- MyAccount *acc(new MyAccount);
- acc->create(acc_cfg);
- // Start library
- ep.libStart();
- std::cout << "*** PJSUA2 STARTED ***" << std::endl;
- // Just wait for ENTER key
- std::cout << "Press ENTER to quit..." << std::endl;
- std::cin.get();
- delete acc;
- }
- #endif
- extern "C"
- int main()
- {
- int ret = 0;
- MyEndpoint ep;
- try {
- ep.libCreate();
- #if USE_TEST == 0
- mainProg(ep);
- #endif
- #if USE_TEST == 1
- mainProg1(ep);
- #endif
- #if USE_TEST == 2
- mainProg2(ep);
- #endif
- #if USE_TEST == 3
- mainProg3(ep);
- #endif
- #if USE_TEST == 4
- mainProg4(ep);
- #endif
- ret = PJ_SUCCESS;
- } catch (Error & err) {
- std::cout << "Exception: " << err.info() << std::endl;
- ret = 1;
- }
- try {
- ep.libDestroy();
- } catch(Error &err) {
- std::cout << "Exception: " << err.info() << std::endl;
- ret = 1;
- }
- if (ret == PJ_SUCCESS) {
- std::cout << "Success" << std::endl;
- } else {
- std::cout << "Error Found" << std::endl;
- }
- return ret;
- }
|