ClassOne.cpp
上传用户:glass0516
上传日期:2010-01-11
资源大小:104k
文件大小:80k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2. * RelayFax Open Source Project
  3. * Copyright 1996-2004 Alt-N Technologies, Ltd.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted only as authorized by the RelayFax Open 
  8. * Source License.  A copy of this license is available in file LICENSE 
  9. * in the top-level directory of the distribution.
  10. *
  11. * RelayFax is a registered trademark of Alt-N Technologies, Ltd.
  12. *
  13. * Individual files and/or contributed packages may be copyright by
  14. * other parties and subject to additional restrictions.
  15. *****************************************************************************/
  16. ////////////////////////////////////////////////////////////////////////////////
  17. //
  18. // The purpose of CClassOne is contain the protocol specifics of EIA
  19. // fax modem class 1
  20. //
  21. ////////////////////////////////////////////////////////////////////////////////
  22. #include "stdafx.h"
  23. #include "ClassOne.h"
  24. //////////////////////////////////////////////////////////////////////
  25. // Construction/Destruction
  26. //////////////////////////////////////////////////////////////////////
  27. CClassOne::CClassOne()
  28. {
  29. m_sEIAClass = "1";
  30. }
  31. CClassOne::~CClassOne()
  32. {
  33. }
  34. void CClassOne::OnConnect(void)
  35. {
  36. SetState( STATE_INIT );
  37. SendCommand( COMMAND_INIT );
  38. m_nLoopCtr = 0; 
  39. }
  40. bool CClassOne::OnDisconnect(void)
  41. {
  42. switch( m_nState )
  43. {
  44. case STATE_INIT:
  45. SignalEvent( EVENT_ERROR );
  46. return true;
  47. case STATE_PHASE_A:
  48. case STATE_PHASE_B:
  49. case STATE_PHASE_C:
  50.   case STATE_PHASE_D:
  51.     case STATE_PHASE_E:
  52. Abort( true );
  53. return false;
  54. }
  55. return true;
  56. }
  57. //////////////////////////////////////////////////////////////////////
  58. // OnWrite
  59. //////////////////////////////////////////////////////////////////////
  60. void CClassOne::OnWrite(void)
  61. {
  62. m_dwActivityTimer = GetTickCount();
  63. if( m_nState == STATE_PHASE_C && !m_bReceiving )
  64. {
  65. m_nPageBytes += m_BytesWritten;
  66. int nPercent = 100 * m_nPageBytes / m_FaxFile.GetPageBytes();
  67. if( nPercent > 100 )
  68. nPercent = 100;
  69. SignalEvent( EVENT_PAGE_DATA, nPercent );
  70. }
  71. }
  72. //////////////////////////////////////////////////////////////////////
  73. // OnReadLine
  74. //////////////////////////////////////////////////////////////////////
  75. void CClassOne::OnReadLine(void)
  76. {
  77. //char szMsg[256];
  78. //wsprintf( szMsg, "CClassOne::OnReadLine: %s %dn", m_szLineBuff, m_nLineBuffPtr );
  79. //OutputDebugString( szMsg );
  80. switch( m_nState )
  81. {
  82. case STATE_IDLE:
  83. PhaseIdle();
  84. break;
  85. case STATE_INIT:
  86. PhaseInit();
  87. break;
  88. case STATE_PHASE_A:
  89. PhaseA();
  90. break;
  91. case STATE_PHASE_B:
  92. PhaseB();
  93. break;
  94. case STATE_PHASE_C:
  95. PhaseC();
  96. break;
  97. case STATE_PHASE_D:
  98. PhaseD();
  99. break;
  100. case STATE_PHASE_E:
  101. PhaseE();
  102. break;
  103. case STATE_RINGING:
  104. PhaseRinging();
  105. break;
  106. case STATE_DISCONNECT:
  107. PhaseDisconnect();
  108. break;
  109. }
  110. }
  111. //////////////////////////////////////////////////////////////////////
  112. // PhaseInit
  113. //////////////////////////////////////////////////////////////////////
  114. void CClassOne::PhaseInit(void)
  115. {
  116. if( stricmp( m_szLineBuff, m_LastCommandString.c_str() ) == 0 )
  117. {
  118. // Echo - ignore
  119. return;
  120. }
  121. if( IsRing() )
  122. {
  123. // RING
  124. m_nRingCount++;
  125. return;
  126. }
  127. switch( m_nLastCommand )
  128. {
  129. case COMMAND_INIT:
  130. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  131. {
  132. m_bGotOK = true;
  133. // m_nLoopCtr = 0;
  134. // SendCommand( COMMAND_SETUP_STRING );
  135. }
  136. else 
  137. {
  138. if( ++m_nLoopCtr >= 3 )
  139. {
  140. ErrorUnexpectedResponse();
  141. KillTimer( TIMER_COMMAND );
  142. OnDisconnectMsg();
  143. }
  144. }
  145. break;
  146. case COMMAND_SETUP_STRING:
  147. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  148. {
  149. SendCommand( COMMAND_DISABLE_ECHO );
  150. }
  151. else
  152. {
  153. ErrorUnexpectedResponse();
  154. //SetState( STATE_IDLE );
  155. SendCommand( COMMAND_DISABLE_ECHO );
  156. }
  157. break;
  158. case COMMAND_DISABLE_ECHO:
  159. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  160. {
  161. SendCommand( COMMAND_SET_SPKR_VOL );
  162. }
  163. else
  164. {
  165. ErrorUnexpectedResponse();
  166. SendCommand( COMMAND_SET_SPKR_VOL );
  167. }
  168. break;
  169. case COMMAND_SET_SPKR_VOL:
  170. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  171. {
  172. SendCommand( COMMAND_SET_SPKR_MODE );
  173. }
  174. else
  175. {
  176. ErrorUnexpectedResponse();
  177. SendCommand( COMMAND_SET_SPKR_MODE );
  178. }
  179. break;
  180. case COMMAND_SET_SPKR_MODE:
  181. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  182. {
  183. SendCommand( COMMAND_SET_FCLASS_1 );
  184. }
  185. else
  186. {
  187. ErrorUnexpectedResponse();
  188. SendCommand( COMMAND_SET_FCLASS_1 );
  189. }
  190. break;
  191. case COMMAND_SET_FCLASS_1:
  192. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  193. {
  194. SendCommand( COMMAND_QUERY_SEND_SPEEDS );
  195. }
  196. else
  197. {
  198. ErrorUnexpectedResponse();
  199. KillTimer( TIMER_COMMAND );
  200. OnDisconnectMsg();
  201. }
  202. break;
  203. case COMMAND_QUERY_SEND_SPEEDS:
  204. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  205. {
  206. SendCommand( COMMAND_QUERY_RECEIVE_SPEEDS );
  207. }
  208. else
  209. {
  210. ProcSupportedSpeeds( m_szLineBuff, true );
  211. }
  212. break;
  213. case COMMAND_QUERY_RECEIVE_SPEEDS:
  214. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  215. {
  216. KillTimer( TIMER_COMMAND );
  217. SetState( STATE_IDLE );
  218. }
  219. else
  220. {
  221. ProcSupportedSpeeds( m_szLineBuff, false );
  222. }
  223. break;
  224. }
  225. }
  226. //////////////////////////////////////////////////////////////////////
  227. // PhaseIdle
  228. //////////////////////////////////////////////////////////////////////
  229. void CClassOne::PhaseIdle(void)
  230. {
  231. if( IsRing() )
  232. {
  233. m_nRingCount = 1;
  234. SetState( STATE_RINGING );
  235. SignalEvent( EVENT_RING, m_nRingCount );
  236. }
  237. }
  238. //////////////////////////////////////////////////////////////////////
  239. // Phase Ringing
  240. //////////////////////////////////////////////////////////////////////
  241. void CClassOne::PhaseRinging(void)
  242. {
  243. if( IsRing() )
  244. {
  245. m_nRingCount++;
  246. SignalEvent( EVENT_RING, m_nRingCount );
  247. /*
  248. if( OkToAnswer() )
  249. {
  250. m_bReceiving = true;
  251. m_bSuccessful = false;
  252. SendCommand( COMMAND_ANSWER );
  253. SetState( STATE_PHASE_A );
  254. }
  255. */
  256. }
  257. else if( strnicmp( m_szLineBuff, "CONNECT", 7 ) == 0 )
  258. {
  259. m_FaxFile.SetSendEncoding( m_nSendEncoding );
  260. m_bReceiving = true;
  261. m_bSuccessful = false;
  262. m_nLoopCtr = 0;
  263. m_bGotDCN = false;
  264. SignalEvent( EVENT_START_RECV );
  265. SendID(CSI);
  266. SetState( STATE_PHASE_B, STATE_SEND_DIS );
  267. }
  268. else
  269. {
  270. SignalEvent( EVENT_CALLERID );
  271. }
  272. }
  273. //////////////////////////////////////////////////////////////////////
  274. // Phase A - call setup
  275. //////////////////////////////////////////////////////////////////////
  276. void CClassOne::PhaseA(void)
  277. {
  278. if( strnicmp( m_szLineBuff, "CONNECT", 7 ) == 0 )
  279. {
  280. m_nLoopCtr = 0;
  281. m_bGotDCN = false;
  282. if( m_bReceiving )
  283. {
  284. SignalEvent( EVENT_START_RECV );
  285. SendID(CSI);
  286. SetState( STATE_PHASE_B, STATE_SEND_DIS );
  287. }
  288. else
  289. {
  290. SignalEvent( EVENT_START_SEND );
  291. m_bGotDIS = false;
  292. m_bGotConnect = false;
  293. InitHDLC();
  294. SetState( STATE_PHASE_B, STATE_WAIT_FOR_DIS );
  295. }
  296. return;
  297. }
  298. else
  299. {
  300. ErrorConnectResponse();
  301. Terminate();
  302. PhaseDisconnect();
  303. }
  304. }
  305. //////////////////////////////////////////////////////////////////////
  306. // Phase B - negotiation and training
  307. //////////////////////////////////////////////////////////////////////
  308. void CClassOne::PhaseB(void)
  309. {
  310. switch( m_nPhaseState )
  311. {
  312. // begin sending states
  313. case STATE_WAIT_FOR_DIS:
  314. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  315. {
  316. if( m_bGotDCN )
  317. {
  318. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  319. Terminate();
  320. DoHangup();
  321. }
  322. else if( m_bFinalHDLCFrame && m_bGotDIS )
  323. {
  324. m_nLoopCtr = 0;
  325. EnableSoftFlowControl( true );
  326. SendHDLCFrame();
  327. m_nPhaseState = STATE_SEND_TIS;
  328. }
  329. else
  330. {
  331. // ask for another
  332. if( ++m_nLoopCtr >= 6 )
  333. {
  334. m_sLastError.assign( (char*)LoadString(GEN_DIS_NOT_RECEIVED).c_str() );
  335. // SignalEvent( EVENT_ERROR );
  336. SendHDLCFrame();
  337. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  338. }
  339. else
  340. {
  341. RecvHDLCFrame();
  342. }
  343. }
  344. }
  345. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  346. {
  347. // get ready for another HDLC frame
  348. m_bGotConnect = true;
  349. InitHDLC();
  350. KillTimer( TIMER_HDLC_RECV );
  351. }
  352. else 
  353. {
  354. if( ++m_nLoopCtr >= 3 )
  355. {
  356. m_sLastError.assign( (char*)LoadString(GEN_DIS_NOT_RECEIVED).c_str() );
  357. // SignalEvent( EVENT_ERROR );
  358. SendHDLCFrame();
  359. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  360. }
  361. else
  362. {
  363. RecvHDLCFrame();
  364. }
  365. }
  366. break;
  367. case STATE_SEND_TIS:
  368. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  369. {
  370. SendID(TSI);
  371. m_nPhaseState = STATE_SEND_DCS;
  372. m_bGotConnect = false;
  373. }
  374. else 
  375. {
  376. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_TSI).c_str() );
  377. // SignalEvent( EVENT_ERROR );
  378. SendHDLCFrame();
  379. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  380. }
  381. break;
  382. case STATE_SEND_DCS:
  383. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  384. {
  385. // Send 75ms of silence
  386. SendFormattedCommand( "FTS", 8 );
  387. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_TRAINING;
  388. }
  389. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  390. {
  391. m_bGotConnect = true;
  392. SendDCS();
  393. }
  394. else 
  395. {
  396. if( ++m_nLoopCtr >= 3 )
  397. {
  398. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_DCS).c_str() );
  399. // SignalEvent( EVENT_ERROR );
  400. SendHDLCFrame();
  401. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  402. }
  403. else
  404. {
  405. SendHDLCFrame();
  406. }
  407. }
  408. break;
  409. case STATE_SEND_SILENCE_BEFORE_TRAINING:
  410. //if( stricmp( m_szLineBuff, "OK" ) != 0 )
  411. //{
  412. // OutputDebugString( "Error sending silencen" );
  413. //}
  414. SendLongTraining();
  415. // change state
  416. m_nPhaseState = STATE_SEND_TRAINING_DATA;
  417. SignalEvent( EVENT_START_TRAINING );
  418. break;
  419. case STATE_SEND_TRAINING_DATA:
  420. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  421. {
  422. SendTraining();
  423. m_nPhaseState = STATE_SEND_TRAINING;
  424. }
  425. else 
  426. {
  427. if( ++m_nLoopCtr >= 3 )
  428. {
  429. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_TRAINING_DATA).c_str() );
  430. // SignalEvent( EVENT_ERROR );
  431. SendHDLCFrame();
  432. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  433. }
  434. else
  435. {
  436. SendHDLCFrame();
  437. m_nPhaseState = STATE_SEND_DCS;
  438. m_bGotConnect = false;
  439. }
  440. }
  441. break;
  442. case STATE_SEND_TRAINING:
  443. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  444. {
  445. m_bGotCFR = false;
  446. m_bGotCRP = false;
  447. //OutputDebugString( "Requesting CFRn" );
  448. EnableSoftFlowControl( false );
  449. RecvHDLCFrame();
  450. // change state
  451. m_nPhaseState = STATE_WAIT_FOR_CFR;
  452. m_bFinalHDLCFrame = false;
  453. char szEvMsg[FAXAPI_MODEMMSG_INFOLEN];
  454. wsprintf( szEvMsg, (char*)LoadString(GEN_SENT_TRAINING_AT_BAUD).c_str(), cls1Speeds[m_nClass1Speed].dwSpeed );
  455. SignalEventString( EVENT_INFO, szEvMsg );
  456. }
  457. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  458. {
  459. if( m_WriteQueue.size() == 0 )
  460. {
  461. // Send another end of data in case it got lost
  462. //OutputDebugString( "Sending extra <DLE><ETX>n" );
  463. unsigned char Frame[2];
  464. Frame[0] = DLE; // <dle>
  465. Frame[1] = ETX; // <etx>
  466. DoWrite( (char*)Frame, 2, false );
  467. }
  468. }
  469. else if( m_szLineBuff[0] == XOFF )
  470. {
  471. // Ignore
  472. }
  473. else
  474. {
  475. if( ++m_nLoopCtr >= 3 )
  476. {
  477. m_sLastError.assign( (char*)LoadString(GEN_ERROR_IN_TRAINING).c_str() );
  478. // SignalEvent( EVENT_ERROR );
  479. SendHDLCFrame();
  480. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  481. }
  482. else
  483. {
  484. SendHDLCFrame();
  485. m_nPhaseState = STATE_SEND_DCS;
  486. m_bGotConnect = false;
  487. }
  488. }
  489. break;
  490. case STATE_WAIT_FOR_CFR:
  491. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  492. {
  493. if( m_bGotDCN )
  494. {
  495. Terminate();
  496. DoHangup();
  497. }
  498. else if( m_bGotCRP )
  499. {
  500. SendHDLCFrame();
  501. m_nPhaseState = STATE_SEND_DCS;
  502. m_bGotConnect = false;
  503. }
  504. else if( m_bFinalHDLCFrame )
  505. {
  506. m_nLoopCtr = 0;
  507. EnableSoftFlowControl( true );
  508. if( m_bGotCFR )
  509. {
  510. // Send 75ms of silence
  511. SendFormattedCommand( "FTS", 8 );
  512. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_DATA;
  513. m_nPPRCtr = 0;
  514. if( m_FaxFile.ReadPage( m_bECM, m_nClass1Speed, m_wMinLineChars ) == false )
  515. {
  516. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  517. // SignalEvent( EVENT_ERROR );
  518. SendHDLCFrame();
  519. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  520. }
  521. }
  522. else
  523. {
  524. if( m_nClass1Speed == 0 )
  525. {
  526. m_sLastError.assign( (char*)LoadString(GEN_ERROR_IN_TRAINING).c_str() );
  527. SendHDLCFrame();
  528. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  529. }
  530. else
  531. {
  532. //  decrement speed and retrain
  533. DecrementSpeed();
  534. SendHDLCFrame();
  535. m_nPhaseState = STATE_SEND_DCS;
  536. m_bGotConnect = false;
  537. }
  538. }
  539. }
  540. else if( m_bRecvHDLCError )
  541. {
  542. if( ++m_nLoopCtr >= 3 )
  543. {
  544. m_sLastError.assign( (char*)LoadString(GEN_SENT_DCS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  545. // SignalEvent( EVENT_ERROR );
  546. SendHDLCFrame();
  547. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  548. }
  549. else
  550. {
  551. SendHDLCFrame();
  552. m_nPhaseState = STATE_SEND_DCS;
  553. m_bGotConnect = false;
  554. }
  555. }
  556. else
  557. {
  558. RecvHDLCFrame();
  559. }
  560. }
  561. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  562. {
  563. m_bGotConnect = true;
  564. // get ready for another HDLC frame
  565. InitHDLC();
  566. KillTimer( TIMER_HDLC_RECV );
  567. }
  568. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  569. {
  570. m_bRecvHDLCError = true;
  571. }
  572. else 
  573. {
  574. if( ++m_nLoopCtr >= 3 )
  575. {
  576. m_sLastError.assign( (char*)LoadString(GEN_SENT_DCS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  577. // SignalEvent( EVENT_ERROR );
  578. SendHDLCFrame();
  579. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  580. }
  581. else
  582. {
  583. SendHDLCFrame();
  584. m_nPhaseState = STATE_SEND_DCS;
  585. m_bGotConnect = false;
  586. }
  587. }
  588. break;
  589. case STATE_SEND_SILENCE_BEFORE_DATA:
  590. //if( stricmp( m_szLineBuff, "OK" ) != 0 )
  591. //{
  592. // OutputDebugString( "Error sending silencen" );
  593. //}
  594. SendShortTraining();
  595. // change state
  596. SetState( STATE_PHASE_C );
  597. break;
  598. // begin receiving states
  599. case STATE_SEND_CSI:
  600. if( strnicmp( m_szLineBuff, "CONNECT", 7 ) == 0 )
  601. {
  602. SendID(CSI);
  603. m_nPhaseState = STATE_SEND_DIS;
  604. }
  605. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  606. {
  607. // ignore
  608. }
  609. else
  610. {
  611. if( ++m_nLoopCtr >= 3 )
  612. {
  613. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_CSI).c_str() );
  614. // SignalEvent( EVENT_ERROR );
  615. SendHDLCFrame();
  616. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  617. }
  618. else
  619. {
  620. SendHDLCFrame();
  621. }
  622. }
  623. break;
  624. case STATE_SEND_DIS:
  625. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  626. {
  627. //OutputDebugString( "Sending DISn" );
  628. SendDIS();
  629. m_bFinalHDLCFrame = false;
  630. m_bGotDCS = false;
  631. m_bGotCRP = false;
  632. m_nPhaseState = STATE_DIS_SENT;
  633. EnableSoftFlowControl( false );
  634. }
  635. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  636. {
  637. // ignore
  638. }
  639. else 
  640. {
  641. if( ++m_nLoopCtr >= 3 )
  642. {
  643. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_DIS).c_str() );
  644. // SignalEvent( EVENT_ERROR );
  645. SendHDLCFrame();
  646. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  647. }
  648. else
  649. {
  650. SendHDLCFrame();
  651. m_nPhaseState = STATE_SEND_CSI;
  652. }
  653. }
  654. break;
  655. case STATE_DIS_SENT:
  656. //OutputDebugString( "Waiting for DCSn" );
  657. RecvHDLCFrame();
  658. m_nPhaseState = STATE_WAIT_FOR_DCS;
  659. m_bGotConnect = false;
  660. break;
  661. case STATE_WAIT_FOR_DCS:
  662. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  663. {
  664. if( m_bGotDCN )
  665. {
  666. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  667. Terminate();
  668. DoHangup();
  669. }
  670. else if( m_bFinalHDLCFrame )
  671. {
  672. if( m_bGotDCS )
  673. {
  674. m_dwTrainingStart = GetTickCount();
  675. SetTimer( TIMER_TRAINING, 4000 );
  676. m_nPhaseState = STATE_RECEIVE_TRAINING_DATA;
  677. RecvLongTraining();
  678. SignalEvent( EVENT_START_TRAINING );
  679. }
  680. else if( m_bGotCRP )
  681. {
  682. SendHDLCFrame();
  683. m_nPhaseState = STATE_SEND_CSI;
  684. }
  685. else
  686. {
  687. if( ++m_nLoopCtr >= 3 )
  688. {
  689. m_sLastError.assign( (char*)LoadString(GEN_SENT_DIS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  690. // SignalEvent( EVENT_ERROR );
  691. SendHDLCFrame();
  692. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  693. }
  694. else
  695. {
  696. m_nPhaseState = STATE_SEND_CSI;
  697. SendHDLCFrame();
  698. }
  699. }
  700. }
  701. else if( m_bRecvHDLCError )
  702. {
  703. if( ++m_nLoopCtr >= 3 )
  704. {
  705. m_sLastError.assign( (char*)LoadString(GEN_SENT_DIS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  706. // SignalEvent( EVENT_ERROR );
  707. SendHDLCFrame();
  708. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  709. }
  710. else
  711. {
  712. m_nPhaseState = STATE_SEND_CSI;
  713. SendHDLCFrame();
  714. }
  715. }
  716. else
  717. {
  718. // ask for another
  719. //OutputDebugString( "Waiting for DCSn" );
  720. RecvHDLCFrame();
  721. }
  722. }
  723. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  724. {
  725. // get ready for another HDLC frame
  726. m_bGotConnect = true;
  727. InitHDLC();
  728. KillTimer( TIMER_HDLC_RECV );
  729. }
  730. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  731. {
  732. m_bRecvHDLCError = true;
  733. }
  734. else 
  735. {
  736. if( ++m_nLoopCtr >= 3 )
  737. {
  738. m_sLastError.assign( (char*)LoadString(GEN_SENT_DIS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  739. // SignalEvent( EVENT_ERROR );
  740. SendHDLCFrame();
  741. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  742. }
  743. else
  744. {
  745. m_nPhaseState = STATE_SEND_CSI;
  746. SendHDLCFrame();
  747. }
  748. }
  749. break;
  750. case STATE_RECEIVE_TRAINING_DATA:
  751. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  752. {
  753. KillTimer( TIMER_TRAINING );
  754. InitHDLC();
  755. m_nPhaseState = STATE_RECEIVE_TRAINING;
  756. m_nCorrect = 0;
  757. }
  758. else 
  759. {
  760. // Wait 1.5 seconds so that the transmitter gets our FTT
  761. int nTimeLeft = (1500 - (GetTickCount() - m_dwTrainingStart));
  762. if( nTimeLeft > 0 )
  763. {
  764. // try the receive command again
  765. RecvLongTraining();
  766. }
  767. else
  768. {
  769. KillTimer( TIMER_TRAINING );
  770. SendHDLCFrame();
  771. m_nPhaseState = STATE_SEND_CFR;
  772. }
  773. }
  774. break;
  775. case STATE_RECEIVE_TRAINING:
  776. if( stricmp( m_szLineBuff, "OK" ) == 0 ||
  777. stricmp( m_szLineBuff, "NO CARRIER" ) == 0 )
  778. {
  779. // send CFR
  780. SendHDLCFrame();
  781. m_nPhaseState = STATE_SEND_CFR;
  782. }
  783. else 
  784. {
  785. // Wait 1.5 seconds so that the transmitter gets our FTT
  786. int nDelay = (1500 - (GetTickCount() - m_dwTrainingStart));
  787. if( nDelay > 0 )
  788. {
  789. Sleep( nDelay );
  790. }
  791. //OutputDebugString( "Error receiving training datan" );
  792. // send CFR
  793. SendHDLCFrame();
  794. m_nPhaseState = STATE_SEND_CFR;
  795. }
  796. break;
  797. case STATE_SEND_CFR:
  798. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  799. {
  800. // send CFR
  801. if( m_nCorrect > 70 )
  802. {
  803. SendCFR();
  804. m_nPhaseState = STATE_SEND_RECV_DATA;
  805. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_CFR).c_str() );
  806. }
  807. else
  808. {
  809. SendFTT();
  810. m_bFinalHDLCFrame = false;
  811. m_bRecvHDLCError = false;
  812. m_nPhaseState = STATE_SENT_FTT;
  813. EnableSoftFlowControl( false );
  814. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_FTT).c_str() );
  815. }
  816. }
  817. else 
  818. {
  819. if( ++m_nLoopCtr >= 3 )
  820. {
  821. m_sLastError.assign( (char*)LoadString(GEN_SENT_DIS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  822. // SignalEvent( EVENT_ERROR );
  823. SendHDLCFrame();
  824. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  825. }
  826. else
  827. {
  828. m_nPhaseState = STATE_SEND_CSI;
  829. SendHDLCFrame();
  830. }
  831. }
  832. break;
  833. case STATE_SEND_RECV_DATA:
  834. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  835. {
  836. //OutputDebugString( "Going to phase Cn" );
  837. RecvShortTraining();
  838. SetState( STATE_PHASE_C );
  839. m_FaxFile.WriteFileHeader();
  840. m_nPPRCtr = 0;
  841. }
  842. else 
  843. {
  844. if( ++m_nLoopCtr >= 3 )
  845. {
  846. m_sLastError.assign( (char*)LoadString(GEN_SENT_DIS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  847. // SignalEvent( EVENT_ERROR );
  848. SendHDLCFrame();
  849. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  850. }
  851. else
  852. {
  853. m_nPhaseState = STATE_SEND_CSI;
  854. SendHDLCFrame();
  855. }
  856. }
  857. break;
  858. case STATE_SENT_FTT:
  859. RecvHDLCFrame();
  860. m_nPhaseState = STATE_SENT_FTT_WAIT_FOR_DCS;
  861. break;
  862. case STATE_SENT_FTT_WAIT_FOR_DCS:
  863. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  864. {
  865. if( m_bGotDCN )
  866. {
  867. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  868. Terminate();
  869. DoHangup();
  870. }
  871. else if( m_bFinalHDLCFrame )
  872. {
  873. if( m_bGotDCS )
  874. {
  875. m_nLoopCtr = 0;
  876. SetTimer( TIMER_TRAINING, 4000 );
  877. m_nPhaseState = STATE_RECEIVE_TRAINING_DATA;
  878. RecvLongTraining();
  879. SignalEvent( EVENT_START_TRAINING );
  880. }
  881. else if( m_bGotCRP )
  882. {
  883. SendHDLCFrame();
  884. m_nPhaseState = STATE_SEND_CFR;
  885. }
  886. else
  887. {
  888. if( ++m_nLoopCtr >= 3 )
  889. {
  890. m_sLastError.assign( (char*)LoadString(GEN_SENT_FTT_3_TIMES_WITHOUT_RESPONSE).c_str() );
  891. // SignalEvent( EVENT_ERROR );
  892. SendHDLCFrame();
  893. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  894. }
  895. else
  896. {
  897. m_nPhaseState = STATE_SEND_CFR;
  898. SendHDLCFrame();
  899. }
  900. }
  901. }
  902. else if( m_bRecvHDLCError )
  903. {
  904. if( ++m_nLoopCtr >= 3 )
  905. {
  906. m_sLastError.assign( (char*)LoadString(GEN_SENT_FTT_3_TIMES_WITHOUT_RESPONSE).c_str() );
  907. // SignalEvent( EVENT_ERROR );
  908. SendHDLCFrame();
  909. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  910. }
  911. else
  912. {
  913. m_nPhaseState = STATE_SEND_CFR;
  914. SendHDLCFrame();
  915. }
  916. }
  917. else
  918. {
  919. // ask for another
  920. //OutputDebugString( "Waiting for DCSn" );
  921. RecvHDLCFrame();
  922. }
  923. }
  924. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  925. {
  926. // get ready for another HDLC frame
  927. m_bGotConnect = true;
  928. InitHDLC();
  929. KillTimer( TIMER_HDLC_RECV );
  930. }
  931. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  932. {
  933. m_bRecvHDLCError = true;
  934. }
  935. else 
  936. {
  937. if( ++m_nLoopCtr >= 3 )
  938. {
  939. m_sLastError.assign( (char*)LoadString(GEN_SENT_FTT_3_TIMES_WITHOUT_RESPONSE).c_str() );
  940. // SignalEvent( EVENT_ERROR );
  941. SendHDLCFrame();
  942. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  943. }
  944. else
  945. {
  946. m_nPhaseState = STATE_SEND_CFR;
  947. SendHDLCFrame();
  948. }
  949. }
  950. break;
  951. }
  952. }
  953. //////////////////////////////////////////////////////////////////////
  954. // Phase C - transmit/receive data
  955. //////////////////////////////////////////////////////////////////////
  956. void CClassOne::PhaseC(void)
  957. {
  958. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  959. {
  960. if( m_bReceiving )
  961. {
  962. InitHDLC();
  963. }
  964. else
  965. {
  966. m_nPageBytes = 0;
  967. DoWrite( m_FaxFile.GetPageData(), m_FaxFile.GetPageBytes(), false );
  968. SetMaxPageRetriesTimer();
  969. }
  970. SignalEvent( EVENT_START_PAGE );
  971. }
  972. else if( stricmp( m_szLineBuff, "+FCERROR" ) == 0 )
  973. {
  974. if( m_bReceiving )
  975. {
  976. RecvShortTraining();
  977. }
  978. else
  979. {
  980. SendShortTraining();
  981. }
  982. }
  983. else /*if( stricmp( m_szLineBuff, "OK" ) == 0 ||
  984.      stricmp( m_szLineBuff, "NO CARRIER" ) == 0) */
  985. {
  986. m_nLoopCtr = 0;
  987. if( m_bReceiving )
  988. {
  989. if( !m_bECM )
  990. {
  991. m_bLastPageGood = m_FaxFile.WriteIFD();
  992. }
  993. m_bGotEOP = false;
  994. m_bGotMPS = false;
  995. m_bGotEOM = false;
  996. m_bFinalHDLCFrame = false;
  997. RecvHDLCFrame();
  998. m_dwEOPWaitStart = GetTickCount();
  999. SetState( STATE_PHASE_D, STATE_WAIT_FOR_EOP );
  1000. }
  1001. else
  1002. {
  1003. // Send 75ms of silence
  1004. SendFormattedCommand( "FTS", 8 );
  1005. SetState( STATE_PHASE_D, STATE_SEND_SILENCE_BEFORE_PAGE_FINISHED );
  1006. }
  1007. }
  1008. }
  1009. //////////////////////////////////////////////////////////////////////
  1010. // Phase D - end of page
  1011. //////////////////////////////////////////////////////////////////////
  1012. void CClassOne::PhaseD(void)
  1013. {
  1014. switch( m_nPhaseState )
  1015. {
  1016. // begin sending states
  1017. case STATE_SEND_SILENCE_BEFORE_PAGE_FINISHED:
  1018. //if( stricmp( m_szLineBuff, "OK" ) != 0 )
  1019. //{
  1020. // OutputDebugString( "Error sending silencen" );
  1021. //}
  1022. SendHDLCFrame();
  1023. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1024. break;
  1025. case STATE_SEND_PAGE_FINISHED:
  1026. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1027. {
  1028. SendEOP();
  1029. m_nPhaseState = STATE_PAGE_FINISHED_SENT;
  1030. m_bGotPPR = false;
  1031. m_bFinalHDLCFrame = false;
  1032. m_bGotMCF = false;
  1033. m_bGotRNR = false;
  1034. m_bGotCRP = false;
  1035. m_bGotRTP = false;
  1036. m_bGotRTN = false;
  1037. m_dwRNRStart = 0;
  1038. }
  1039. else 
  1040. {
  1041. if( ++m_nLoopCtr >= 3 )
  1042. {
  1043. m_sLastError.assign( (char*)LoadString(GEN_SENT_PPS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  1044. // SignalEvent( EVENT_ERROR );
  1045. SendHDLCFrame();
  1046. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1047. }
  1048. else
  1049. {
  1050. //OutputDebugString( "Error sending EOPn" );
  1051. SendHDLCFrame();
  1052. }
  1053. }
  1054. break;
  1055. case STATE_PAGE_FINISHED_SENT:
  1056. m_nPhaseState = STATE_WAIT_FOR_MCF;
  1057. EnableSoftFlowControl( false );
  1058. RecvHDLCFrame();
  1059. break;
  1060. case STATE_WAIT_FOR_MCF:
  1061. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1062. {
  1063. if( m_bGotDCN )
  1064. {
  1065. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  1066. Terminate();
  1067. DoHangup();
  1068. }
  1069. else if( m_bFinalHDLCFrame && (m_bGotMCF || m_bGotPPR) )
  1070. {
  1071. EnableSoftFlowControl( true );
  1072. if( m_FaxFile.MorePages() == false && m_bGotPPR == false && m_FaxFile.GetPartialPage() == false )
  1073. {
  1074. m_FaxFile.IncrementPageCount();
  1075. m_bSuccessful = true;
  1076. SendHDLCFrame();
  1077. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1078. KillTimer( TIMER_MAXPAGERETRIES );
  1079. }
  1080. else
  1081. {
  1082. if( m_bGotPPR )
  1083. {
  1084. if( m_nPPRCtr > 3 )
  1085. {
  1086. m_nPPRCtr = 0;
  1087. m_nPhaseState = STATE_SEND_CTC;
  1088. DecrementSpeed();
  1089. SendHDLCFrame();
  1090. }
  1091. else
  1092. {
  1093. //OutputDebugString( "Sending bad framesn" );
  1094. m_FaxFile.ReadBadFrames( m_nClass1Speed );
  1095. // Send 75ms of silence
  1096. SendFormattedCommand( "FTS", 8 );
  1097. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_PHASE_C;
  1098. }
  1099. }
  1100. else if ( m_FaxFile.GetPartialPage() )
  1101. {
  1102. // Send 75ms of silence
  1103. SendFormattedCommand( "FTS", 8 );
  1104. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_PHASE_C;
  1105. //OutputDebugString( "Sending next blockn" );
  1106. m_nPPRCtr = 0;
  1107. if( m_FaxFile.ReadPage( m_bECM, m_nClass1Speed, m_wMinLineChars ) == false )
  1108. {
  1109. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1110. // SignalEvent( EVENT_ERROR );
  1111. SendHDLCFrame();
  1112. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1113. }
  1114. }
  1115. else
  1116. {
  1117. // Send 75ms of silence
  1118. SendFormattedCommand( "FTS", 8 );
  1119. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_PHASE_C;
  1120. m_nPPRCtr = 0;
  1121. if( m_FaxFile.ReadNextHeader() == false )
  1122. {
  1123. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1124. // SignalEvent( EVENT_ERROR );
  1125. SendHDLCFrame();
  1126. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1127. }
  1128. else
  1129. {
  1130. if( m_FaxFile.ReadPage( m_bECM, m_nClass1Speed, m_wMinLineChars ) == false )
  1131. {
  1132. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1133. // SignalEvent( EVENT_ERROR );
  1134. SendHDLCFrame();
  1135. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1136. }
  1137. }
  1138. }
  1139. }
  1140. }
  1141. else if( m_bFinalHDLCFrame && m_bGotCRP )
  1142. {
  1143. // repeat last command
  1144. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1145. SendHDLCFrame();
  1146. }
  1147. else if( m_bFinalHDLCFrame && m_bGotRNR )
  1148. {
  1149. if( (GetTickCount() - m_dwRNRStart) > 60000 )
  1150. {
  1151. m_sLastError.assign( (char*)LoadString(GEN_T5_TIMEOUT).c_str() );
  1152. // SignalEvent( EVENT_ERROR );
  1153. SendHDLCFrame();
  1154. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1155. }
  1156. else
  1157. {
  1158. // receiver not ready
  1159. m_nPhaseState = STATE_SEND_RR;
  1160. SendHDLCFrame();
  1161. }
  1162. }
  1163. else if( m_bFinalHDLCFrame && m_bGotRTP )
  1164. {
  1165. EnableSoftFlowControl( true );
  1166. if( m_FaxFile.MorePages() == false && m_FaxFile.GetPartialPage() == false )
  1167. {
  1168. m_FaxFile.IncrementPageCount();
  1169. m_bSuccessful = true;
  1170. SendHDLCFrame();
  1171. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1172. KillTimer( TIMER_MAXPAGERETRIES );
  1173. }
  1174. else
  1175. {
  1176. if ( m_FaxFile.GetPartialPage() )
  1177. {
  1178. //OutputDebugString( "Sending next blockn" );
  1179. m_nPPRCtr = 0;
  1180. if( m_FaxFile.ReadPage( m_bECM, m_nClass1Speed, m_wMinLineChars ) == false )
  1181. {
  1182. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1183. // SignalEvent( EVENT_ERROR );
  1184. SendHDLCFrame();
  1185. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1186. }
  1187. }
  1188. else
  1189. {
  1190. //OutputDebugString( "Sending next pagen" );
  1191. m_nPPRCtr = 0;
  1192. if( m_FaxFile.ReadNextHeader() == false )
  1193. {
  1194. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1195. // SignalEvent( EVENT_ERROR );
  1196. SendHDLCFrame();
  1197. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1198. }
  1199. else
  1200. {
  1201. if( m_FaxFile.ReadPage( m_bECM, m_nClass1Speed, m_wMinLineChars ) == false )
  1202. {
  1203. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  1204. // SignalEvent( EVENT_ERROR );
  1205. SendHDLCFrame();
  1206. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1207. }
  1208. }
  1209. }
  1210. SendFormattedCommand( "FTS", 8 );
  1211. SetState( STATE_PHASE_B, STATE_SEND_SILENCE_BEFORE_TRAINING );
  1212. //  decrement speed and retrain
  1213. //DecrementSpeed();
  1214. //SendHDLCFrame();
  1215. //SetState( STATE_PHASE_B, STATE_SEND_DCS );
  1216. //m_bGotConnect = false;
  1217. }
  1218. }
  1219. else if( m_bFinalHDLCFrame && m_bGotRTN )
  1220. {
  1221. SendFormattedCommand( "FTS", 8 );
  1222. SetState( STATE_PHASE_B, STATE_SEND_SILENCE_BEFORE_TRAINING );
  1223. //DecrementSpeed();
  1224. //SendHDLCFrame();
  1225. //SetState( STATE_PHASE_B, STATE_SEND_DCS );
  1226. //m_bGotConnect = false;
  1227. }
  1228. else if( m_bRecvHDLCError )
  1229. {
  1230. if( ++m_nLoopCtr >= 3 )
  1231. {
  1232. m_sLastError.assign( (char*)LoadString(GEN_SENT_PPS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  1233. // SignalEvent( EVENT_ERROR );
  1234. SendHDLCFrame();
  1235. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1236. }
  1237. else
  1238. {
  1239. SendHDLCFrame();
  1240. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1241. }
  1242. }
  1243. else
  1244. {
  1245. RecvHDLCFrame();
  1246. }
  1247. }
  1248. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1249. {
  1250. m_bGotConnect = true;
  1251. // get ready for another HDLC frame
  1252. InitHDLC();
  1253. KillTimer( TIMER_HDLC_RECV );
  1254. }
  1255. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  1256. {
  1257. m_bRecvHDLCError = true;
  1258. }
  1259. else
  1260. {
  1261. if( ++m_nLoopCtr >= 3 )
  1262. {
  1263. m_sLastError.assign( (char*)LoadString(GEN_SENT_PPS_3_TIMES_WITHOUT_RESPONSE).c_str() );
  1264. // SignalEvent( EVENT_ERROR );
  1265. SendHDLCFrame();
  1266. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1267. }
  1268. else
  1269. {
  1270. SendHDLCFrame();
  1271. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1272. }
  1273. }
  1274. break;
  1275. case STATE_SEND_RR:
  1276. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1277. {
  1278. SendSimpleHDLCFrame( RR );
  1279. m_nPhaseState = STATE_PAGE_FINISHED_SENT;
  1280. m_bGotPPR = false;
  1281. m_bFinalHDLCFrame = false;
  1282. m_bGotMCF = false;
  1283. m_bGotRNR = false;
  1284. m_bGotCRP = false;
  1285. }
  1286. else 
  1287. {
  1288. SendHDLCFrame();
  1289. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1290. }
  1291. break;
  1292. case STATE_SEND_CTC:
  1293. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1294. {
  1295. // This is not a simple frame
  1296. SendCTC();
  1297. m_nPhaseState = STATE_CTC_SENT;
  1298. m_bGotCRP = false;
  1299. m_bFinalHDLCFrame = false;
  1300. }
  1301. else 
  1302. {
  1303. SendHDLCFrame();
  1304. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1305. }
  1306. break;
  1307. case STATE_CTC_SENT:
  1308. m_nPhaseState = STATE_WAIT_FOR_CTR;
  1309. RecvHDLCFrame();
  1310. break;
  1311. case STATE_WAIT_FOR_CTR:
  1312. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1313. {
  1314. if( m_bGotDCN )
  1315. {
  1316. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  1317. Terminate();
  1318. DoHangup();
  1319. }
  1320. else if( m_bGotCRP )
  1321. {
  1322. m_nPhaseState = STATE_SEND_CTC;
  1323. SendHDLCFrame();
  1324. }
  1325. else if( m_bFinalHDLCFrame )
  1326. {
  1327. //OutputDebugString( "Sending bad framesn" );
  1328. m_FaxFile.ReadBadFrames( m_nClass1Speed );
  1329. // Send 75ms of silence
  1330. SendFormattedCommand( "FTS", 8 );
  1331. m_nPhaseState = STATE_SEND_SILENCE_BEFORE_PHASE_C;
  1332. }
  1333. else if( m_bRecvHDLCError )
  1334. {
  1335. SendHDLCFrame();
  1336. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1337. }
  1338. else
  1339. {
  1340. // ask for 
  1341. //OutputDebugString( "Waiting for CTRn" );
  1342. EnableSoftFlowControl( false );
  1343. RecvHDLCFrame();
  1344. }
  1345. }
  1346. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1347. {
  1348. m_bGotConnect = true;
  1349. // get ready for another HDLC frame
  1350. InitHDLC();
  1351. KillTimer( TIMER_HDLC_RECV );
  1352. }
  1353. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  1354. {
  1355. m_bRecvHDLCError = true;
  1356. }
  1357. else 
  1358. {
  1359. SendHDLCFrame();
  1360. m_nPhaseState = STATE_SEND_PAGE_FINISHED;
  1361. }
  1362. break;
  1363. case STATE_SEND_SILENCE_BEFORE_PHASE_C:
  1364. //if( stricmp( m_szLineBuff, "OK" ) != 0 )
  1365. //{
  1366. // OutputDebugString( "Error sending silencen" );
  1367. //}
  1368. SendShortTraining();
  1369. // change state
  1370. SetState( STATE_PHASE_C );
  1371. //OutputDebugString( "Going to Phase Cn" );
  1372. break;
  1373. // begin receiving states
  1374. case STATE_WAIT_FOR_EOP:
  1375. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1376. {
  1377. if( m_bGotDCN )
  1378. {
  1379. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  1380. Terminate();
  1381. DoHangup();
  1382. }
  1383. else if( m_bFinalHDLCFrame )
  1384. {
  1385. m_nLoopCtr = 0;
  1386. SendHDLCFrame();
  1387. m_nPhaseState = STATE_SEND_MCF;
  1388. m_bSendPPR = false;
  1389. if( m_bECM )
  1390. {
  1391. if( m_FaxFile.IsECMBlockGood( m_ECMFrameCount ) )
  1392. {
  1393. m_nPPRCtr = 0;
  1394. m_FaxFile.NextECMBlock();
  1395. if( m_bGotEOP || m_bGotEOM || m_bGotMPS )
  1396. {
  1397. m_FaxFile.WriteIFD();
  1398. }
  1399. // Can't send RTN in ECM mode
  1400. m_bLastPageGood = true;
  1401. }
  1402. else
  1403. {
  1404. m_FaxFile.RedoECMBlock();
  1405. m_bSendPPR = true;
  1406. m_nPPRCtr++;
  1407. }
  1408. }
  1409. }
  1410. else
  1411. {
  1412. if( GetTickCount() - m_dwEOPWaitStart > 30000 )
  1413. {
  1414. m_sLastError.assign( (char*)LoadString(GEN_PPS_NOT_RECEIVED).c_str() );
  1415. // SignalEvent( EVENT_ERROR );
  1416. SendHDLCFrame();
  1417. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1418. }
  1419. else
  1420. {
  1421. // ask for 
  1422. //OutputDebugString( "Waiting for EOPn" );
  1423. //EnableSoftFlowControl( false );
  1424. RecvHDLCFrame();
  1425. }
  1426. }
  1427. }
  1428. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1429. {
  1430. m_bGotConnect = true;
  1431. // get ready for another HDLC frame
  1432. InitHDLC();
  1433. KillTimer( TIMER_HDLC_RECV );
  1434. }
  1435. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  1436. {
  1437. m_bRecvHDLCError = true;
  1438. }
  1439. else 
  1440. {
  1441. if( GetTickCount() - m_dwEOPWaitStart > 30000 )
  1442. {
  1443. m_sLastError.assign( (char*)LoadString(GEN_PPS_NOT_RECEIVED).c_str() );
  1444. // SignalEvent( EVENT_ERROR );
  1445. SendHDLCFrame();
  1446. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1447. }
  1448. else
  1449. {
  1450. //OutputDebugString( "Waiting for post-page signaln" );
  1451. RecvHDLCFrame();
  1452. }
  1453. }
  1454. break;
  1455. case STATE_SEND_MCF:
  1456. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1457. {
  1458. SendMCF();
  1459. }
  1460. else 
  1461. {
  1462. if( ++m_nLoopCtr >= 3 )
  1463. {
  1464. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_MCF).c_str() );
  1465. // SignalEvent( EVENT_ERROR );
  1466. SendHDLCFrame();
  1467. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1468. }
  1469. else
  1470. {
  1471. //OutputDebugString( "Error sending MCFn" );
  1472. SendHDLCFrame();
  1473. }
  1474. }
  1475. break;
  1476. case STATE_MCF_SENT:
  1477. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1478. {
  1479. if( m_bGotEOP && !m_bSendPPR )
  1480. {
  1481. m_bSuccessful = true;
  1482. //OutputDebugString( "Going to phase En" );
  1483. m_bFinalHDLCFrame = false;
  1484. RecvHDLCFrame();
  1485. SetState( STATE_PHASE_E, STATE_RECEIVE_DCN );
  1486. //SignalEvent( EVENT_END_PAGE );
  1487. }
  1488. else if( m_bGotEOM && !m_bSendPPR )
  1489. {
  1490. SendHDLCFrame();
  1491. SetState( STATE_PHASE_B, STATE_SEND_CSI );
  1492. m_nLoopCtr = 0;
  1493. //SignalEvent( EVENT_END_PAGE );
  1494. }
  1495. else if( m_bSendPPR && m_nPPRCtr > 3 )
  1496. {
  1497. //OutputDebugString( "Waiting for CTCn" );
  1498. m_bFinalHDLCFrame = false;
  1499. RecvHDLCFrame();
  1500. m_nPhaseState = STATE_WAIT_FOR_CTC;
  1501. m_bGotConnect = false;
  1502. m_bGotCTC = false;
  1503. m_bGotEOR = false;
  1504. m_bGotCRP = false;
  1505. }
  1506. else  /* default is to go back to phase C  */
  1507. {
  1508. //OutputDebugString( "Going back to phase Cn" );
  1509. RecvShortTraining();
  1510. SetState( STATE_PHASE_C );
  1511. }
  1512. }
  1513. else 
  1514. {
  1515. if( ++m_nLoopCtr >= 3 )
  1516. {
  1517. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_MCF).c_str() );
  1518. // SignalEvent( EVENT_ERROR );
  1519. SendHDLCFrame();
  1520. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1521. }
  1522. else
  1523. {
  1524. //OutputDebugString( "Error sending MCFn" );
  1525. SendHDLCFrame();
  1526. m_nPhaseState = STATE_SEND_MCF;
  1527. }
  1528. }
  1529. break;
  1530. case STATE_WAIT_FOR_CTC:
  1531. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1532. {
  1533. if( m_bGotDCN )
  1534. {
  1535. m_sLastError.assign( (char*)LoadString(GEN_UNEXPECTED_DCN_RECEIVED).c_str() );
  1536. Terminate();
  1537. DoHangup();
  1538. }
  1539. else if( m_bGotCRP )
  1540. {
  1541. SendHDLCFrame();
  1542. m_nPhaseState = STATE_SEND_MCF;
  1543. }
  1544. else if( m_bFinalHDLCFrame && (m_bGotCTC || m_bGotEOR) )
  1545. {
  1546. m_nPPRCtr = 0;
  1547. SendHDLCFrame();
  1548. m_nPhaseState = STATE_SEND_CTR;
  1549. m_nLoopCtr = 0;
  1550. m_bGotConnect = false;
  1551. }
  1552. else
  1553. {
  1554. // ask for 
  1555. //OutputDebugString( "Waiting for CTCn" );
  1556. //EnableSoftFlowControl( false );
  1557. RecvHDLCFrame();
  1558. }
  1559. }
  1560. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1561. {
  1562. m_bGotConnect = true;
  1563. // get ready for another HDLC frame
  1564. InitHDLC();
  1565. KillTimer( TIMER_HDLC_RECV );
  1566. }
  1567. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  1568. {
  1569. m_bRecvHDLCError = true;
  1570. }
  1571. else 
  1572. {
  1573. //OutputDebugString( "Bad HDLC framen" );
  1574. RecvHDLCFrame();
  1575. }
  1576. break;
  1577. case STATE_SEND_CTR:
  1578. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1579. {
  1580. if( m_bGotCTC )
  1581. {
  1582. //OutputDebugString( "Going back to phase Cn" );
  1583. RecvShortTraining();
  1584. SetState( STATE_PHASE_C );
  1585. }
  1586. else // The only alternative is EOR was received
  1587. {
  1588. m_nPPRCtr = 0;
  1589. m_FaxFile.NextECMBlock();
  1590. if( m_bGotEOP || m_bGotEOM || m_bGotMPS )
  1591. {
  1592. m_FaxFile.WriteIFD();
  1593. }
  1594. // Can't send RTN in ECM mode
  1595. m_bLastPageGood = true;
  1596. if( m_bGotEOP )
  1597. {
  1598. m_bSuccessful = true;
  1599. //OutputDebugString( "Going to phase En" );
  1600. m_bFinalHDLCFrame = false;
  1601. RecvHDLCFrame();
  1602. SetState( STATE_PHASE_E, STATE_RECEIVE_DCN );
  1603. }
  1604. else if( m_bGotEOM )
  1605. {
  1606. SendHDLCFrame();
  1607. SetState( STATE_PHASE_B, STATE_SEND_CSI );
  1608. m_nLoopCtr = 0;
  1609. }
  1610. else  /* default is to go back to phase C  */
  1611. {
  1612. //OutputDebugString( "Going back to phase Cn" );
  1613. RecvShortTraining();
  1614. SetState( STATE_PHASE_C );
  1615. }
  1616. }
  1617. }
  1618. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1619. {
  1620. m_bGotConnect = true;
  1621. SendCTR();
  1622. }
  1623. else 
  1624. {
  1625. if( ++m_nLoopCtr >= 3 )
  1626. {
  1627. m_sLastError.assign( (char*)LoadString(GEN_ERROR_SENDING_CTR).c_str() );
  1628. // SignalEvent( EVENT_ERROR );
  1629. SendHDLCFrame();
  1630. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  1631. }
  1632. else
  1633. {
  1634. //OutputDebugString( "Error sending CTRn" );
  1635. SendHDLCFrame();
  1636. }
  1637. }
  1638. break;
  1639. }
  1640. }
  1641. //////////////////////////////////////////////////////////////////////
  1642. // Phase E - Disconnect
  1643. //////////////////////////////////////////////////////////////////////
  1644. void CClassOne::PhaseE(void)
  1645. {
  1646. switch( m_nPhaseState )
  1647. {
  1648. case STATE_WAIT_FOR_OK:
  1649. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1650. {
  1651. SendHDLCFrame();
  1652. m_nPhaseState = STATE_SEND_DCN;
  1653. }
  1654. break;
  1655. case STATE_SEND_DCN:
  1656. if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1657. {
  1658. SendDCN();
  1659. m_nPhaseState = STATE_DCN_SENT;
  1660. }
  1661. else /* if( stricmp( m_szLineBuff, "OK" ) == 0 ) */
  1662. {
  1663. Terminate();
  1664. DoHangup();
  1665. }
  1666. break;
  1667. case STATE_DCN_SENT:
  1668. Terminate();
  1669. DoHangup();
  1670. break;
  1671. case STATE_RECEIVE_DCN:
  1672. if( stricmp( m_szLineBuff, "OK" ) == 0 )
  1673. {
  1674. if( m_bGotDCN )
  1675. {
  1676. Terminate();
  1677. DoHangup();
  1678. }
  1679. else
  1680. {
  1681. // ask for 
  1682. //OutputDebugString( "Waiting for DCNn" );
  1683. //EnableSoftFlowControl( false );
  1684. //RecvHDLCFrame();
  1685. Terminate();
  1686. DoHangup();
  1687. }
  1688. }
  1689. else if( stricmp( m_szLineBuff, "CONNECT" ) == 0 )
  1690. {
  1691. m_bGotConnect = true;
  1692. // get ready for another HDLC frame
  1693. InitHDLC();
  1694. KillTimer( TIMER_HDLC_RECV );
  1695. }
  1696. else if ( m_szLineBuff[0] == DLE && m_szLineBuff[1] == ETX )
  1697. {
  1698. m_bRecvHDLCError = true;
  1699. }
  1700. else 
  1701. {
  1702. DoHangup();
  1703. Terminate();
  1704. }
  1705. break;
  1706. }
  1707. }
  1708. //////////////////////////////////////////////////////////////////////
  1709. // on DIS frame
  1710. //////////////////////////////////////////////////////////////////////
  1711. void CClassOne::OnDIS(void)
  1712. {
  1713. BOOL bSupported[MAX_CLS1SPEEDS];
  1714. int i;
  1715. m_bGotDIS = true;
  1716. for( i = 0; i < MAX_CLS1SPEEDS; i++ )
  1717. {
  1718. bSupported[i] = 0;
  1719. }
  1720. //OutputDebugString( "OnDISn" );
  1721. BYTE c1 = CFaxFile::s_FlipTable[ m_szHDLCBuff[4] ];
  1722. BYTE c2 = CFaxFile::s_FlipTable[ m_szHDLCBuff[5] ];
  1723. WORD wBitRate = (c1 & 0x3c) >> 2;
  1724. WORD wScanTime = (c2 & 0x0E) >> 1; 
  1725. m_DISParams.p.VertRes = (c1 & 0x02) >> 1;
  1726. WORD wWidth = (c2 & 0xc0) >> 6;
  1727. WORD wLength = (c2 & 0x30) >> 4;
  1728. m_b2D = (c1 & 0x01);
  1729. switch( wBitRate )
  1730. {
  1731. case DIS_V27_FALLBACK:
  1732. //OutputDebugString( "V.27 ter fallback supportedn" );
  1733. bSupported[0] = 1;
  1734. m_DISParams.p.BitRate = 0;
  1735. break;
  1736. case DIS_V27:
  1737. //OutputDebugString( "V.27 ter supportedn" );
  1738. bSupported[0] = 1;
  1739. bSupported[1] = 1;
  1740. m_DISParams.p.BitRate = 1;
  1741. break;
  1742. case DIS_V29:
  1743. //OutputDebugString( "V.29 supportedn" );
  1744. bSupported[2] = 1;
  1745. bSupported[3] = 1;
  1746. m_DISParams.p.BitRate = 3;
  1747. break;
  1748. case DIS_V27_V29:
  1749. //OutputDebugString( "V.27 ter and V.29 supportedn" );
  1750. for( i = 0; i < 4; i++ )
  1751. bSupported[i] = 1;
  1752. m_DISParams.p.BitRate = 3;
  1753. break;
  1754. case DIS_V27_V29_V33:
  1755. //OutputDebugString( "V.27 ter, V.29, and V.33 supportedn" );
  1756. for( i = 0; i < 6; i++ )
  1757. bSupported[i] = 1;
  1758. m_DISParams.p.BitRate = 5;
  1759. break;
  1760. case DIS_V27_V29_V33_V17:
  1761. //OutputDebugString( "V.27 ter, V.29, V.33, and V.17 supportedn" );
  1762. for( i = 0; i < 10; i++ )
  1763. bSupported[i] = 1;
  1764. m_DISParams.p.BitRate = 5;
  1765. break;
  1766. }
  1767. //char jbuf[256];
  1768. for( i = 9; i >= 0; i-- )
  1769. if( bSupported[i] && m_bSendSupported[i] && m_nSendBaud >= cls1Speeds[i].ndx )
  1770. break;
  1771. if( i >= 0 ) {
  1772. m_nClass1Speed = i;
  1773. }
  1774. else
  1775. {
  1776. m_nClass1Speed = 0;
  1777. }
  1778. if (!m_DISParams.p.VertRes)
  1779. {
  1780. //OutputDebugString( "Normal resolution supportedn" );
  1781. m_wScanTimeMs = Cls1ScanTimes_normal[wScanTime];
  1782. }
  1783. else
  1784. {
  1785. //OutputDebugString( "Fine resolution supportedn" );
  1786. m_wScanTimeMs = Cls1ScanTimes_fine[wScanTime];
  1787. }
  1788. switch( m_wScanTimeMs )
  1789. {
  1790. case 0:
  1791. m_DISParams.p.ScanTime = 0;
  1792. break;
  1793. case 5:
  1794. m_DISParams.p.ScanTime = 1;
  1795. break;
  1796. case 10:
  1797. m_DISParams.p.ScanTime = 3;
  1798. break;
  1799. case 20:
  1800. m_DISParams.p.ScanTime = 5;
  1801. break;
  1802. case 40:
  1803. m_DISParams.p.ScanTime = 7;
  1804. break;
  1805. }
  1806. //wsprintf( jbuf, "Minimum Scan Time: %dmsn", m_wScanTimeMs );
  1807. //OutputDebugString( jbuf );
  1808. m_DISParams.p.DataFormat = FAXAPI_ENC_CCITT_1D;
  1809. if( m_b2D )
  1810. {
  1811. //OutputDebugString( "Receiver supports 2D encodingn" );
  1812. m_DISParams.p.DataFormat = FAXAPI_ENC_CCITT_2D;
  1813. }
  1814. m_DISParams.p.PageLength = 0;
  1815. switch( wLength )
  1816. {
  1817. case 0:
  1818. //OutputDebugString( "Receiver supports A4 lengthn" );
  1819. break;
  1820. case 1:
  1821. //OutputDebugString( "Receiver supports unlimited lengthn" );
  1822. m_DISParams.p.PageLength = 2;
  1823. break;
  1824. case 2:
  1825. //OutputDebugString( "Receiver supports A4 and B4 lengthn" );
  1826. break;
  1827. case 3:
  1828. //OutputDebugString( "Invalid lengthn" );
  1829. break;
  1830. }
  1831. switch( wWidth )
  1832. {
  1833. case 0:
  1834. //OutputDebugString( "Receiver supports 1728 widthn" );
  1835. m_DISParams.p.PageWidth = 0;
  1836. break;
  1837. case 2:
  1838. //OutputDebugString( "Receiver supports 1728 or 2048 widthn" );
  1839. m_DISParams.p.PageWidth = 1;
  1840. break;
  1841. default:
  1842. //OutputDebugString( "Receiver supports 1728, 2048, or 2432 widthn" );
  1843. m_DISParams.p.PageWidth = 2;
  1844. break;
  1845. }
  1846. m_DISParams.p.ECM = 0;
  1847. m_bECM = false;
  1848. m_bT6Encoding = false;
  1849. if( (c2 & 0x01)  && // extension bit
  1850.         m_nHDLCBuffPtr > 6 )
  1851. {
  1852. BYTE c3 = CFaxFile::s_FlipTable[ m_szHDLCBuff[6] ];
  1853. //if( c3 & 0x80 )
  1854. //{
  1855. // OutputDebugString( "Receiver supports 2400bps handshakingn" );
  1856. //}
  1857. //if( c3 & 0x40 )
  1858. //{
  1859. // OutputDebugString( "Receiver supports uncompressed moden" );
  1860. //}
  1861. if( c3 & 0x20 )
  1862. {
  1863. m_bECM = true;
  1864. if( c3 & 0x10 )
  1865. {
  1866. m_FaxFile.SetECMFrameSize( 64 );
  1867. //OutputDebugString( "Receiver supports ECM w/ 64 octet framesn" );
  1868. m_DISParams.p.ECM = 1;
  1869. }
  1870. else
  1871. {
  1872. m_FaxFile.SetECMFrameSize( 256 );
  1873. //OutputDebugString( "Receiver supports ECM w/ 256 octet framesn" );
  1874. m_DISParams.p.ECM = 2;
  1875. }
  1876. }
  1877. //if( c3 & 0x08 )
  1878. //{
  1879. // OutputDebugString( "Receiver supports error limiting moden" );
  1880. //}
  1881. //if( c3 & 0x04 )
  1882. //{
  1883. // OutputDebugString( "Receiver supports G4 on PSTNn" );
  1884. //}
  1885. if( c3 & 0x02 )
  1886. {
  1887. //OutputDebugString( "Receiver supports T.6 encodingn" );
  1888. m_bT6Encoding = true;
  1889. m_DISParams.p.DataFormat = FAXAPI_ENC_CCITT_T6;
  1890. }
  1891. if( (c3 & 0x01)  && // extension bit
  1892. m_nHDLCBuffPtr > 7 )
  1893. {
  1894. BYTE c4 = CFaxFile::s_FlipTable[ m_szHDLCBuff[7] ];
  1895. // width expansion byte
  1896. if( (c4 & 0x01)  && // extension bit
  1897. m_nHDLCBuffPtr > 8 )
  1898. {
  1899. BYTE c5 = CFaxFile::s_FlipTable[ m_szHDLCBuff[8] ];
  1900. // more recent extensions
  1901. }
  1902. }
  1903. }
  1904. switch( m_FaxFile.GetSendEncoding() )
  1905. {
  1906. case (FAXAPI_ENC_CCITT_2D):
  1907. if( m_b2D )
  1908. {
  1909. m_FaxFile.SelectEncoding( m_FaxFile.GetSendEncoding() );
  1910. }
  1911. else
  1912. {
  1913. m_FaxFile.SelectEncoding( FAXAPI_ENC_CCITT_1D );
  1914. }
  1915. break;
  1916. case (FAXAPI_ENC_CCITT_T6):
  1917. if( m_b2D && m_bT6Encoding && m_bECM && m_bECMSupported )
  1918. {
  1919. m_FaxFile.SelectEncoding( m_FaxFile.GetSendEncoding() );
  1920. }
  1921. else if( m_b2D )
  1922. {
  1923. m_FaxFile.SelectEncoding( FAXAPI_ENC_CCITT_2D );
  1924. }
  1925. else
  1926. {
  1927. m_FaxFile.SelectEncoding( FAXAPI_ENC_CCITT_1D );
  1928. }
  1929. break;
  1930. default:
  1931. m_FaxFile.SelectEncoding( m_FaxFile.GetSendEncoding() );
  1932. break;
  1933. }
  1934. SignalEvent( EVENT_RECV_DIS );
  1935. }
  1936. //////////////////////////////////////////////////////////////////////
  1937. // on CSI frame
  1938. //////////////////////////////////////////////////////////////////////
  1939. void CClassOne::OnCSI(void)
  1940. {
  1941. char szCSI[21];
  1942. for( int i = 0; i < 20; i++ )
  1943. {
  1944. if( (22 - i) < m_nHDLCBuffPtr )
  1945. {
  1946. szCSI[i] = m_szHDLCBuff[ 22 - i ];
  1947. }
  1948. else
  1949. {
  1950. szCSI[i] = '';
  1951. }
  1952. }
  1953. szCSI[20] = '';
  1954. m_sRemoteCSID.assign( szCSI );
  1955. SignalEvent( EVENT_GOT_REMOTEID );
  1956. }
  1957. //////////////////////////////////////////////////////////////////////
  1958. // on CFR frame
  1959. //////////////////////////////////////////////////////////////////////
  1960. void CClassOne::OnCFR(void)
  1961. {
  1962. m_bGotCFR = true;
  1963. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_CFR).c_str() );
  1964. }
  1965. //////////////////////////////////////////////////////////////////////
  1966. // on MCF frame
  1967. //////////////////////////////////////////////////////////////////////
  1968. void CClassOne::OnMCF(void)
  1969. {
  1970. m_bGotMCF = true;
  1971. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_MCF).c_str() );
  1972. }
  1973. //////////////////////////////////////////////////////////////////////
  1974. // on RTP frame
  1975. //////////////////////////////////////////////////////////////////////
  1976. void CClassOne::OnRTP(void)
  1977. {
  1978. m_bGotRTP = true;
  1979. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_RTP).c_str() );
  1980. }
  1981. //////////////////////////////////////////////////////////////////////
  1982. // on RTN frame
  1983. //////////////////////////////////////////////////////////////////////
  1984. void CClassOne::OnRTN(void)
  1985. {
  1986. m_bGotRTN = true;
  1987. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_RTN).c_str() );
  1988. }
  1989. //////////////////////////////////////////////////////////////////////
  1990. // on Failure To Train frame
  1991. //////////////////////////////////////////////////////////////////////
  1992. void CClassOne::OnFTT(void)
  1993. {
  1994. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_FTT).c_str() );
  1995. m_bGotCFR = false;
  1996. }
  1997. //////////////////////////////////////////////////////////////////////
  1998. // on DCS
  1999. //////////////////////////////////////////////////////////////////////
  2000. void CClassOne::OnDCS(void)
  2001. {
  2002. int i;
  2003. m_bGotDCS = true;
  2004. // OutputDebugString( "OnDCSn" );
  2005. BYTE c1 = CFaxFile::s_FlipTable[ m_szHDLCBuff[4] ];
  2006. BYTE c2 = CFaxFile::s_FlipTable[ m_szHDLCBuff[5] ];
  2007. WORD wBitRate = (c1 & 0x3c) >> 2;
  2008. WORD wScanTime = (c2 & 0x0E) >> 1; 
  2009. WORD wWidth = (c2 & 0xc0) >> 6;
  2010. WORD wLength = (c2 & 0x30) >> 4;
  2011. m_DCSParams.p.VertRes = (c1 & 0x02) >> 1;
  2012. m_b2D = (c1 & 0x01);
  2013. m_nClass1Speed = 0;
  2014. m_bT6Encoding = false;
  2015. m_bECM = false;
  2016. for( i = 0; i < MAX_CLS1SPEEDS; i++ )
  2017. {
  2018. if( cls1Speeds[i].cDCSBits == wBitRate )
  2019. {
  2020. m_nClass1Speed = i;
  2021. break;
  2022. }
  2023. }
  2024. //char jbuf[256];
  2025. //wsprintf( jbuf, "Baud rate bits: %dn", wBitRate );
  2026. //OutputDebugString( jbuf );
  2027. //wsprintf( jbuf, "Selected baud rate: %dn", cls1Speeds[m_nClass1Speed].dwSpeed );
  2028. //OutputDebugString( jbuf );
  2029. m_DCSParams.p.BitRate = cls1Speeds[m_nClass1Speed].ndx;
  2030. if( m_DCSParams.p.VertRes )
  2031. {
  2032. //OutputDebugString( "Receiving fine qualityn" );
  2033. }
  2034. m_DCSParams.p.DataFormat = FAXAPI_ENC_CCITT_1D;
  2035. if( m_b2D )
  2036. {
  2037. m_DCSParams.p.DataFormat = FAXAPI_ENC_CCITT_2D;
  2038. //OutputDebugString( "Receiving 2Dn" );
  2039. }
  2040. switch( wLength )
  2041. {
  2042. case 0:
  2043. m_DCSParams.p.PageLength = 0;
  2044. break;
  2045. case 2:
  2046. m_DCSParams.p.PageLength = 1;
  2047. break;
  2048. default:
  2049. m_DCSParams.p.PageLength = 2;
  2050. break;
  2051. }
  2052. switch( wWidth )
  2053. {
  2054. case 0:
  2055. m_FaxFile.SetImageWidth( 1728 );
  2056. m_DCSParams.p.PageWidth = 0;
  2057. break;
  2058. case 1:
  2059. case 3:
  2060. m_FaxFile.SetImageWidth( 2432 );
  2061. m_DCSParams.p.PageWidth = 2;
  2062. break;
  2063. case 2:
  2064. m_FaxFile.SetImageWidth( 2048 );
  2065. m_DCSParams.p.PageWidth = 1;
  2066. break;
  2067. }
  2068. if (!m_DISParams.p.VertRes)
  2069. {
  2070. //OutputDebugString( "Normal resolution supportedn" );
  2071. m_wScanTimeMs = Cls1ScanTimes_normal[wScanTime];
  2072. }
  2073. else
  2074. {
  2075. //OutputDebugString( "Fine resolution supportedn" );
  2076. m_wScanTimeMs = Cls1ScanTimes_fine[wScanTime];
  2077. }
  2078. switch( m_wScanTimeMs )
  2079. {
  2080. case 0:
  2081. m_DCSParams.p.ScanTime = 0;
  2082. break;
  2083. case 5:
  2084. m_DCSParams.p.ScanTime = 1;
  2085. break;
  2086. case 10:
  2087. m_DCSParams.p.ScanTime = 3;
  2088. break;
  2089. case 20:
  2090. m_DCSParams.p.ScanTime = 5;
  2091. break;
  2092. case 40:
  2093. m_DCSParams.p.ScanTime = 7;
  2094. break;
  2095. }
  2096. m_DCSParams.p.ECM = 0;
  2097. if( (c2 & 0x01)  && // extension bit
  2098.         m_nHDLCBuffPtr > 6 )
  2099. {
  2100. BYTE c3 = CFaxFile::s_FlipTable[ m_szHDLCBuff[6] ];
  2101. //if( c3 & 0x80 )
  2102. //{
  2103. //OutputDebugString( "Receiving with 2400bps handshakingn" );
  2104. //}
  2105. //if( c3 & 0x40 )
  2106. //{
  2107. // OutputDebugString( "Receiving uncompressed moden" );
  2108. //}
  2109. if( c3 & 0x20 )
  2110. {
  2111. m_bECM = true;
  2112. if( c3 & 0x10 )
  2113. {
  2114. m_FaxFile.SetECMFrameSize( 64 );
  2115. //OutputDebugString( "Receiving ECM w/ 64 octet framesn" );
  2116. m_DCSParams.p.ECM = 1;
  2117. }
  2118. else
  2119. {
  2120. m_FaxFile.SetECMFrameSize( 256 );
  2121. //OutputDebugString( "Receiving ECM w/ 256 octet framesn" );
  2122. m_DCSParams.p.ECM = 2;
  2123. }
  2124. }
  2125. //if( c3 & 0x08 )
  2126. //{
  2127. // OutputDebugString( "Receiving with error limiting moden" );
  2128. //}
  2129. //if( c3 & 0x04 )
  2130. //{
  2131. // OutputDebugString( "Receiving G4 on PSTNn" );
  2132. //}
  2133. if( c3 & 0x02 )
  2134. {
  2135. //OutputDebugString( "Receiving T.6 encodingn" );
  2136. m_bT6Encoding = true;
  2137. m_DCSParams.p.DataFormat = FAXAPI_ENC_CCITT_T6;
  2138. }
  2139. if( (c3 & 0x01)  && // extension bit
  2140. m_nHDLCBuffPtr > 7 )
  2141. {
  2142. BYTE c4 = CFaxFile::s_FlipTable[ m_szHDLCBuff[7] ];
  2143. // width expansion byte
  2144. if( (c4 & 0x01)  && // extension bit
  2145. m_nHDLCBuffPtr > 8 )
  2146. {
  2147. BYTE c5 = CFaxFile::s_FlipTable[ m_szHDLCBuff[8] ];
  2148. // more recent extensions
  2149. }
  2150. }
  2151. }
  2152. m_FaxFile.SetImageRes( m_DCSParams.p.VertRes != 0 );
  2153. m_FaxFile.SetImageCompression( m_bT6Encoding ? 4 : 3 ); // Set to 4 for Group IV (T.6) encoding
  2154. m_FaxFile.SetT4Options( m_b2D ? 0x01 : 0x00 );
  2155. m_FaxFile.SetImageLength( 0 );
  2156. SignalEvent( EVENT_RECV_DCS );
  2157. }
  2158. //////////////////////////////////////////////////////////////////////
  2159. // on End of Page
  2160. //////////////////////////////////////////////////////////////////////
  2161. void CClassOne::OnEOP(void)
  2162. {
  2163. m_bGotEOP = true;
  2164. }
  2165. //////////////////////////////////////////////////////////////////////
  2166. // on End of Message
  2167. //////////////////////////////////////////////////////////////////////
  2168. void CClassOne::OnEOM(void)
  2169. {
  2170. m_bGotEOM = true;
  2171. }
  2172. //////////////////////////////////////////////////////////////////////
  2173. // on MPS
  2174. //////////////////////////////////////////////////////////////////////
  2175. void CClassOne::OnMPS(void)
  2176. {
  2177. m_bGotMPS = true;
  2178. }
  2179. //////////////////////////////////////////////////////////////////////
  2180. // on DCN
  2181. //////////////////////////////////////////////////////////////////////
  2182. void CClassOne::OnDCN(void)
  2183. {
  2184. m_bGotDCN = true;
  2185. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_DCN).c_str() );
  2186. }
  2187. //////////////////////////////////////////////////////////////////////
  2188. // on PPS
  2189. //////////////////////////////////////////////////////////////////////
  2190. void CClassOne::OnPPS(void)
  2191. {
  2192. // char szMsg[80];
  2193. // wsprintf( szMsg, "OnPPS FCF=%x, Pages=%d, Blocks=%d, Frames=%dn", 
  2194. //      m_szHDLCBuff[3], m_szHDLCBuff[4], m_szHDLCBuff[5], m_szHDLCBuff[6] );
  2195. // OutputDebugString( szMsg );
  2196. if( m_nPPRCtr == 0 )
  2197. {
  2198. m_ECMFrameCount = m_szHDLCBuff[6];
  2199. }
  2200. switch( m_szHDLCBuff[3] & 0xfe )
  2201. {
  2202. case 0: // partial page boundary
  2203. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_PPSNULL).c_str() );
  2204. break;
  2205. case EOP:
  2206. OnEOP();
  2207. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_PPSEOP).c_str() );
  2208. break;
  2209. case MPS:
  2210. OnMPS();
  2211. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_PPSMPS).c_str() );
  2212. break;
  2213. case EOM:
  2214. OnEOM();
  2215. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_PPSEOM).c_str() );
  2216. break;
  2217. }
  2218. }
  2219. //////////////////////////////////////////////////////////////////////
  2220. // on PPR
  2221. //////////////////////////////////////////////////////////////////////
  2222. void CClassOne::OnPPR(void)
  2223. {
  2224. m_bGotPPR = true;
  2225. m_nPPRCtr++;
  2226. // save the PPR FIF
  2227. memcpy( m_FaxFile.GetSeqMap(), m_szHDLCBuff + 3, SEQ_MAP_SIZE );
  2228. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_PPR).c_str() );
  2229. // make sure we have a bad frame - sometimes the receiving
  2230. // fax sends PPR with no bad bits when it should have sent MCF
  2231. int nBadFrames = 0;
  2232. int i,j;
  2233. BYTE b;
  2234. BYTE bit;
  2235. int nSeqNum = 0;
  2236. for(i = 0; i < SEQ_MAP_SIZE; i++ )
  2237. {
  2238. b = m_FaxFile.GetSeqMap()[i];
  2239. for(j = 0; j < 8; j++, b >>= 1 )
  2240. {
  2241. bit = (b & 0x01);
  2242. if( bit )
  2243. {
  2244. nBadFrames++;
  2245. }
  2246. nSeqNum++;
  2247. // Ignore any sequence numbers which we didn't transmit
  2248. if( nSeqNum > m_FaxFile.GetFrameCount() )
  2249. {
  2250. break;
  2251. }
  2252. }
  2253. if( nSeqNum > m_FaxFile.GetFrameCount() )
  2254. {
  2255. break;
  2256. }
  2257. }
  2258. if( nBadFrames == 0 )
  2259. {
  2260. m_bGotPPR = false;
  2261. m_bGotMCF = true;
  2262. }
  2263. }
  2264. //////////////////////////////////////////////////////////////////////
  2265. // on RNR - receive not ready
  2266. //////////////////////////////////////////////////////////////////////
  2267. void CClassOne::OnRNR(void)
  2268. {
  2269. m_bGotRNR = true;
  2270. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_RNR).c_str() );
  2271. if( m_dwRNRStart == 0 )
  2272. {
  2273. m_dwRNRStart = GetTickCount();
  2274. }
  2275. }
  2276. //////////////////////////////////////////////////////////////////////
  2277. // on RR - receive ready
  2278. //////////////////////////////////////////////////////////////////////
  2279. void CClassOne::OnRR(void)
  2280. {
  2281. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_RR).c_str() );
  2282. }
  2283. //////////////////////////////////////////////////////////////////////
  2284. // on CRP - command repeat
  2285. //////////////////////////////////////////////////////////////////////
  2286. void CClassOne::OnCRP(void)
  2287. {
  2288. m_bGotCRP = true;
  2289. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_CRP).c_str() );
  2290. }
  2291. //////////////////////////////////////////////////////////////////////
  2292. // on NSF - nonstandard facilities
  2293. //////////////////////////////////////////////////////////////////////
  2294. void CClassOne::OnNSF(void)
  2295. {
  2296. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_NSF).c_str() );
  2297. }
  2298. //////////////////////////////////////////////////////////////////////
  2299. // on CTC - Continue to correct
  2300. //////////////////////////////////////////////////////////////////////
  2301. void CClassOne::OnCTC(void)
  2302. {
  2303. // OutputDebugString( "OnCTCn" );
  2304. m_bGotCTC = true;
  2305. BYTE c1 = CFaxFile::s_FlipTable[ m_szHDLCBuff[4] ];
  2306. WORD wBitRate = (c1 & 0x3c) >> 2;
  2307. for( int i = 0; i < MAX_CLS1SPEEDS; i++ )
  2308. {
  2309. if( cls1Speeds[i].cDCSBits == wBitRate )
  2310. {
  2311. m_nClass1Speed = i;
  2312. break;
  2313. }
  2314. }
  2315. char jbuf[FAXAPI_MODEMMSG_INFOLEN];
  2316. wsprintf( jbuf, (char*)LoadString(GEN_RECEIVED_CTC).c_str(), cls1Speeds[m_nClass1Speed].dwSpeed );
  2317. SignalEventString( EVENT_INFO, jbuf );
  2318. }
  2319. //////////////////////////////////////////////////////////////////////
  2320. // on CTR - Continue to correct response
  2321. //////////////////////////////////////////////////////////////////////
  2322. void CClassOne::OnCTR(void)
  2323. {
  2324. m_bGotCTC = true;
  2325. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_CTR).c_str() );
  2326. }
  2327. //////////////////////////////////////////////////////////////////////
  2328. // on EOR - End of retransmission
  2329. //////////////////////////////////////////////////////////////////////
  2330. void CClassOne::OnEOR(void)
  2331. {
  2332. // OutputDebugString( "OnEORn" );
  2333. m_bGotEOR = true;
  2334. switch( m_szHDLCBuff[3] & 0xfe )
  2335. {
  2336. case 0: // partial page boundary
  2337. break;
  2338. case EOP:
  2339. OnEOP();
  2340. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_EOREOP).c_str() );
  2341. break;
  2342. case MPS:
  2343. OnMPS();
  2344. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_EORMPS).c_str() );
  2345. break;
  2346. case EOM:
  2347. OnEOM();
  2348. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_EOREOM).c_str() );
  2349. break;
  2350. }
  2351. }
  2352. //////////////////////////////////////////////////////////////////////
  2353. // on ERR - End of retransmission response
  2354. //////////////////////////////////////////////////////////////////////
  2355. void CClassOne::OnERR(void)
  2356. {
  2357. m_bGotEOR = true;
  2358. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_ERR).c_str() );
  2359. }
  2360. //////////////////////////////////////////////////////////////////////
  2361. // Handle wait timeout - do periodic processing
  2362. //////////////////////////////////////////////////////////////////////
  2363. bool CClassOne::OnWaitTimeout( void )
  2364. {
  2365. CModem::OnWaitTimeout();
  2366. /*
  2367. if( m_nState == STATE_INIT )
  2368. {
  2369. DWORD dwElapsed = GetTickCount() - m_nLastCommandTickCount;
  2370. // In case the modem doesn't respond with an OK
  2371. if( dwElapsed > 1000 )
  2372. {
  2373. if( m_nLastCommand == COMMAND_QUERY_SEND_SPEEDS )
  2374. {
  2375. SendCommand( COMMAND_QUERY_RECEIVE_SPEEDS );
  2376. }
  2377. else if( m_nLastCommand == COMMAND_QUERY_RECEIVE_SPEEDS )
  2378. {
  2379. SetState( STATE_IDLE );
  2380. }
  2381. }
  2382. if( dwElapsed > 4000 )
  2383. {
  2384. char szMsg[256];
  2385. wsprintf( szMsg, "Timeout: %d ms waiting for responsen", dwElapsed );
  2386. //OutputDebugString( szMsg );
  2387. OnDisconnectMsg();
  2388. }
  2389. }
  2390. */
  2391. return false;
  2392. }
  2393. void CClassOne::OnPartialHDLCFrame(void)
  2394. {
  2395. if( m_nState == STATE_PHASE_C && m_bReceiving )
  2396. {
  2397. if( m_bECM )
  2398. {
  2399. m_FaxFile.WriteECMBuffer( m_szHDLCBuff, m_nHDLCBuffPtr );
  2400. }
  2401. else
  2402. {
  2403. m_FaxFile.WriteBuffer( m_szHDLCBuff, m_nHDLCBuffPtr );
  2404. }
  2405. }
  2406. else
  2407. {
  2408. //OutputDebugString( "HDLC buffer overflow!n" );
  2409. }
  2410. }
  2411. void CClassOne::OnHDLCFrame(void)
  2412. {
  2413. // char szDigit[16];
  2414. // OutputDebugString( "CClassOne::OnHDLCFramen" );
  2415. if( m_nHDLCBuffPtr == 0 )
  2416. {
  2417. //OutputDebugString( "Empty HDLC Framen" );
  2418. m_bRecvHDLCError = true;
  2419. return;
  2420. }
  2421. // int i;
  2422. // for( i = 0; i < m_nHDLCBuffPtr; i++ )
  2423. // {
  2424. // wsprintf( szDigit, "%02.2x ", m_szHDLCBuff[i] );
  2425. // OutputDebugString( szDigit );
  2426. // }
  2427. // OutputDebugString( "n" );
  2428. if( m_nState == STATE_PHASE_C && m_bReceiving )
  2429. {
  2430. if( m_bECM )
  2431. {
  2432. m_FaxFile.WriteECMBuffer( m_szHDLCBuff, m_nHDLCBuffPtr );
  2433. }
  2434. else
  2435. {
  2436. m_FaxFile.WriteBuffer( m_szHDLCBuff, m_nHDLCBuffPtr );
  2437. }
  2438. }
  2439. else if( m_nPhaseState == STATE_RECEIVE_TRAINING )
  2440. {
  2441. int i;
  2442. bool bStart = false;
  2443. int nZeros = 0;
  2444. for( i = 0; i < m_nHDLCBuffPtr; i++ )
  2445. {
  2446. if( bStart == false )
  2447. {
  2448. if( m_szHDLCBuff[i] == 0 ) 
  2449. {
  2450. bStart = true;
  2451. nZeros = 1;
  2452. }
  2453. }
  2454. else
  2455. {
  2456. if( m_szHDLCBuff[i] == 0 ) 
  2457. {
  2458. nZeros++;
  2459. }
  2460. }
  2461. }
  2462. int nBytesExpected = (int)(((float)(cls1Speeds[m_nClass1Speed].dwSpeed / 8)) * 1.5) + 2;
  2463. m_nCorrect = (int)(100 * nZeros / nBytesExpected);
  2464. //char szMsg[180];
  2465. //wsprintf( szMsg, "Zeros: %d, Correct=%d%%, Total=%d, Expected=%dn", nZeros, m_nCorrect, m_nHDLCBuffPtr, nBytesExpected );
  2466. //OutputDebugString( szMsg );
  2467. }
  2468. else
  2469. {
  2470. if( (unsigned char)m_szHDLCBuff[0] != 0xff )
  2471. {
  2472. bool bFoundFrame = false;
  2473. for( int i = 1; i < m_nHDLCBuffPtr; i++ )
  2474. {
  2475. if( (unsigned char)m_szHDLCBuff[i] == 0xff )
  2476. {
  2477. memmove( m_szHDLCBuff, m_szHDLCBuff + i, m_nHDLCBuffPtr - i );
  2478. bFoundFrame = true;
  2479. }
  2480. }
  2481. if( bFoundFrame == false )
  2482. return;
  2483. }
  2484. if( m_szHDLCBuff[1] & 0x10 )
  2485. {
  2486. /// final frame
  2487. //OutputDebugString( "Final Framen" );
  2488. m_bFinalHDLCFrame = true;
  2489. }
  2490. switch( (m_szHDLCBuff[2] & 0xfe) )  // set LSB to zero
  2491. {
  2492. case DIS:
  2493. OnDIS();
  2494. break;
  2495. case CSI:
  2496. case TSI:
  2497. OnCSI();
  2498. break;
  2499. case CFR:
  2500. OnCFR();
  2501. break;
  2502. case MCF:
  2503. OnMCF();
  2504. break;
  2505. case RTP:
  2506. OnRTP();
  2507. break;
  2508. case RTN:
  2509. OnRTN();
  2510. break;
  2511. case FTT:
  2512. OnFTT();
  2513. break;
  2514. case DCS:
  2515. OnDCS();
  2516. break;
  2517. case EOP:
  2518. OnEOP();
  2519. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_EOP).c_str() );
  2520. break;
  2521. case EOM:
  2522. OnEOM();
  2523. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_EOM).c_str() );
  2524. break;
  2525. case MPS:
  2526. OnMPS();
  2527. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_RECEIVED_MPS).c_str() );
  2528. break;
  2529. case DCN:
  2530. OnDCN();
  2531. break;
  2532. case PPS:
  2533. OnPPS();
  2534. break;
  2535. case PPR:
  2536. OnPPR();
  2537. break;
  2538. case RR:
  2539. OnRR();
  2540. break;
  2541. case RNR:
  2542. OnRNR();
  2543. break;
  2544. case CRP:
  2545. OnCRP();
  2546. break;
  2547. case NSF:
  2548. OnNSF();
  2549. break;
  2550. case CTC:
  2551. OnCTC();
  2552. break;
  2553. case CTR:
  2554. OnCTR();
  2555. break;
  2556. case EOR:
  2557. OnEOR();
  2558. break;
  2559. case ERR:
  2560. OnERR();
  2561. break;
  2562. default:
  2563. {
  2564. //char szMsg[256];
  2565. //wsprintf( szMsg, "Unknown FCF: %dn", m_szHDLCBuff[2] );
  2566. //OutputDebugString( szMsg );
  2567. }
  2568. }
  2569. }
  2570. }
  2571. //////////////////////////////////////////////////////////////////////
  2572. // OnSendFaxMsg
  2573. //////////////////////////////////////////////////////////////////////
  2574. void CClassOne::OnSendFaxMsg(MSG* pMsg)
  2575. {
  2576. CModem::OnSendFaxMsg( pMsg );
  2577. if( !m_bConnected )
  2578. {
  2579. // Error!
  2580. return;
  2581. }
  2582. if( m_nState != STATE_IDLE )
  2583. {
  2584. // Error!
  2585. return;
  2586. }
  2587. m_FaxFile.SetSendEncoding( m_nSendEncoding );
  2588. int nRet = m_FaxFile.ReadFirstHeader();
  2589. if( nRet == 1 )
  2590. {
  2591. //OutputDebugString( "Error reading first headern" );
  2592. m_sLastError.assign( (char*)LoadString(GEN_ERROR_READING_TIFF_FILE).c_str() );
  2593. // SignalEvent( EVENT_ERROR );
  2594. SignalEvent( EVENT_TERMINATE );
  2595. SignalEvent( EVENT_IDLE );
  2596. return;
  2597. }
  2598. else if( nRet == 2 )
  2599. {
  2600. //OutputDebugString( "Error reading first headern" );
  2601. m_sLastError.assign( (char*)LoadString(GEN_ERROR_INCOMPAT_TIFF_FILE).c_str() );
  2602. // SignalEvent( EVENT_ERROR );
  2603. SignalEvent( EVENT_TERMINATE );
  2604. SignalEvent( EVENT_IDLE );
  2605. return;
  2606. }
  2607. m_dwRNRStart = 0;
  2608. m_bReceiving = false;
  2609. m_bHDLCMode = false;
  2610. m_bSuccessful = false;
  2611. SetState( STATE_PHASE_A );
  2612. EnableSoftFlowControl( false );
  2613. SendCommand( COMMAND_DIAL );
  2614. }
  2615. void CClassOne::OnRecvFaxMsg(MSG* pMsg)
  2616. {
  2617. CModem::OnRecvFaxMsg( pMsg );
  2618. if( m_nState == STATE_IDLE || m_nState == STATE_RINGING )
  2619. {
  2620. m_FaxFile.Clear();
  2621. m_FaxFile.SetSendEncoding( m_nSendEncoding );
  2622. m_bReceiving = true;
  2623. m_bSuccessful = false;
  2624. SendCommand( COMMAND_ANSWER );
  2625. SetState( STATE_PHASE_A );
  2626. }
  2627. }
  2628. void CClassOne::SendID(unsigned char octet)
  2629. {
  2630. // OutputDebugString( "SendIDn" );
  2631. HDLCFrameStart();
  2632. HDLCFrameAddByte( 0x03 ); // not final frame
  2633. HDLCFrameAddByte( GetFCF(octet) ); // TSI
  2634. for( int i = 20; i > 0; i-- )
  2635. {
  2636. HDLCFrameAddByte( (i > m_sLocalCSID.size() ) ? SPACE : m_sLocalCSID.at(i-1) );
  2637. }
  2638. HDLCFrameWrite();
  2639. string sMsg;
  2640. if( octet == TSI )
  2641. {
  2642. sMsg.assign( (char*)LoadString(GEN_SENT_TSI).c_str() );
  2643. }
  2644. else
  2645. {
  2646. sMsg.assign( (char*)LoadString(GEN_SENT_CSI).c_str() );
  2647. }
  2648. sMsg.append( m_sLocalCSID );
  2649. SignalEventString( EVENT_INFO, sMsg.c_str() );
  2650. }
  2651. void CClassOne::SendDCS(void)
  2652. {
  2653. // OutputDebugString( "SendDCSn" );
  2654. HDLCFrameStart();
  2655. HDLCFrameAddByte( 0x13 ); // final frame
  2656. HDLCFrameAddByte( GetFCF(DCS) ); // DCS
  2657. HDLCFrameAddByte( 0x00 ); // 
  2658. WORD c1 = 0x40;
  2659. WORD c2 = 0;
  2660. WORD c3 = 0;
  2661. // Set Speed
  2662. c1 |= cls1Speeds[m_nClass1Speed].cDCSBits << 2;
  2663. m_DCSParams.p.BitRate = cls1Speeds[m_nClass1Speed].ndx;
  2664. m_DCSParams.p.BFT = 0;
  2665. m_wMinLineChars = ((cls1Speeds[m_nClass1Speed].dwSpeed/8) * m_wScanTimeMs)/1000;
  2666. //char jbuf[256];
  2667. //wsprintf(jbuf, "Min Chars/Line: %dn", m_wMinLineChars );
  2668. //OutputDebugString( jbuf );
  2669. //wsprintf( jbuf, "Selected baud rate: %dn", cls1Speeds[m_nClass1Speed].dwSpeed );
  2670. //OutputDebugString( jbuf );
  2671. // Set Resolution
  2672. if( m_FaxFile.IsHiRes() && m_DISParams.p.VertRes ) // If High Res set 7/7mm bit
  2673. {
  2674. c1 |= 0x02;
  2675. m_DCSParams.p.VertRes = 1;
  2676. }
  2677. else
  2678. {
  2679. m_DCSParams.p.VertRes = 0; // low res
  2680. }
  2681. switch( m_wScanTimeMs )
  2682. {
  2683. case 0:
  2684. c2 |= 0x0E;
  2685. m_DCSParams.p.ScanTime = 0;
  2686. break;
  2687. case 5:
  2688. c2 |= 0x02;
  2689. m_DCSParams.p.ScanTime = 1;
  2690. break;
  2691. case 10:
  2692. c2 |= 0x04;
  2693. m_DCSParams.p.ScanTime = 3;
  2694. break;
  2695. case 20:
  2696. //c2 |= 0x00;
  2697. m_DCSParams.p.ScanTime = 5;
  2698. break;
  2699. case 40:
  2700. c2 |= 0x08;
  2701. m_DCSParams.p.ScanTime = 7;
  2702. break;
  2703. }
  2704. if( m_FaxFile.GetSendEncoding() > FAXAPI_ENC_CCITT_1D )
  2705. {
  2706. //OutputDebugString( "Sending 2Dn" );
  2707. c1 |= 0x01; // Set the 2D bit
  2708. }
  2709. // default is A4 (0x00), but set unlimited if found in DIS
  2710. if( m_DISParams.p.PageLength == 2 )
  2711. {
  2712. c2 |= 0x10;
  2713. m_DCSParams.p.PageLength = 2;
  2714. }
  2715. else
  2716. {
  2717. m_DCSParams.p.PageLength = 0;
  2718. }
  2719. // default is 1728 width (0x00)
  2720. m_DCSParams.p.PageWidth = 0;
  2721. c2 |= 0x01;  // set the extend bit
  2722. if( m_FaxFile.GetSendEncoding() == FAXAPI_ENC_CCITT_T6 )
  2723. {
  2724. c3 |= 0x02; // Set T.6 encoding
  2725. }
  2726. // Use ECM?
  2727. if( m_bECM && m_bECMSupported )
  2728. {
  2729. c3 |= 0x20;  // set the ECM bit
  2730. if( m_FaxFile.GetECMFrameSize() == 64 )
  2731. {
  2732. c3 |= 0x10; // 64 octet frames
  2733. m_DCSParams.p.ECM = 1;
  2734. }
  2735. else
  2736. {
  2737. m_DCSParams.p.ECM = 2;
  2738. }
  2739. }
  2740. else
  2741. {
  2742. m_bECM = false;
  2743. m_DCSParams.p.ECM = 0;
  2744. }
  2745. m_DCSParams.p.DataFormat = m_FaxFile.GetSendEncoding();
  2746. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c1 ] );
  2747. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c2 ] );
  2748. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c3 ] );
  2749. HDLCFrameWrite();
  2750. SignalEvent( EVENT_SENT_DCS );
  2751. }
  2752. void CClassOne::SendTraining(void)
  2753. {
  2754. unsigned int nBytesToSend;
  2755. // OutputDebugString( "SendTrainingn" );
  2756. nBytesToSend = (int)(((float)(cls1Speeds[m_nClass1Speed].dwSpeed / 8)) * 1.5);
  2757. HDLCFrameStart();
  2758. for( int i = 0; i < nBytesToSend; i++ )
  2759. {
  2760. HDLCFrameAddByte( 0 );
  2761. }
  2762. HDLCFrameWrite();
  2763. //char szMsg[180];
  2764. //wsprintf( szMsg, "Zeros: %dn", nBytesToSend );
  2765. //OutputDebugString( szMsg );
  2766. }
  2767. void CClassOne::SendEOP(void)
  2768. {
  2769. if( m_bECM )
  2770. {
  2771. if( m_FaxFile.GetPartialPage() )
  2772. {
  2773. SendPPSHDLCFrame( 0 );
  2774. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_PPSNULL).c_str() );
  2775. }
  2776. else
  2777. {
  2778. if( m_FaxFile.MorePages() == false )
  2779. {
  2780. SendPPSHDLCFrame( EOP );
  2781. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_PPSEOP).c_str() );
  2782. }
  2783. else
  2784. {
  2785. SendPPSHDLCFrame( MPS );
  2786. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_PPSMPS).c_str() );
  2787. }
  2788. }
  2789. }
  2790. else
  2791. {
  2792. if( m_FaxFile.MorePages() == false )
  2793. {
  2794. SendSimpleHDLCFrame( EOP );
  2795. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_EOP).c_str() );
  2796. }
  2797. else
  2798. {
  2799. SendSimpleHDLCFrame( MPS );
  2800. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_MPS).c_str() );
  2801. }
  2802. }
  2803. }
  2804. void CClassOne::SendDCN(void)
  2805. {
  2806. SendSimpleHDLCFrame( DCN );
  2807. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_DCN).c_str() );
  2808. }
  2809. void CClassOne::SendDIS(void)
  2810. {
  2811. HDLCFrameStart();
  2812. HDLCFrameAddByte( 0x13 ); // final frame
  2813. HDLCFrameAddByte( GetFCF(DIS) ); // DIS
  2814. HDLCFrameAddByte( 0x00 ); // not used in Group 3
  2815. WORD c1 = 0x40; // can receive group 3  TODO: polling
  2816. WORD c2 = 0x01; // extend bit
  2817. WORD c3 = 0x00; // 
  2818. if( m_bRecvSupported[9] && m_nRecvBaud >= 5 )
  2819. {
  2820. c1 |= (DIS_V27_V29_V33_V17 << 2);
  2821. m_DISParams.p.BitRate = 5;
  2822. }
  2823. else if( m_bRecvSupported[8] && m_nRecvBaud >= 4 )
  2824. {
  2825. c1 |= (DIS_V27_V29_V33 << 2);
  2826. m_DISParams.p.BitRate = 4;
  2827. }
  2828. else if( m_bRecvSupported[3] && m_bRecvSupported[2] && m_bRecvSupported[1] && m_bRecvSupported[0] && m_nRecvBaud >= 3 )
  2829. {
  2830. c1 |= (DIS_V27_V29 << 2);
  2831. m_DISParams.p.BitRate = 3;
  2832. }
  2833. else if( m_bRecvSupported[3] && m_bRecvSupported[2] && m_nRecvBaud >= 2 )
  2834. {
  2835. c1 |= (DIS_V29 << 2);
  2836. m_DISParams.p.BitRate = 2;
  2837. }
  2838. else if( m_bRecvSupported[1] && m_nRecvBaud >= 1 )
  2839. {
  2840. c1 |= (DIS_V27 << 2);
  2841. m_DISParams.p.BitRate = 1;
  2842. }
  2843. else 
  2844. {
  2845. c1 |= (DIS_V27_FALLBACK << 2);
  2846. m_DISParams.p.BitRate = 0;
  2847. }
  2848. // Unlimited length and 1728 width
  2849. m_DISParams.p.PageWidth = 0;
  2850. m_DISParams.p.PageLength = 2;
  2851. // 1728 width is default
  2852. c2 |= 0x10; // unlimited length
  2853. c2 |= 0x0E; // 0 ms scan time
  2854. m_DISParams.p.ScanTime = 0;
  2855. c1 |= 0x02; // support hi res
  2856. m_DISParams.p.VertRes = 1;
  2857. if( m_nSendEncoding > FAXAPI_ENC_CCITT_1D )
  2858. {
  2859. c1 |= 0x01;         // support 2D coding
  2860. }
  2861. if( m_bECMSupported )
  2862. {
  2863. c3 |= 0x20; // support 256 octet ECM
  2864. }
  2865. //c3 |= 0x30; // support 64 octet ECM
  2866. if( m_nSendEncoding == FAXAPI_ENC_CCITT_T6 )
  2867. {
  2868. c3 |= 0x02; // support T.6 encoding
  2869. }
  2870. m_DISParams.p.ECM = m_bECMSupported ? 2 : 0;
  2871. m_DISParams.p.DataFormat = m_nSendEncoding;
  2872. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c1 ] );
  2873. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c2 ] );
  2874. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c3 ] );
  2875. HDLCFrameWrite();
  2876. SignalEvent( EVENT_SENT_DIS );
  2877. }
  2878. void CClassOne::SendCFR(void)
  2879. {
  2880. // OutputDebugString( "SendCFRn" );
  2881. SendSimpleHDLCFrame( CFR );
  2882. }
  2883. void CClassOne::SendFTT(void)
  2884. {
  2885. // OutputDebugString( "SendFTTn" );
  2886. SendSimpleHDLCFrame( FTT );
  2887. }
  2888. void CClassOne::SendMCF(void)
  2889. {
  2890. if( m_bSendPPR )
  2891. {
  2892. SendPPR();
  2893. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_PPR).c_str() );
  2894. m_nPhaseState = STATE_MCF_SENT;
  2895. }
  2896. else
  2897. {
  2898. if( m_bLastPageGood )
  2899. {
  2900. SendSimpleHDLCFrame( MCF );
  2901. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_MCF).c_str() );
  2902. m_nPhaseState = STATE_MCF_SENT;
  2903. }
  2904. else
  2905. {
  2906. SendSimpleHDLCFrame( RTN );
  2907. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_RTN).c_str() );
  2908. SetState( STATE_PHASE_B, STATE_RECEIVE_TRAINING_DATA );
  2909. m_dwTrainingStart = GetTickCount();
  2910. SetTimer( TIMER_TRAINING, 4000 );
  2911. RecvLongTraining();
  2912. m_nCorrect = 0;
  2913. m_nHDLCBuffPtr = 0;
  2914. }
  2915. }
  2916. }
  2917. void CClassOne::SendPPR(void)
  2918. {
  2919. // OutputDebugString( "SendPPRn" );
  2920. HDLCFrameStart();
  2921. HDLCFrameAddByte( 0x13 ); // final frame
  2922. HDLCFrameAddByte( GetFCF(PPR) );
  2923. for( int i = 0; i < SEQ_MAP_SIZE; i++ )
  2924. {
  2925. HDLCFrameAddByte( m_FaxFile.GetSeqMap()[i] );
  2926. }
  2927. HDLCFrameWrite();
  2928. }
  2929. void CClassOne::SendCTR(void)
  2930. {
  2931. SendSimpleHDLCFrame( m_bGotCTC ? CTR : ERR );
  2932. SignalEventString( EVENT_INFO, m_bGotCTC ? (char*)LoadString(GEN_SENT_CTR).c_str() : (char*)LoadString(GEN_SENT_ERR).c_str() );
  2933. }
  2934. void CClassOne::SendCTC(void)
  2935. {
  2936. WORD c1 = 0x40;
  2937. // Set Speed
  2938. c1 |= cls1Speeds[m_nClass1Speed].cDCSBits << 2;
  2939. HDLCFrameStart();
  2940. HDLCFrameAddByte( 0x13 ); // final frame
  2941. HDLCFrameAddByte( GetFCF(CTC) );
  2942. HDLCFrameAddByte( 0x00 ); // not used in Group 3
  2943. HDLCFrameAddByte( CFaxFile::s_FlipTable[ c1 ] ); // 
  2944. HDLCFrameWrite();
  2945. SignalEventString( EVENT_INFO, (char*)LoadString(GEN_SENT_CTC).c_str() );
  2946. }
  2947. void CClassOne::SendSimpleHDLCFrame( unsigned char nFCF )
  2948. {
  2949. HDLCFrameStart();
  2950. HDLCFrameAddByte( 0x13 ); // final frame
  2951. HDLCFrameAddByte( GetFCF(nFCF) );
  2952. HDLCFrameWrite();
  2953. }
  2954. void CClassOne::SendPPSHDLCFrame( unsigned char nFCF )
  2955. {
  2956. HDLCFrameStart();
  2957. HDLCFrameAddByte( 0x13 ); // final frame
  2958. HDLCFrameAddByte( GetFCF(PPS) );
  2959. HDLCFrameAddByte( (nFCF == 0) ? 0 : GetFCF(nFCF) );
  2960. HDLCFrameAddByte( m_FaxFile.GetPageCount() ); // page count
  2961. HDLCFrameAddByte( m_FaxFile.GetBlockCount() ); // block count
  2962. HDLCFrameAddByte( m_FaxFile.GetFrameCount() ); // frame count
  2963. HDLCFrameWrite();
  2964. }
  2965. void CClassOne::SendFormattedCommand( char* szCMD, int nParam )
  2966. {
  2967. char szBuf[32];
  2968. wsprintf( szBuf, "AT+%s=%d", szCMD, nParam );
  2969. DoWrite( szBuf, strlen(szBuf), true );
  2970. //char szWorkBuffer[100];
  2971. //wsprintf( szWorkBuffer, "Sent Command: %sn", szBuf );
  2972. //OutputDebugString( szWorkBuffer );
  2973. }
  2974. void CClassOne::SetState( int nNewState, int nNewPhaseState )
  2975. {
  2976. /*
  2977. bool bSignalIt = false;
  2978. if( m_nState != nNewState )
  2979. {
  2980. bSignalIt = true;
  2981. }
  2982. */
  2983. m_nState = nNewState;
  2984. m_nPhaseState = nNewPhaseState;
  2985. if( nNewState == STATE_IDLE )
  2986. {
  2987. SignalEvent( EVENT_IDLE );
  2988. }
  2989. }
  2990. void CClassOne::DecrementSpeed( void )
  2991. {
  2992. int i;
  2993. long dwCurSpeed;
  2994. i = m_nClass1Speed - 1;
  2995. if( i < 0 )
  2996. return;
  2997. dwCurSpeed = cls1Speeds[m_nClass1Speed].dwSpeed;
  2998. while( i > 0 && cls1Speeds[i].dwSpeed >= dwCurSpeed )
  2999. i--;
  3000. m_nClass1Speed = i;
  3001. }
  3002. void CClassOne::HDLCFrameStart(void)
  3003. m_szHDLCBuff[0] = 0xff; // address octet
  3004. m_nHDLCBuffPtr = 1; 
  3005. };
  3006. void CClassOne::HDLCFrameAddByte( unsigned char nOctet )
  3007. m_szHDLCBuff[m_nHDLCBuffPtr++] = nOctet;
  3008. if( nOctet == DLE ) 
  3009. {
  3010. m_szHDLCBuff[m_nHDLCBuffPtr++] = nOctet;
  3011. }
  3012. void CClassOne::HDLCFrameWrite(void)
  3013. {
  3014. m_szHDLCBuff[m_nHDLCBuffPtr++] = DLE;
  3015. m_szHDLCBuff[m_nHDLCBuffPtr++] = ETX;
  3016. DoWrite( (char*)m_szHDLCBuff, m_nHDLCBuffPtr, false );
  3017. }
  3018. void CClassOne::Abort( bool bUserCancelled )
  3019. {
  3020. char endofframe[2] = { DLE, ETX };
  3021. char byteCancel = CAN;
  3022. if( bUserCancelled ) 
  3023. {
  3024. m_sLastError.assign( (char*)LoadString(GEN_FAX_CANCELLED).c_str() );
  3025. }
  3026. Terminate();
  3027. m_bHDLCMode = false;
  3028. switch( m_nState )
  3029. {
  3030. case STATE_PHASE_A:
  3031. DoWrite( &byteCancel, 1, false );
  3032. m_nState = STATE_DISCONNECT;
  3033. break;
  3034. case STATE_PHASE_B:
  3035. switch( m_nPhaseState )
  3036. {
  3037. case STATE_WAIT_FOR_DIS:
  3038. case STATE_WAIT_FOR_CFR:
  3039. case STATE_WAIT_FOR_DCS:
  3040. case STATE_SENT_FTT_WAIT_FOR_DCS:
  3041. case STATE_RECEIVE_TRAINING_DATA:
  3042. if( m_bGotConnect == false )
  3043. {
  3044. DoWrite( &byteCancel, 1, false );
  3045. }
  3046. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3047. break;
  3048. case STATE_SEND_DCS:
  3049. if( m_bGotConnect == false )
  3050. {
  3051. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  3052. }
  3053. else
  3054. {
  3055. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3056. }
  3057. break;
  3058. case STATE_SEND_TIS:
  3059. case STATE_SEND_CSI:
  3060. case STATE_SEND_DIS:
  3061. case STATE_SEND_CFR:
  3062. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  3063. break;
  3064. case STATE_SEND_TRAINING_DATA:
  3065. DoWrite( endofframe, 2, false );
  3066. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3067. break;
  3068.     case STATE_SENT_FTT:
  3069. case STATE_DIS_SENT:
  3070. case STATE_SEND_SILENCE_BEFORE_DATA:
  3071. case STATE_SEND_TRAINING:
  3072. case STATE_RECEIVE_TRAINING:
  3073. case STATE_SEND_RECV_DATA:
  3074. case STATE_SEND_SILENCE_BEFORE_TRAINING:
  3075. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3076. break;
  3077. }
  3078. break;
  3079. case STATE_PHASE_C:
  3080. if ( m_bReceiving )
  3081. {
  3082. DoWrite( &byteCancel, 1, false );
  3083. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3084. m_bHDLCMode = false;
  3085. }
  3086. else
  3087. {
  3088. DoWrite( endofframe, 2, false );
  3089. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3090. }
  3091. break;
  3092.   case STATE_PHASE_D:
  3093. switch( m_nPhaseState )
  3094. {
  3095. case STATE_SEND_PAGE_FINISHED:
  3096. case STATE_SEND_RR:
  3097. case STATE_SEND_CTC:
  3098. case STATE_SEND_MCF:
  3099. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  3100. break;
  3101. case STATE_SEND_CTR:
  3102. if( m_bGotConnect == false )
  3103. {
  3104. SetState( STATE_PHASE_E, STATE_SEND_DCN );
  3105. }
  3106. else
  3107. {
  3108. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3109. }
  3110. break;
  3111. case STATE_WAIT_FOR_CTC:
  3112. case STATE_WAIT_FOR_MCF:
  3113. case STATE_WAIT_FOR_CTR:
  3114. case STATE_WAIT_FOR_EOP:
  3115. if( m_bGotConnect == false )
  3116. {
  3117. DoWrite( &byteCancel, 1, false );
  3118. }
  3119. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3120. break;
  3121. case STATE_MCF_SENT:
  3122. case STATE_SEND_SILENCE_BEFORE_PAGE_FINISHED:
  3123. case STATE_PAGE_FINISHED_SENT:
  3124. case STATE_SEND_SILENCE_BEFORE_PHASE_C:
  3125. case STATE_CTC_SENT:
  3126. SetState( STATE_PHASE_E, STATE_WAIT_FOR_OK );
  3127. break;
  3128. }
  3129. break;
  3130.     //case STATE_PHASE_E:
  3131. // break;
  3132. }
  3133. }
  3134. void CClassOne::OnTimer( UINT nID )
  3135. {
  3136. //OutputDebugString( "CClassOne::OnTimern" );
  3137. if( (nID == TIMER_COMMAND) && (m_nState == STATE_INIT) )
  3138. {
  3139. switch( m_nLastCommand )
  3140. {
  3141. case COMMAND_QUERY_SEND_SPEEDS:
  3142. SendCommand( COMMAND_QUERY_RECEIVE_SPEEDS );
  3143. break;
  3144. case COMMAND_QUERY_RECEIVE_SPEEDS:
  3145. SetState( STATE_IDLE );
  3146. KillTimer( TIMER_COMMAND );
  3147. break;
  3148. case COMMAND_HANGUP:
  3149. m_nState= STATE_IDLE;
  3150. SignalEvent( EVENT_IDLE );
  3151. m_nLoopCtr = 0; 
  3152. break;
  3153. default:
  3154. if( m_bGotOK )
  3155. {
  3156. m_nLoopCtr = 0;
  3157. KillTimer( TIMER_COMMAND );
  3158. SendCommand( COMMAND_SETUP_STRING );
  3159. }
  3160. else
  3161. {
  3162. if( ++m_nLoopCtr >= 3 )
  3163. {
  3164. KillTimer( TIMER_COMMAND );
  3165. m_sLastError.assign( (char*)LoadString(GEN_NO_RESPONSE_FROM_MODEM).c_str() );
  3166. // SignalEvent( EVENT_ERROR );
  3167. OnDisconnectMsg();
  3168. }
  3169. else
  3170. {
  3171. SendCommand( m_nLastCommand, (char*) m_LastCommandString.c_str() );
  3172. }
  3173. }
  3174. break;
  3175. }
  3176. }
  3177. else if( nID == TIMER_HDLC_RECV )
  3178. {
  3179. KillTimer( TIMER_HDLC_RECV );
  3180. char byteCancel = CAN;
  3181. DoWrite( &byteCancel, 1, false );
  3182. m_bRecvHDLCError = true;
  3183. }
  3184. else if( nID == TIMER_TRAINING )
  3185. {
  3186. KillTimer( TIMER_TRAINING );
  3187. char byteCancel = CAN;
  3188. DoWrite( &byteCancel, 1, false );
  3189. m_bRecvHDLCError = true;
  3190. m_bHDLCMode = false;
  3191. }
  3192. else if ( nID == TIMER_MAXPAGERETRIES )
  3193. {
  3194. m_sLastError.assign( "Max page retry timer expired" );
  3195. // SignalEvent( EVENT_ERROR );
  3196. Abort( false );
  3197. m_dwActivityTimer = GetTickCount();
  3198. }
  3199. }
  3200. void CClassOne::RecvHDLCFrame(void)
  3201. SendFormattedCommand( "FRH", 3 ); 
  3202. m_bRecvHDLCError = false; 
  3203. SetTimer( TIMER_HDLC_RECV, 6000 );
  3204. m_bGotConnect = false;
  3205. };
  3206. void CClassOne::OnAbortFaxMsg(void)
  3207. {
  3208. Abort( true );
  3209. }
  3210. void CClassOne::CheckTimeouts( DWORD dwInActive )
  3211. {
  3212. switch( m_nState )
  3213. {
  3214. case STATE_PHASE_A:
  3215. if( dwInActive > 90000 )
  3216. {
  3217. m_sLastError.assign( (char*)LoadString(GEN_TIMEOUT_CONNECTING_TO_REMOTE_FAX).c_str() );
  3218. // SignalEvent( EVENT_ERROR );
  3219. Abort( false );
  3220. m_dwActivityTimer = GetTickCount();
  3221. }
  3222. break;
  3223. case STATE_PHASE_E:
  3224. if( dwInActive > 5000 )
  3225. {
  3226. Terminate();
  3227. DoHangup();
  3228. m_dwActivityTimer = GetTickCount();
  3229. }
  3230. break;
  3231. case STATE_DISCONNECT:
  3232. if( dwInActive > 1000 )
  3233. {
  3234. PhaseDisconnect();
  3235. }
  3236. break;
  3237. default:
  3238. if( m_nState > STATE_IDLE && m_nState != STATE_RINGING )
  3239. {
  3240. int nInActive = GetTickCount() - m_dwActivityTimer;
  3241. if( nInActive > 60000 )
  3242. {
  3243. m_sLastError.assign( (char*)LoadString(GEN_TIMEOUT_IN_SENDRECEIVE).c_str() );
  3244. // SignalEvent( EVENT_ERROR );
  3245. Abort( false );
  3246. m_dwActivityTimer = GetTickCount();
  3247. }
  3248. }
  3249. break;
  3250. }
  3251. }