summaryrefslogtreecommitdiff
path: root/examples/OICMiddle/RestInput.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/OICMiddle/RestInput.h')
-rw-r--r--examples/OICMiddle/RestInput.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/examples/OICMiddle/RestInput.h b/examples/OICMiddle/RestInput.h
new file mode 100644
index 000000000..2e1cad6fd
--- /dev/null
+++ b/examples/OICMiddle/RestInput.h
@@ -0,0 +1,50 @@
+#ifndef RESTINPUT_H
+#define RESTINPUT_H
+
+//******************************************************************
+//
+// Copyright 2014 Intel Corporation.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#include <netinet/in.h>
+
+class LineInput;
+class Connection;
+
+class RestInput
+{
+public:
+ RestInput(LineInput *lineInput);
+ bool init();
+ void startAccept(int &sockfd);
+ void startThread();
+ void processClient(void);
+ void handleRead(std::string & restCmd);
+ void handleShow(stringstream &ss, observecb_t &cb);
+ void parseString(std::string &toParse);
+
+protected:
+ LineInput *m_lineInput;
+ int m_sockfd, m_port, m_threadCount;
+ struct sockaddr_in m_serverAddr;
+ char *m_data;
+ std::thread *m_thread;
+};
+
+#endif // RESTINPUT_H
+