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
de1345f1
Commit
de1345f1
authored
Dec 07, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
040a0e9b
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
614 additions
and
14 deletions
+614
-14
simple_libevent_server.cpp
jlib/net/simple_libevent_server.cpp
+16
-11
QtStylesheet.h
jlib/qt/QtStylesheet.h
+3
-3
ProgressDialog.cpp
jlib/qt/View/ProgressDialog.cpp
+44
-0
ProgressDialog.h
jlib/qt/View/ProgressDialog.h
+34
-0
ProgressDialog.ui
jlib/qt/View/ProgressDialog.ui
+52
-0
qt.vcxproj
jlib/qt/qt.vcxproj
+7
-0
qt.vcxproj.filters
jlib/qt/qt.vcxproj.filters
+16
-0
simple_libevent_client_md.vcxproj
...mple_libevent_client_md/simple_libevent_client_md.vcxproj
+172
-0
simple_libevent_client_md.vcxproj.filters
...event_client_md/simple_libevent_client_md.vcxproj.filters
+30
-0
simple_libevent_client_md.vcxproj.user
...libevent_client_md/simple_libevent_client_md.vcxproj.user
+4
-0
simple_libevent_server_md.vcxproj
...mple_libevent_server_md/simple_libevent_server_md.vcxproj
+172
-0
simple_libevent_server_md.vcxproj.filters
...event_server_md/simple_libevent_server_md.vcxproj.filters
+30
-0
simple_libevent_server_md.vcxproj.user
...libevent_server_md/simple_libevent_server_md.vcxproj.user
+4
-0
test.sln
test/test.sln
+30
-0
No files found.
jlib/net/simple_libevent_server.cpp
View file @
de1345f1
...
...
@@ -324,7 +324,8 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
impl
=
new
PrivateImpl
(
this
);
impl
->
base
=
event_base_new
();
if
(
!
impl
->
base
)
{
msg
=
"init libevent failed"
;
msg
=
name_
+
" init libevent failed"
;
JLOG_CRTC
(
msg
);
break
;
}
...
...
@@ -341,8 +342,9 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
(
const
sockaddr
*
)(
&
sin
),
sizeof
(
sin
));
if
(
!
listener
)
{
JLOG_CRTC
(
"{} create listener failed"
,
name_
.
data
());
exit
(
-
1
);
msg
=
name_
+
" create listener failed"
;
JLOG_CRTC
(
msg
);
break
;
}
evconnlistener_set_error_cb
(
listener
,
PrivateImpl
::
accpet_error_cb
);
...
...
@@ -406,17 +408,20 @@ void simple_libevent_server::stop()
impl
->
base
=
nullptr
;
}
for
(
int
i
=
0
;
i
<
threadNum_
;
i
++
)
{
event_base_loopexit
(
impl
->
workerThreadContexts
[
i
]
->
base
,
&
tv
);
}
if
(
impl
->
workerThreadContexts
)
{
for
(
int
i
=
0
;
i
<
threadNum_
;
i
++
)
{
event_base_loopexit
(
impl
->
workerThreadContexts
[
i
]
->
base
,
&
tv
);
}
for
(
int
i
=
0
;
i
<
threadNum_
;
i
++
)
{
impl
->
workerThreadContexts
[
i
]
->
thread
.
join
();
event_base_free
(
impl
->
workerThreadContexts
[
i
]
->
base
);
delete
impl
->
workerThreadContexts
[
i
];
}
for
(
int
i
=
0
;
i
<
threadNum_
;
i
++
)
{
impl
->
workerThreadContexts
[
i
]
->
thread
.
join
();
event_base_free
(
impl
->
workerThreadContexts
[
i
]
->
base
);
delete
impl
->
workerThreadContexts
[
i
];
delete
impl
->
workerThreadContexts
;
}
delete
impl
->
workerThreadContexts
;
delete
impl
;
impl
=
nullptr
;
...
...
jlib/qt/QtStylesheet.h
View file @
de1345f1
...
...
@@ -83,7 +83,7 @@ static const char* const yahei = "Microsoft YaHei";
inline
QString
color_value_to_string
(
int
value
)
{
auto
s
=
QString
::
number
(
value
,
16
);
if
(
s
.
length
()
==
1
)
{
s
+=
"0"
;
}
if
(
s
.
length
()
==
1
)
{
s
.
insert
(
0
,
'0'
)
;
}
return
s
;
}
...
...
@@ -117,14 +117,14 @@ inline QString build_border_style(size_t border) {
}
// font:[font_size]pt;font-family:[font_family];
inline
QString
bu
li
d_font_style
(
size_t
font_size
,
QString
font_family
=
def_font_families
::
yahei
)
{
inline
QString
bu
il
d_font_style
(
size_t
font_size
,
QString
font_family
=
def_font_families
::
yahei
)
{
return
QString
(
"font:"
)
+
QString
::
number
(
font_size
)
+
QString
(
"pt;"
)
+
QString
(
"font-family:"
)
+
font_family
+
QString
(
";"
);
}
// color:#[color];font:[font_size]pt;font-family:[font_family];
inline
QString
build_style
(
QColor
color
,
size_t
font_size
,
QString
font_family
=
def_font_families
::
yahei
)
{
return
build_color_style
(
color
)
+
bu
li
d_font_style
(
font_size
,
font_family
);
return
build_color_style
(
color
)
+
bu
il
d_font_style
(
font_size
,
font_family
);
}
// background-color:#[color];color:#[color];font:[font_size]pt;font-family:[font_family];[border:[border]px;]
...
...
jlib/qt/View/ProgressDialog.cpp
0 → 100644
View file @
de1345f1
#include "ProgressDialog.h"
#include "ui_ProgressDialog.h"
ProgressDialog
::
ProgressDialog
(
QWidget
*
parent
,
bool
enable_close
)
:
QDialog
(
parent
)
{
ui
=
new
Ui
::
ProgressDialog
();
ui
->
setupUi
(
this
);
setWindowFlags
(
windowFlags
()
&
~
Qt
::
WindowContextHelpButtonHint
);
if
(
!
enable_close
)
{
setWindowFlags
(
windowFlags
()
&
~
Qt
::
WindowCloseButtonHint
);
}
setWindowFlag
(
Qt
::
MSWindowsFixedSizeDialogHint
);
connect
(
this
,
&
ProgressDialog
::
sig_progress
,
this
,
&
ProgressDialog
::
slot_progress
,
Qt
::
QueuedConnection
);
connect
(
this
,
&
ProgressDialog
::
sig_done
,
this
,
&
ProgressDialog
::
slot_done
,
Qt
::
QueuedConnection
);
timer
.
start
();
startTimer
(
500
);
}
ProgressDialog
::~
ProgressDialog
()
{
delete
ui
;
}
void
ProgressDialog
::
timerEvent
(
QTimerEvent
*
e
)
{
auto
secs
=
timer
.
elapsed
()
/
1000
;
char
txt
[
1024
];
sprintf
(
txt
,
"%02d:%02d"
,
int
(
secs
/
60
),
int
(
secs
%
60
));
ui
->
labelTime
->
setText
(
txt
);
}
void
ProgressDialog
::
slot_progress
(
int
pos
)
{
ui
->
progressBar
->
setValue
(
pos
);
}
void
ProgressDialog
::
slot_done
()
{
accept
();
}
jlib/qt/View/ProgressDialog.h
0 → 100644
View file @
de1345f1
#pragma once
#include <QDialog>
#include <QElapsedTimer>
#include <QTimerEvent>
namespace
Ui
{
class
ProgressDialog
;
}
class
ProgressDialog
:
public
QDialog
{
Q_OBJECT
public
:
ProgressDialog
(
QWidget
*
parent
=
Q_NULLPTR
,
bool
enable_close
=
true
);
~
ProgressDialog
();
// caller call this to update progress or close dialog
signals
:
void
sig_progress
(
int
pos
);
void
sig_done
();
protected
:
virtual
void
timerEvent
(
QTimerEvent
*
e
)
override
;
protected
slots
:
void
slot_progress
(
int
pos
);
void
slot_done
();
private
:
Ui
::
ProgressDialog
*
ui
{};
QElapsedTimer
timer
{};
};
jlib/qt/View/ProgressDialog.ui
0 → 100644
View file @
de1345f1
<?xml version="1.0" encoding="UTF-8"?>
<ui
version=
"4.0"
>
<class>
ProgressDialog
</class>
<widget
class=
"QDialog"
name=
"ProgressDialog"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
529
</width>
<height>
23
</height>
</rect>
</property>
<property
name=
"windowTitle"
>
<string>
ProgressDialog
</string>
</property>
<property
name=
"modal"
>
<bool>
true
</bool>
</property>
<widget
class=
"QProgressBar"
name=
"progressBar"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
481
</width>
<height>
23
</height>
</rect>
</property>
<property
name=
"maximum"
>
<number>
1000
</number>
</property>
<property
name=
"value"
>
<number>
0
</number>
</property>
</widget>
<widget
class=
"QLabel"
name=
"labelTime"
>
<property
name=
"geometry"
>
<rect>
<x>
490
</x>
<y>
0
</y>
<width>
41
</width>
<height>
21
</height>
</rect>
</property>
<property
name=
"text"
>
<string>
00:00
</string>
</property>
</widget>
</widget>
<layoutdefault
spacing=
"6"
margin=
"11"
/>
<resources/>
<connections/>
</ui>
jlib/qt/qt.vcxproj
View file @
de1345f1
...
...
@@ -70,6 +70,7 @@
<RuntimeLibrary>
MultiThreadedDebugDLL
</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>
true
</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>
QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<AdditionalIncludeDirectories>
.\View;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>
Windows
</SubSystem>
...
...
@@ -84,6 +85,7 @@
<RuntimeLibrary>
MultiThreadedDLL
</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>
true
</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>
QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<AdditionalIncludeDirectories>
.\View;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>
Windows
</SubSystem>
...
...
@@ -97,6 +99,7 @@
<ClCompile
Include=
"View\BgColorBtn.cpp"
/>
<ClCompile
Include=
"View\CheckBtn.cpp"
/>
<ClCompile
Include=
"View\IconBtn.cpp"
/>
<ClCompile
Include=
"View\ProgressDialog.cpp"
/>
<ClCompile
Include=
"View\TextMenu.cpp"
/>
<ClCompile
Include=
"View\TitleBar.cpp"
/>
<ClCompile
Include=
"View\PageView.cpp"
/>
...
...
@@ -104,6 +107,7 @@
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"resource.h"
/>
<QtMoc
Include=
"View\ProgressDialog.h"
/>
<QtMoc
Include=
"View\TextMenu.h"
/>
<QtMoc
Include=
"View\PageView.h"
/>
<QtMoc
Include=
"View\CheckBtn.h"
/>
...
...
@@ -123,6 +127,9 @@
<ClInclude
Include=
"qt_global.h"
/>
<ClInclude
Include=
"signal_slot.h"
/>
</ItemGroup>
<ItemGroup>
<QtUic
Include=
"View\ProgressDialog.ui"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Condition=
"Exists('$(QtMsBuild)\qt.targets')"
>
<Import
Project=
"$(QtMsBuild)\qt.targets"
/>
...
...
jlib/qt/qt.vcxproj.filters
View file @
de1345f1
...
...
@@ -28,6 +28,11 @@
<Filter
Include=
"View"
>
<UniqueIdentifier>
{86380508-9436-40fd-8340-01eeed46e0e3}
</UniqueIdentifier>
</Filter>
<Filter
Include=
"Form Files"
>
<UniqueIdentifier>
{99349809-55BA-4b9d-BF79-8FDBB0286EB3}
</UniqueIdentifier>
<Extensions>
ui
</Extensions>
<ParseFiles>
true
</ParseFiles>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"qt.cpp"
>
...
...
@@ -57,6 +62,9 @@
<ClCompile
Include=
"View\TextMenu.cpp"
>
<Filter>
View
</Filter>
</ClCompile>
<ClCompile
Include=
"View\ProgressDialog.cpp"
>
<Filter>
View
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"qt.h"
>
...
...
@@ -120,5 +128,13 @@
<QtMoc
Include=
"View\TextMenu.h"
>
<Filter>
View
</Filter>
</QtMoc>
<QtMoc
Include=
"View\ProgressDialog.h"
>
<Filter>
View
</Filter>
</QtMoc>
</ItemGroup>
<ItemGroup>
<QtUic
Include=
"View\ProgressDialog.ui"
>
<Filter>
Form Files
</Filter>
</QtUic>
</ItemGroup>
</Project>
\ No newline at end of file
test/simple_libevent_client_md/simple_libevent_client_md.vcxproj
0 → 100644
View file @
de1345f1
<?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>
<ItemGroup>
<ClCompile
Include=
"..\..\jlib\net\simple_libevent_client.cpp"
/>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_client.h"
/>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_micros.h"
/>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<Keyword>
Win32Proj
</Keyword>
<ProjectGuid>
{206286cc-d1f8-4815-aa3a-7e8108aced87}
</ProjectGuid>
<RootNamespace>
simplelibeventclientmd
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</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;_LIB;SIMPLELIBEVENTCLIENTLIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
NotUsing
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>
$(DEVLIBS)\libevent-2.1.12-stable-install\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<DebugInformationFormat>
ProgramDatabase
</DebugInformationFormat>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>
$(DEVLIBS)\libevent-2.1.12-stable-install\lib\event_core.lib;%(AdditionalDependencies)
</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;NDEBUG;_LIB;SIMPLELIBEVENTCLIENTLIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
NotUsing
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>
$(DEVLIBS)\libevent-2.1.12-stable-install\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>
$(DEVLIBS)\libevent-2.1.12-stable-install\lib\event_core.lib;%(AdditionalDependencies)
</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_LIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
Use
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>
</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;_LIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
Use
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
test/simple_libevent_client_md/simple_libevent_client_md.vcxproj.filters
0 → 100644
View file @
de1345f1
<?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=
"..\..\jlib\net\simple_libevent_client.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_client.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_micros.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
</ItemGroup>
</Project>
\ No newline at end of file
test/simple_libevent_client_md/simple_libevent_client_md.vcxproj.user
0 → 100644
View file @
de1345f1
<?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/simple_libevent_server_md/simple_libevent_server_md.vcxproj
0 → 100644
View file @
de1345f1
<?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>
<ItemGroup>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_micros.h"
/>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_server.h"
/>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\jlib\net\simple_libevent_server.cpp"
/>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<Keyword>
Win32Proj
</Keyword>
<ProjectGuid>
{09bc4a4a-0c52-4cb0-892a-ec6bfac2dfb6}
</ProjectGuid>
<RootNamespace>
simplelibeventservermd
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
StaticLibrary
</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;_LIB;SIMPLELIBEVENTSERVERLIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
NotUsing
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>
$(DEVLIBS)\libevent-2.1.12-stable-install\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<DebugInformationFormat>
ProgramDatabase
</DebugInformationFormat>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>
$(DEVLIBS)\libevent-2.1.12-stable-install\lib\event_core.lib;%(AdditionalDependencies)
</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
WIN32;NDEBUG;_LIB;SIMPLELIBEVENTSERVERLIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
NotUsing
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>
$(DEVLIBS)\libevent-2.1.12-stable-install\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>
$(DEVLIBS)\libevent-2.1.12-stable-install\lib\event_core.lib;%(AdditionalDependencies)
</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_LIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
Use
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>
</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;_LIB;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
<PrecompiledHeader>
Use
</PrecompiledHeader>
<PrecompiledHeaderFile>
pch.h
</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
test/simple_libevent_server_md/simple_libevent_server_md.vcxproj.filters
0 → 100644
View file @
de1345f1
<?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>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_micros.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\net\simple_libevent_server.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\jlib\net\simple_libevent_server.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
test/simple_libevent_server_md/simple_libevent_server_md.vcxproj.user
0 → 100644
View file @
de1345f1
<?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 @
de1345f1
...
...
@@ -323,6 +323,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_client_and_server", "t
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_libevent_clients", "simple_libevent_clients\simple_libevent_clients.vcxproj", "{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_libevent_client_md", "simple_libevent_client_md\simple_libevent_client_md.vcxproj", "{206286CC-D1F8-4815-AA3A-7E8108ACED87}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_libevent_server_md", "simple_libevent_server_md\simple_libevent_server_md.vcxproj", "{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
...
...
@@ -907,6 +911,30 @@ Global
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}.Release|x64.Build.0 = Release|x64
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}.Release|x86.ActiveCfg = Release|Win32
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}.Release|x86.Build.0 = Release|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|ARM.ActiveCfg = Debug|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|ARM64.ActiveCfg = Debug|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|x64.ActiveCfg = Debug|x64
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|x64.Build.0 = Debug|x64
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|x86.ActiveCfg = Debug|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Debug|x86.Build.0 = Debug|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|ARM.ActiveCfg = Release|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|ARM64.ActiveCfg = Release|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|x64.ActiveCfg = Release|x64
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|x64.Build.0 = Release|x64
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|x86.ActiveCfg = Release|Win32
{206286CC-D1F8-4815-AA3A-7E8108ACED87}.Release|x86.Build.0 = Release|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|ARM.ActiveCfg = Debug|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|ARM64.ActiveCfg = Debug|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|x64.ActiveCfg = Debug|x64
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|x64.Build.0 = Debug|x64
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|x86.ActiveCfg = Debug|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Debug|x86.Build.0 = Debug|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|ARM.ActiveCfg = Release|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|ARM64.ActiveCfg = Release|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|x64.ActiveCfg = Release|x64
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|x64.Build.0 = Release|x64
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|x86.ActiveCfg = Release|Win32
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
@@ -984,6 +1012,8 @@ Global
{C5A52A4B-AC5C-48FA-8356-2194170E674C} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{A795FC0D-F05B-4B49-9957-E4A07A32427F} = {77DBD16D-112C-448D-BA6A-CE566A9331FC}
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{206286CC-D1F8-4815-AA3A-7E8108ACED87} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{09BC4A4A-0C52-4CB0-892A-EC6BFAC2DFB6} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
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