/usr/include/ptclib/vxml.h is in libpt-dev 2.10.11~dfsg-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 | /*
* vxml.h
*
* VXML engine for pwlib library
*
* Copyright (C) 2002 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Revision: 29067 $
* $Author: rjongbloed $
* $Date: 2013-02-11 22:34:39 -0600 (Mon, 11 Feb 2013) $
*/
#ifndef PTLIB_VXML_H
#define PTLIB_VXML_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptclib/pxml.h>
#if P_VXML
#include <ptlib/pfactory.h>
#include <ptlib/pipechan.h>
#include <ptclib/delaychan.h>
#include <ptclib/pwavfile.h>
#include <ptclib/ptts.h>
#include <ptclib/url.h>
#include <queue>
class PVXMLSession;
class PVXMLDialog;
class PVXMLSession;
// these are the same strings as the Opal equivalents, but as this is PWLib, we can't use Opal contants
#define VXML_PCM16 "PCM-16"
#define VXML_G7231 "G.723.1"
#define VXML_G729 "G.729"
//////////////////////////////////////////////////////////////////
class PVXMLGrammar : public PObject
{
PCLASSINFO(PVXMLGrammar, PObject);
public:
PVXMLGrammar(PVXMLSession & session, PXMLElement & field);
virtual void OnUserInput(const char ch) = 0;
virtual void Start();
virtual bool Process();
enum GrammarState {
Idle, ///< Not yet started
Started, ///< Grammar awaiting input
Filled, ///< got something that matched the grammar
NoInput, ///< timeout or still waiting to match
NoMatch, ///< recognized something but didn't match the grammar
Help ///< help keyword
};
GrammarState GetState() const { return m_state; }
void SetTimeout(const PTimeInterval & timeout);
protected:
PDECLARE_NOTIFIER(PTimer, PVXMLGrammar, OnTimeout);
PVXMLSession & m_session;
PXMLElement & m_field;
PString m_value;
GrammarState m_state;
PTimeInterval m_timeout;
PTimer m_timer;
PMutex m_mutex;
};
//////////////////////////////////////////////////////////////////
class PVXMLMenuGrammar : public PVXMLGrammar
{
PCLASSINFO(PVXMLMenuGrammar, PVXMLGrammar);
public:
PVXMLMenuGrammar(PVXMLSession & session, PXMLElement & field);
virtual void OnUserInput(const char ch);
virtual bool Process();
};
//////////////////////////////////////////////////////////////////
class PVXMLDigitsGrammar : public PVXMLGrammar
{
PCLASSINFO(PVXMLDigitsGrammar, PVXMLGrammar);
public:
PVXMLDigitsGrammar(
PVXMLSession & session,
PXMLElement & field,
PINDEX minDigits,
PINDEX maxDigits,
PString terminators
);
virtual void OnUserInput(const char ch);
protected:
PINDEX m_minDigits;
PINDEX m_maxDigits;
PString m_terminators;
};
//////////////////////////////////////////////////////////////////
class PVXMLCache : public PMutex
{
public:
PVXMLCache(const PDirectory & directory);
PFilePath CreateFilename(const PString & prefix, const PString & key, const PString & fileType);
void Put(const PString & prefix,
const PString & key,
const PString & fileType,
const PString & contentType,
const PFilePath & fn,
PFilePath & dataFn);
PBoolean Get(const PString & prefix,
const PString & key,
const PString & fileType,
PString & contentType,
PFilePath & fn);
PFilePath GetCacheDir() const
{ return directory; }
PFilePath GetRandomFilename(const PString & prefix, const PString & fileType);
static PVXMLCache & GetResourceCache();
protected:
PDirectory directory;
};
//////////////////////////////////////////////////////////////////
class PVXMLChannel;
class PVXMLSession : public PIndirectChannel
{
PCLASSINFO(PVXMLSession, PIndirectChannel);
public:
PVXMLSession(PTextToSpeech * tts = NULL, PBoolean autoDelete = false);
virtual ~PVXMLSession();
// new functions
PTextToSpeech * SetTextToSpeech(PTextToSpeech * tts, PBoolean autoDelete = false);
PTextToSpeech * SetTextToSpeech(const PString & ttsName);
PTextToSpeech * GetTextToSpeech() const { return m_textToSpeech; }
virtual PBoolean Load(const PString & source);
virtual PBoolean LoadFile(const PFilePath & file, const PString & firstForm = PString::Empty());
virtual PBoolean LoadURL(const PURL & url);
virtual PBoolean LoadVXML(const PString & xml, const PString & firstForm = PString::Empty());
virtual PBoolean IsLoaded() const { return m_xml.IsLoaded(); }
virtual PBoolean Open(const PString & mediaFormat);
virtual PBoolean Close();
virtual PBoolean Execute();
PVXMLChannel * GetAndLockVXMLChannel();
void UnLockVXMLChannel() { m_sessionMutex.Signal(); }
PMutex & GetSessionMutex() { return m_sessionMutex; }
virtual PBoolean LoadGrammar(PVXMLGrammar * grammar);
virtual PBoolean PlayText(const PString & text, PTextToSpeech::TextType type = PTextToSpeech::Default, PINDEX repeat = 1, PINDEX delay = 0);
PBoolean ConvertTextToFilenameList(const PString & text, PTextToSpeech::TextType type, PStringArray & list, PBoolean useCacheing);
virtual PBoolean PlayFile(const PString & fn, PINDEX repeat = 1, PINDEX delay = 0, PBoolean autoDelete = false);
virtual PBoolean PlayData(const PBYTEArray & data, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean PlayCommand(const PString & data, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean PlayResource(const PURL & url, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean PlayTone(const PString & toneSpec, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean PlayElement(PXMLElement & element);
//virtual PBoolean PlayMedia(const PURL & url, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean PlaySilence(PINDEX msecs = 0);
virtual PBoolean PlaySilence(const PTimeInterval & timeout);
virtual PBoolean PlayStop();
virtual void SetPause(PBoolean pause);
virtual void GetBeepData(PBYTEArray & data, unsigned ms);
virtual PBoolean StartRecording(const PFilePath & fn, PBoolean recordDTMFTerm, const PTimeInterval & recordMaxTime, const PTimeInterval & recordFinalSilence);
virtual PBoolean EndRecording();
virtual void OnUserInput(const PString & str);
PString GetXMLError() const;
virtual void OnEndDialog();
virtual void OnEndSession();
enum TransferType {
BridgedTransfer,
BlindTransfer,
ConsultationTransfer
};
virtual bool OnTransfer(const PString & /*destination*/, TransferType /*type*/) { return false; }
void SetTransferComplete(bool state);
const PStringToString & GetVariables() { return m_variables; }
virtual PCaselessString GetVar(const PString & str) const;
virtual void SetVar(const PString & ostr, const PString & val);
virtual PString EvaluateExpr(const PString & oexpr);
static PTimeInterval StringToTime(const PString & str, int dflt = 0);
virtual PBoolean RetreiveResource(const PURL & url, PString & contentType, PFilePath & fn, PBoolean useCache = true);
PDECLARE_NOTIFIER(PThread, PVXMLSession, VXMLExecute);
bool SetCurrentForm(const PString & id, bool fullURI);
bool GoToEventHandler(PXMLElement & element, const PString & eventName);
// overrides from VXMLChannelInterface
virtual void OnEndRecording();
virtual void Trigger();
virtual PBoolean TraverseAudio(PXMLElement & element);
virtual PBoolean TraverseBreak(PXMLElement & element);
virtual PBoolean TraverseValue(PXMLElement & element);
virtual PBoolean TraverseSayAs(PXMLElement & element);
virtual PBoolean TraverseGoto(PXMLElement & element);
virtual PBoolean TraverseGrammar(PXMLElement & element);
virtual PBoolean TraverseRecord(PXMLElement & element);
virtual PBoolean TraversedRecord(PXMLElement & element);
virtual PBoolean TraverseIf(PXMLElement & element);
virtual PBoolean TraverseExit(PXMLElement & element);
virtual PBoolean TraverseVar(PXMLElement & element);
virtual PBoolean TraverseSubmit(PXMLElement & element);
virtual PBoolean TraverseMenu(PXMLElement & element);
virtual PBoolean TraversedMenu(PXMLElement & element);
virtual PBoolean TraverseChoice(PXMLElement & element);
virtual PBoolean TraverseProperty(PXMLElement & element);
virtual PBoolean TraverseDisconnect(PXMLElement & element);
virtual PBoolean TraverseForm(PXMLElement & element);
virtual PBoolean TraversedForm(PXMLElement & element);
virtual PBoolean TraversePrompt(PXMLElement & element);
virtual PBoolean TraversedPrompt(PXMLElement & element);
virtual PBoolean TraverseField(PXMLElement & element);
virtual PBoolean TraversedField(PXMLElement & element);
virtual PBoolean TraverseTransfer(PXMLElement & element);
virtual PBoolean TraversedTransfer(PXMLElement & element);
__inline PVXMLChannel * GetVXMLChannel() const { return (PVXMLChannel *)readChannel; }
protected:
virtual bool InternalLoadVXML(const PString & xml, const PString & firstForm);
virtual bool ProcessNode();
virtual bool ProcessEvents();
virtual bool ProcessGrammar();
virtual bool NextNode(bool processChildren);
void SayAs(const PString & className, const PString & text);
void SayAs(const PString & className, const PString & text, const PString & voice);
PURL NormaliseResourceName(const PString & src);
PMutex m_sessionMutex;
PURL m_rootURL;
PXML m_xml;
PTextToSpeech * m_textToSpeech;
bool m_autoDeleteTextToSpeech;
PThread * m_vxmlThread;
bool m_abortVXML;
PSyncPoint m_waitForEvent;
PXMLObject * m_currentNode;
bool m_xmlChanged;
bool m_speakNodeData;
bool m_bargeIn;
bool m_bargingIn;
PVXMLGrammar * m_grammar;
char m_defaultMenuDTMF;
PStringToString m_variables;
PString m_variableScope;
std::queue<char> m_userInputQueue;
PMutex m_userInputMutex;
enum {
NotRecording,
RecordingInProgress,
RecordingComplete
} m_recordingStatus;
bool m_recordStopOnDTMF;
enum {
NotTransfering,
TransferInProgress,
TransferFailed,
TransferSuccessful
} m_transferStatus;
PTime m_transferStartTime;
};
//////////////////////////////////////////////////////////////////
class PVXMLRecordable : public PObject
{
PCLASSINFO(PVXMLRecordable, PObject);
public:
PVXMLRecordable();
virtual PBoolean Open(const PString & arg) = 0;
virtual bool OnStart(PVXMLChannel & incomingChannel) = 0;
virtual void OnStop() { }
virtual PBoolean OnFrame(PBoolean /*isSilence*/) { return false; }
void SetFinalSilence(unsigned v)
{ m_finalSilence = v > 0 ? v : 60000; }
unsigned GetFinalSilence()
{ return m_finalSilence; }
void SetMaxDuration(unsigned v)
{ m_maxDuration = v > 0 ? v : 86400000; }
unsigned GetMaxDuration()
{ return m_maxDuration; }
protected:
PSimpleTimer m_silenceTimer;
PSimpleTimer m_recordTimer;
unsigned m_finalSilence;
unsigned m_maxDuration;
};
//////////////////////////////////////////////////////////////////
class PVXMLRecordableFilename : public PVXMLRecordable
{
PCLASSINFO(PVXMLRecordableFilename, PVXMLRecordable);
public:
PBoolean Open(const PString & arg);
bool OnStart(PVXMLChannel & incomingChannel);
PBoolean OnFrame(PBoolean isSilence);
protected:
PFilePath m_fileName;
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayable : public PObject
{
PCLASSINFO(PVXMLPlayable, PObject);
public:
PVXMLPlayable();
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual bool OnStart() = 0;
virtual bool OnRepeat();
virtual bool OnDelay();
virtual void OnStop();
virtual void SetRepeat(PINDEX v)
{ m_repeat = v; }
virtual PINDEX GetRepeat() const
{ return m_repeat; }
virtual PINDEX GetDelay() const
{ return m_delay; }
void SetFormat(const PString & fmt)
{ m_format = fmt; }
void SetSampleFrequency(unsigned rate)
{ m_sampleFrequency = rate; }
friend class PVXMLChannel;
protected:
PVXMLChannel * m_vxmlChannel;
PChannel * m_subChannel;
PINDEX m_repeat;
PINDEX m_delay;
PString m_format;
unsigned m_sampleFrequency;
bool m_autoDelete;
bool m_delayDone; // very tacky flag used to indicate when the post-play delay has been done
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableStop : public PVXMLPlayable
{
PCLASSINFO(PVXMLPlayableStop, PVXMLPlayable);
public:
virtual bool OnStart();
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableURL : public PVXMLPlayable
{
PCLASSINFO(PVXMLPlayableURL, PVXMLPlayable);
public:
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual bool OnStart();
protected:
PURL m_url;
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableData : public PVXMLPlayable
{
PCLASSINFO(PVXMLPlayableData, PVXMLPlayable);
public:
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
void SetData(const PBYTEArray & data);
virtual bool OnStart();
virtual bool OnRepeat();
protected:
PBYTEArray m_data;
};
//////////////////////////////////////////////////////////////////
#include <ptclib/dtmf.h>
class PVXMLPlayableTone : public PVXMLPlayableData
{
PCLASSINFO(PVXMLPlayableTone, PVXMLPlayableData);
public:
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
protected:
PTones m_tones;
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableCommand : public PVXMLPlayable
{
PCLASSINFO(PVXMLPlayableCommand, PVXMLPlayable);
public:
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual bool OnStart();
virtual void OnStop();
protected:
PString m_command;
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableFile : public PVXMLPlayable
{
PCLASSINFO(PVXMLPlayableFile, PVXMLPlayable);
public:
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual bool OnStart();
virtual bool OnRepeat();
virtual void OnStop();
protected:
PFilePath m_filePath;
};
//////////////////////////////////////////////////////////////////
class PVXMLPlayableFileList : public PVXMLPlayableFile
{
PCLASSINFO(PVXMLPlayableFileList, PVXMLPlayableFile);
public:
PVXMLPlayableFileList();
virtual PBoolean Open(PVXMLChannel & chan, const PString & arg, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual PBoolean Open(PVXMLChannel & chan, const PStringArray & filenames, PINDEX delay, PINDEX repeat, PBoolean autoDelete);
virtual bool OnStart();
virtual bool OnRepeat();
virtual void OnStop();
protected:
PStringArray m_fileNames;
PINDEX m_currentIndex;
};
//////////////////////////////////////////////////////////////////
PQUEUE(PVXMLQueue, PVXMLPlayable);
//////////////////////////////////////////////////////////////////
class PVXMLChannel : public PDelayChannel
{
PCLASSINFO(PVXMLChannel, PDelayChannel);
public:
PVXMLChannel(unsigned frameDelay, PINDEX frameSize);
~PVXMLChannel();
virtual PBoolean Open(PVXMLSession * session);
// overrides from PIndirectChannel
virtual PBoolean IsOpen() const;
virtual PBoolean Close();
virtual PBoolean Read(void * buffer, PINDEX amount);
virtual PBoolean Write(const void * buf, PINDEX len);
// new functions
virtual PWAVFile * CreateWAVFile(const PFilePath & fn, PBoolean recording = false);
const PString & GetMediaFormat() const { return mediaFormat; }
PBoolean IsMediaPCM() const { return mediaFormat == "PCM-16"; }
virtual PString AdjustWavFilename(const PString & fn);
// Incoming channel functions
virtual PBoolean WriteFrame(const void * buf, PINDEX len) = 0;
virtual PBoolean IsSilenceFrame(const void * buf, PINDEX len) const = 0;
virtual PBoolean QueueRecordable(PVXMLRecordable * newItem);
PBoolean StartRecording(const PFilePath & fn, unsigned finalSilence = 3000, unsigned maxDuration = 30000);
PBoolean EndRecording();
PBoolean IsRecording() const { return m_recordable != NULL; }
// Outgoing channel functions
virtual PBoolean ReadFrame(void * buffer, PINDEX amount) = 0;
virtual PINDEX CreateSilenceFrame(void * buffer, PINDEX amount) = 0;
virtual void GetBeepData(PBYTEArray &, unsigned) { }
virtual PBoolean QueueResource(const PURL & url, PINDEX repeat= 1, PINDEX delay = 0);
virtual PBoolean QueuePlayable(const PString & type, const PString & str, PINDEX repeat = 1, PINDEX delay = 0, PBoolean autoDelete = false);
virtual PBoolean QueuePlayable(PVXMLPlayable * newItem);
virtual PBoolean QueueData(const PBYTEArray & data, PINDEX repeat = 1, PINDEX delay = 0);
virtual PBoolean QueueFile(const PString & fn, PINDEX repeat = 1, PINDEX delay = 0, PBoolean autoDelete = false)
{ return QueuePlayable("File", fn, repeat, delay, autoDelete); }
virtual PBoolean QueueCommand(const PString & cmd, PINDEX repeat = 1, PINDEX delay = 0)
{ return QueuePlayable("Command", cmd, repeat, delay, true); }
virtual void FlushQueue();
virtual PBoolean IsPlaying() const { return m_currentPlayItem != NULL || m_playQueue.GetSize() > 0; }
void SetPause(PBoolean pause) { m_paused = pause; }
unsigned GetSampleFrequency() const { return m_sampleFrequency; }
void SetSilence(unsigned msecs);
protected:
PVXMLSession * m_vxmlSession;
unsigned m_sampleFrequency;
PString mediaFormat;
PString wavFilePrefix;
PMutex m_channelWriteMutex;
PMutex m_channelReadMutex;
bool m_closed;
bool m_paused;
PINDEX m_totalData;
// Incoming audio variables
PVXMLRecordable * m_recordable;
unsigned m_finalSilence;
unsigned m_silenceRun;
// Outgoing audio variables
PVXMLQueue m_playQueue;
PVXMLPlayable * m_currentPlayItem;
PSimpleTimer m_silenceTimer;
};
//////////////////////////////////////////////////////////////////
class PVXMLNodeHandler : public PObject
{
PCLASSINFO(PVXMLNodeHandler, PObject);
public:
// Return true for process node, false to skip and move to next sibling
virtual bool Start(PVXMLSession & /*session*/, PXMLElement & /*node*/) const { return true; }
// Return true to move to next sibling, false to stay at this node.
virtual bool Finish(PVXMLSession & /*session*/, PXMLElement & /*node*/) const { return true; }
};
typedef PFactory<PVXMLNodeHandler, PCaselessString> PVXMLNodeFactory;
#endif // P_VXML
#endif // PTLIB_VXML_H
// End of file ////////////////////////////////////////////////////////////////
|