-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_main.cpp
More file actions
199 lines (169 loc) · 5.84 KB
/
server_main.cpp
File metadata and controls
199 lines (169 loc) · 5.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
* Copyright (C) 2014-2018 Sumandeep Banerjee
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* File:
* Author: sumandeep
* Email: sumandeep.banerjee@gmail.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <iostream>
#include <opencv2/opencv.hpp>
#include "SearchEngine.h"
using namespace std;
using namespace cv;
// display command line help
void printHelp( const string& strAppName )
{
cout << string( 40, '-' ) << endl;
cout << strAppName << " usage options: " << endl;
cout << string( 40, '-' ) << endl << endl;
cout << strAppName << " configfile" << endl << endl;
cout << "configfile - .xml config file" << endl << endl;
}
/*
* Image search server
*/
int main( int argc, char* argv[] )
{
unsigned int posSplit = string( argv[0] ).find_last_of( "/\\" );
string strAppName = string( argv[0] ).substr( posSplit + 1 );
if( 2 != argc )
{
printHelp( strAppName );
return -1;
}
cout << "Starting Image Search Server..." << endl;
// loading config file
cout << "Loading config file: " << argv[1] << endl;
FileStorage fs( argv[1], FileStorage::READ );
if( !fs.isOpened() )
{
cerr << "Failed to load config file" << endl;
return -1;
}
string strDBPath, strDBName, strSockName;
fs["dbpath"] >> strDBPath;
fs["dbname"] >> strDBName;
fs["socket"] >> strSockName;
fs.release();
CSearchEngine cCoverSearch;
// try loading the database
cout << "Database Path: " << strDBPath << endl;
cout << "Database Name: " << strDBName << endl;
cout << "Loading image database..." << endl;
if( 0 != cCoverSearch.LoadDB( strDBPath, strDBName, false ) )
{
// try creating the database
if( 0 != cCoverSearch.CreateDB( strDBPath, strDBName ) )
{
cerr << "Failed to create image database" << endl;
return -1;
}
else
{
cout << "Created image database" << endl;
}
}
else
{
cout << "Loaded image database" << endl;
}
cout << "Setting up listening socket..." << endl;
// create server side socket
int nSocketID = socket(AF_UNIX, SOCK_STREAM, 0);
if(nSocketID < 0)
{
cout << "Failed to create server socket" << endl;
return -1;
}
unlink( strSockName.c_str() );
// bind socket address to server
struct sockaddr_un sServSockAddr;
memset( &sServSockAddr, 0, sizeof(struct sockaddr_un) );
sServSockAddr.sun_family = AF_UNIX;
strncpy( sServSockAddr.sun_path, strSockName.c_str(), 108 );
if( 0 != bind( nSocketID, (struct sockaddr *)&sServSockAddr, sizeof(struct sockaddr_un) ) )
{
cout << "Failed to bind socket address to server" << endl;
return -1;
}
if( 0 != listen( nSocketID, 5 ) )
{
cout << "Failed to setup listen socket" << endl;
return -1;
}
cout << "Image Search Server is up and running..." << endl;
/* fork a daemon */
// check for incoming connection on socket
socklen_t nAddrLength;
struct sockaddr_un sCliSockAddr;
while( true )
{
nAddrLength = sizeof(sCliSockAddr);
int nConnectionID = accept( nSocketID, (struct sockaddr *)&sCliSockAddr, &nAddrLength );
// valid connection accepted
if( nConnectionID >= 0)
{
// parse client message
char szMsgBuff[256];
int nBytes = read(nConnectionID, szMsgBuff, 256);
szMsgBuff[nBytes] = 0;
// do message handling
char szCommand[25];
szCommand[0] = 0;
sscanf( szMsgBuff, "%s", szCommand);
if( 0 == strcmp( szCommand, "exit") )
{
cout << "Exit command received" << endl;
nBytes = snprintf( szMsgBuff, 256, "Image Search Server shutting down..." );
write( nConnectionID, szMsgBuff, nBytes );
// terminate client connection
close(nConnectionID);
break;
}
else if( 0 == strcmp( szCommand, "search") )
{
cout << "Search command received" << endl;
char szQueryPath[256];
sscanf( szMsgBuff, "%s%s", szCommand, szQueryPath );
vector< string > vecBestMatches;
if( 0 != cCoverSearch.SearchDB( szQueryPath, vecBestMatches ) )
{
cout << "Search command failed" << endl;
nBytes = snprintf( szMsgBuff, 256, "Search command failed" );
write( nConnectionID, szMsgBuff, nBytes );
}
else
{
nBytes = snprintf( szMsgBuff, 256, "%s", vecBestMatches.begin()->c_str() );
write( nConnectionID, szMsgBuff, nBytes );
}
}
// terminate client connection
close(nConnectionID);
}
}
cout << "Stopping Image Search Server..." << endl;
close( nSocketID );
unlink( strSockName.c_str() );
return 0;
}