Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
de679daa
Commit
de679daa
authored
Dec 20, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sudoku server tested with telnet
parent
ab619ce1
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
489 additions
and
17 deletions
+489
-17
sudoku.h
jlib/misc/sudoku.h
+17
-13
simple_libevent_server.cpp
jlib/net/simple_libevent_server.cpp
+3
-3
simple_libevent_server.h
jlib/net/simple_libevent_server.h
+2
-1
sudoku_client.vcxproj
test/sudoku_client/sudoku_client.vcxproj
+150
-0
sudoku_client.vcxproj.filters
test/sudoku_client/sudoku_client.vcxproj.filters
+17
-0
sudoku_client.vcxproj.user
test/sudoku_client/sudoku_client.vcxproj.user
+4
-0
sudoku_server.cpp
test/sudoku_server/sudoku_server.cpp
+92
-0
sudoku_server.vcxproj
test/sudoku_server/sudoku_server.vcxproj
+148
-0
sudoku_server.vcxproj.filters
test/sudoku_server/sudoku_server.vcxproj.filters
+22
-0
sudoku_server.vcxproj.user
test/sudoku_server/sudoku_server.vcxproj.user
+4
-0
test.sln
test/test.sln
+30
-0
No files found.
jlib/misc/sudoku.h
View file @
de679daa
...
...
@@ -203,11 +203,22 @@ inline bool search(bool cells[N][9], Helper* helper) {
return
false
;
}
inline
std
::
string
cells_to_grid
(
bool
cells
[
N
][
9
])
{
std
::
string
grid
(
81
,
'.'
);
for
(
int
i
=
0
;
i
<
N
;
i
++
)
{
int
val
=
cell_val
(
cells
,
i
);
if
(
1
<=
val
&&
val
<=
9
)
{
grid
[
i
]
=
val
+
'0'
;
}
}
return
grid
;
}
////////////////////////// 求数独单解 ///////////////////////////////
// 解数独,找到一个解就停止
inline
bool
solve
(
const
std
::
string
&
grid
,
Helper
*
helper
=
nullptr
)
{
inline
bool
solve
(
const
std
::
string
&
grid
,
std
::
string
&
solved_grid
,
Helper
*
helper
=
nullptr
)
{
if
(
!
helper
)
{
static
Helper
h
;
helper
=
&
h
;
...
...
@@ -216,23 +227,16 @@ inline bool solve(const std::string& grid, Helper* helper = nullptr) {
if
(
!
read_grid
(
grid
,
cells
,
helper
))
{
return
false
;
}
return
search
(
cells
,
helper
);
if
(
search
(
cells
,
helper
))
{
solved_grid
=
cells_to_grid
(
cells
);
return
true
;
}
return
false
;
}
////////////////////////// 求数独多解 ///////////////////////////////
inline
std
::
string
cells_to_grid
(
bool
cells
[
N
][
9
])
{
std
::
string
grid
(
81
,
'.'
);
for
(
int
i
=
0
;
i
<
N
;
i
++
)
{
int
val
=
cell_val
(
cells
,
i
);
if
(
1
<=
val
&&
val
<=
9
)
{
grid
[
i
]
=
val
+
'0'
;
}
}
return
grid
;
}
typedef
void
(
*
OnSolved
)(
const
std
::
string
&
grid
);
inline
int
search_n
(
bool
cells
[
N
][
9
],
OnSolved
on_solved
,
int
solves
,
int
max_solves
,
Helper
*
helper
)
{
...
...
jlib/net/simple_libevent_server.cpp
View file @
de679daa
...
...
@@ -146,7 +146,7 @@ struct simple_libevent_server::PrivateImpl
char
buff
[
4096
];
auto
input
=
bufferevent_get_input
(
bev
);
simple_libevent_server
*
server
=
(
simple_libevent_server
*
)
user_data
;
if
(
server
->
userData_
&&
server
->
onMsg_
)
{
if
(
/*server->userData_ && */
server
->
onMsg_
)
{
int
fd
=
(
int
)
bufferevent_getfd
(
bev
);
BaseClient
*
client
=
nullptr
;
{
...
...
@@ -189,7 +189,7 @@ struct simple_libevent_server::PrivateImpl
msg
+=
strerror
(
errno
);
}
if
(
server
->
userData_
&&
server
->
onConn_
)
{
if
(
/*server->userData_ && */
server
->
onConn_
)
{
int
fd
=
(
int
)
bufferevent_getfd
(
bev
);
BaseClient
*
client
=
nullptr
;
{
...
...
@@ -292,7 +292,7 @@ struct simple_libevent_server::PrivateImpl
bufferevent_setcb
(
bev
,
WorkerThreadContext
::
readcb
,
nullptr
,
WorkerThreadContext
::
eventcb
,
server
);
bufferevent_enable
(
bev
,
EV_WRITE
|
EV_READ
);
if
(
server
->
userData_
&&
server
->
onConn_
)
{
if
(
/*server->userData_ && */
server
->
onConn_
)
{
server
->
onConn_
(
true
,
""
,
client
,
server
->
userData_
);
}
...
...
jlib/net/simple_libevent_server.h
View file @
de679daa
...
...
@@ -42,7 +42,8 @@ public:
static
BaseClient
*
createDefaultClient
(
int
fd
,
void
*
bev
);
void
send
(
const
void
*
data
,
size_t
len
);
void
shutdown
(
int
what
=
1
);
// 0: recv, 1: send, 2: both
void
shutdown
(
int
what
=
0
);
void
updateLastTimeComm
();
int
fd
=
0
;
...
...
test/sudoku_client/sudoku_client.vcxproj
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<Keyword>
Win32Proj
</Keyword>
<ProjectGuid>
{4be991d8-f6bb-47c7-b4de-3767de77ddb6}
</ProjectGuid>
<RootNamespace>
sudokuclient
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
>
</ImportGroup>
<ImportGroup
Label=
"Shared"
>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<PropertyGroup
Label=
"UserMacros"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup></ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
test/sudoku_client/sudoku_client.vcxproj.filters
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"4.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup>
<Filter
Include=
"Source Files"
>
<UniqueIdentifier>
{4FC737F1-C7A5-4376-A066-2A32D752A2FF}
</UniqueIdentifier>
<Extensions>
cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
</Extensions>
</Filter>
<Filter
Include=
"Header Files"
>
<UniqueIdentifier>
{93995380-89BD-4b04-88EB-625FBE52EBFB}
</UniqueIdentifier>
<Extensions>
h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
</Extensions>
</Filter>
<Filter
Include=
"Resource Files"
>
<UniqueIdentifier>
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
</UniqueIdentifier>
<Extensions>
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
</Extensions>
</Filter>
</ItemGroup>
</Project>
\ No newline at end of file
test/sudoku_client/sudoku_client.vcxproj.user
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
/>
</Project>
\ No newline at end of file
test/sudoku_server/sudoku_server.cpp
0 → 100644
View file @
de679daa
#include "../../jlib/net/simple_libevent_server.h"
#include "../../jlib/misc/sudoku.h"
#include "../../jlib/log2.h"
using
namespace
jlib
::
net
;
using
namespace
jlib
::
misc
::
sudoku
;
// proto: 89 bytes
// [id:] puzzle \r\n
// n 81 2
Helper
helper
{};
bool
processRequest
(
simple_libevent_server
::
BaseClient
*
client
,
const
std
::
string
&
request
)
{
std
::
string
id
,
puzzle
,
result
,
response
;
std
::
string
::
const_iterator
colon
=
std
::
find
(
request
.
begin
(),
request
.
end
(),
':'
);
if
(
colon
!=
request
.
end
())
{
id
.
assign
(
request
.
cbegin
(),
colon
);
puzzle
.
assign
(
colon
+
1
,
request
.
cend
());
}
else
{
puzzle
=
request
;
}
if
(
puzzle
.
size
()
==
81
)
{
if
(
!
solve
(
puzzle
,
result
,
&
helper
))
{
result
=
"No solution!"
;
}
if
(
id
.
empty
())
{
response
=
result
+
"
\r\n
"
;
}
else
{
response
=
id
+
":"
+
result
+
"
\r\n
"
;
}
client
->
send
(
response
.
c_str
(),
response
.
size
());
return
true
;
}
else
{
return
false
;
}
}
size_t
onMessageCallback
(
const
char
*
data
,
size_t
len
,
simple_libevent_server
::
BaseClient
*
client
,
void
*
user_data
)
{
size_t
ate
=
0
;
while
(
len
-
ate
>=
81
+
2
)
{
const
char
*
crlf
=
strstr
(
data
+
ate
,
"
\r\n
"
);
if
(
crlf
)
{
std
::
string
request
(
data
+
ate
,
crlf
);
ate
=
crlf
-
data
+
2
;
if
(
!
processRequest
(
client
,
request
))
{
std
::
string
response
(
"Bad Request!
\r\n
"
);
client
->
send
(
response
.
c_str
(),
response
.
size
());
client
->
shutdown
();
break
;
}
}
else
if
(
len
-
ate
>
100
)
{
std
::
string
resp
(
"Id too long!
\r\n
"
);
client
->
send
(
resp
.
c_str
(),
resp
.
size
());
client
->
shutdown
();
break
;
}
else
{
break
;
}
}
return
ate
;
}
int
main
(
int
argc
,
char
**
argv
)
{
int
port
=
9981
;
if
(
argc
>
1
)
{
port
=
atoi
(
argv
[
1
]);
}
jlib
::
init_logger
(
L"sudoku_server"
);
simple_libevent_server
server
;
server
.
setThreadNum
((
int
)
std
::
thread
::
hardware_concurrency
());
server
.
setOnMsgCallback
(
onMessageCallback
);
server
.
setClientMaxIdleTime
(
100
);
std
::
string
msg
;
if
(
!
server
.
start
(
port
,
msg
))
{
JLOG_CRTC
(
msg
);
return
-
1
;
}
while
(
1
)
{
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
10
));
}
}
\ No newline at end of file
test/sudoku_server/sudoku_server.vcxproj
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<Keyword>
Win32Proj
</Keyword>
<ProjectGuid>
{315e56be-814b-4b1c-87a3-23c23a4f04b4}
</ProjectGuid>
<RootNamespace>
sudokuserver
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
>
</ImportGroup>
<ImportGroup
Label=
"Shared"
>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<PropertyGroup
Label=
"UserMacros"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
<AdditionalDependencies>
$(SolutionDir)$(Configuration)\simple_libevent_server_md.lib;%(AdditionalDependencies)
</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"sudoku_server.cpp"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
test/sudoku_server/sudoku_server.vcxproj.filters
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"4.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup>
<Filter
Include=
"Source Files"
>
<UniqueIdentifier>
{4FC737F1-C7A5-4376-A066-2A32D752A2FF}
</UniqueIdentifier>
<Extensions>
cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
</Extensions>
</Filter>
<Filter
Include=
"Header Files"
>
<UniqueIdentifier>
{93995380-89BD-4b04-88EB-625FBE52EBFB}
</UniqueIdentifier>
<Extensions>
h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
</Extensions>
</Filter>
<Filter
Include=
"Resource Files"
>
<UniqueIdentifier>
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
</UniqueIdentifier>
<Extensions>
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"sudoku_server.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
test/sudoku_server/sudoku_server.vcxproj.user
0 → 100644
View file @
de679daa
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
/>
</Project>
\ No newline at end of file
test/test.sln
View file @
de679daa
...
...
@@ -333,6 +333,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "misc_tests", "misc_tests",
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_sudoku", "test_sudoku\test_sudoku.vcxproj", "{0948E69C-8D39-4C84-853F-9BEDAE74F1BB}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sudoku_server", "sudoku_server\sudoku_server.vcxproj", "{315E56BE-814B-4B1C-87A3-23C23A4F04B4}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sudoku_client", "sudoku_client\sudoku_client.vcxproj", "{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
...
...
@@ -965,6 +969,30 @@ Global
{0948E69C-8D39-4C84-853F-9BEDAE74F1BB}.Release|x64.Build.0 = Release|x64
{0948E69C-8D39-4C84-853F-9BEDAE74F1BB}.Release|x86.ActiveCfg = Release|Win32
{0948E69C-8D39-4C84-853F-9BEDAE74F1BB}.Release|x86.Build.0 = Release|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|ARM.ActiveCfg = Debug|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|ARM64.ActiveCfg = Debug|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|x64.ActiveCfg = Debug|x64
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|x64.Build.0 = Debug|x64
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|x86.ActiveCfg = Debug|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Debug|x86.Build.0 = Debug|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|ARM.ActiveCfg = Release|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|ARM64.ActiveCfg = Release|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|x64.ActiveCfg = Release|x64
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|x64.Build.0 = Release|x64
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|x86.ActiveCfg = Release|Win32
{315E56BE-814B-4B1C-87A3-23C23A4F04B4}.Release|x86.Build.0 = Release|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|ARM.ActiveCfg = Debug|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|ARM64.ActiveCfg = Debug|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|x64.ActiveCfg = Debug|x64
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|x64.Build.0 = Debug|x64
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|x86.ActiveCfg = Debug|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Debug|x86.Build.0 = Debug|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|ARM.ActiveCfg = Release|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|ARM64.ActiveCfg = Release|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|x64.ActiveCfg = Release|x64
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|x64.Build.0 = Release|x64
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|x86.ActiveCfg = Release|Win32
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
@@ -1047,6 +1075,8 @@ Global
{8729B156-5936-49EE-97D6-072312774B99} = {21DC893D-AB0B-48E1-9E23-069A025218D9}
{2C706FD2-D417-43C4-B393-68B58A05E26B} = {21DC893D-AB0B-48E1-9E23-069A025218D9}
{0948E69C-8D39-4C84-853F-9BEDAE74F1BB} = {2C706FD2-D417-43C4-B393-68B58A05E26B}
{315E56BE-814B-4B1C-87A3-23C23A4F04B4} = {77DBD16D-112C-448D-BA6A-CE566A9331FC}
{4BE991D8-F6BB-47C7-B4DE-3767DE77DDB6} = {77DBD16D-112C-448D-BA6A-CE566A9331FC}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment