summaryrefslogtreecommitdiffstats
path: root/rnprotocol/rnpservercomm.hh
blob: 9a173f43c8c5850f443eeb3691d9ac2974005bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* This file is part of rasdaman community.
*
* Rasdaman community is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rasdaman community is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with rasdaman community.  If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
rasdaman GmbH.
*
* For more information please see <http://www.rasdaman.org>
* or contact Peter Baumann via <baumann@rasdaman.com>.
*/
/*************************************************************
 *
 *
 * PURPOSE:
 *
 *
 * COMMENTS:
 *
 ************************************************************/

#ifndef RNPSERVERCOMM_HH
#define RNPSERVERCOMM_HH

//#include <rnprotocol.hh>
//#include <rnpembedded.hh>
#include "rnpcommunication.hh"
#include "raslib/error.hh"

using namespace rnp;

class ClientTimer
  {
    public:
      ClientTimer();
      void setTimeoutInterval(int seconds);
      void markAction();
      bool checkForTimeout();
    private:
      time_t interval;
      time_t lastAction;
      bool   enabled;
   };
   
class RnpRasserverJob : public RnpServerJob
  {
    public:
      RnpRasserverJob() throw();
      
    private:
      bool validateMessage() throw();
      void executeOnAccept() throw();
      void executeOnWriteReady() throw();
      void specificCleanUpOnTimeout() throw();
      void executeOnReadError() throw();
      void executeOnWriteError() throw();
   };
   
class RnpRasDaManComm : public RnpBaseServerComm
  {
    public:
      RnpRasDaManComm() throw();
      
      ~RnpRasDaManComm() throw();
      
      void processRequest(CommBuffer *receiverBuffer, CommBuffer *transmiterBuffer, RnpTransport::CarrierProtocol, RnpServerJob *callingJob) throw();

      void setTimeoutInterval(int seconds);
      void checkForTimeout();
      
    private: // inherited from RnpBaseServerComm
      RnpServerJob* createJobs(int howMany);
      
      void decodeFragment() throw( r_Error );
      
      ClientTimer  clientTimer;
    private: // the execution functions:
      void executeConnect();
      void executeDisconnect();
      void executeOpenDB();
      void executeCloseDB();
      void executeBeginTA();
      void executeCommitTA();
      void executeAbortTA();
      void executeIsTAOpen();
      void executeQueryHttp();
      void executeGetNewOId();
      void executeQueryRpc();
      void executeGetNextElement();
      void executeEndTransfer();
      void executeGetNextMDD();
      void executeGetNextTile();
      
      void executeUpdateQuery();
      void executeStartInsertTransMDD();
      void executeInsertTile();
      void executeEndInsertMDD();
      void executeInitUpdate();
      void executeGetTypeStructure();
      void executeStartInsertPersMDD();
      void executeInsertMDD();
      void executeInsertCollection();
      void executeRemoveObjFromColl();
      void executeDeleteObjByOId();
      void executeDeleteCollByName();
      void executeGetCollection();
      void executeGetCollectionOIds();
      void executeGetObjectType();
      void executeSetFormat();
      
      
      void executeCreateCollection();
      void executeCreateMDD();
      void executeExtendMDD();
      void executeGetTileDomains();
      
      void answerr_Error(r_Error&); 
    private: // helper functions  
      void connectClient();
      // reset connection, without reporting availability to rasmgr
      void disconnectInternally();
      // reset connection, with reporting availability to rasmgr
      void disconnectClient();
      void verifyClientID( RnpQuark command ) throw (r_Error);
      int  makeNewClientID();
      
      int  clientID;         // un timestamp, de fapt!
      int  requestCounter;   // numara pachetele trimise de un client
      int  fragmentCounter;  // numara fragmentele trimise de un client
      
      static const int NoClient;
    };

class RasserverCommunicator : public NbCommunicator
  {
    public:
       RasserverCommunicator(RnpRasDaManComm*) throw();
       
    protected:
       bool executeOnTimeout() throw();
       
       RnpRasDaManComm *commPtr;
   };

#endif // RNPSERVERCOMM_HH