Commit de1345f1 authored by captainwong's avatar captainwong

update

parent 040a0e9b
...@@ -324,7 +324,8 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg) ...@@ -324,7 +324,8 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
impl = new PrivateImpl(this); impl = new PrivateImpl(this);
impl->base = event_base_new(); impl->base = event_base_new();
if (!impl->base) { if (!impl->base) {
msg = "init libevent failed"; msg = name_ + " init libevent failed";
JLOG_CRTC(msg);
break; break;
} }
...@@ -341,8 +342,9 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg) ...@@ -341,8 +342,9 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
(const sockaddr*)(&sin), (const sockaddr*)(&sin),
sizeof(sin)); sizeof(sin));
if (!listener) { if (!listener) {
JLOG_CRTC("{} create listener failed", name_.data()); msg = name_ + " create listener failed";
exit(-1); JLOG_CRTC(msg);
break;
} }
evconnlistener_set_error_cb(listener, PrivateImpl::accpet_error_cb); evconnlistener_set_error_cb(listener, PrivateImpl::accpet_error_cb);
...@@ -406,17 +408,20 @@ void simple_libevent_server::stop() ...@@ -406,17 +408,20 @@ void simple_libevent_server::stop()
impl->base = nullptr; impl->base = nullptr;
} }
for (int i = 0; i < threadNum_; i++) { if (impl->workerThreadContexts) {
event_base_loopexit(impl->workerThreadContexts[i]->base, &tv); 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++) { delete impl->workerThreadContexts;
impl->workerThreadContexts[i]->thread.join();
event_base_free(impl->workerThreadContexts[i]->base);
delete impl->workerThreadContexts[i];
} }
delete impl->workerThreadContexts;
delete impl; delete impl;
impl = nullptr; impl = nullptr;
......
...@@ -83,7 +83,7 @@ static const char* const yahei = "Microsoft YaHei"; ...@@ -83,7 +83,7 @@ static const char* const yahei = "Microsoft YaHei";
inline QString color_value_to_string(int value) { inline QString color_value_to_string(int value) {
auto s = QString::number(value, 16); auto s = QString::number(value, 16);
if (s.length() == 1) { s += "0"; } if (s.length() == 1) { s.insert(0, '0'); }
return s; return s;
} }
...@@ -117,14 +117,14 @@ inline QString build_border_style(size_t border) { ...@@ -117,14 +117,14 @@ inline QString build_border_style(size_t border) {
} }
// font:[font_size]pt;font-family:[font_family]; // font:[font_size]pt;font-family:[font_family];
inline QString bulid_font_style(size_t font_size, QString font_family = def_font_families::yahei) { inline QString build_font_style(size_t font_size, QString font_family = def_font_families::yahei) {
return QString("font:") + QString::number(font_size) + QString("pt;") return QString("font:") + QString::number(font_size) + QString("pt;")
+ QString("font-family:") + font_family + QString(";"); + QString("font-family:") + font_family + QString(";");
} }
// color:#[color];font:[font_size]pt;font-family:[font_family]; // 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) { inline QString build_style(QColor color, size_t font_size, QString font_family = def_font_families::yahei) {
return build_color_style(color) + bulid_font_style(font_size, font_family); return build_color_style(color) + build_font_style(font_size, font_family);
} }
// background-color:#[color];color:#[color];font:[font_size]pt;font-family:[font_family];[border:[border]px;] // background-color:#[color];color:#[color];font:[font_size]pt;font-family:[font_family];[border:[border]px;]
......
#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();
}
#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{};
};
<?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>
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\View;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
...@@ -84,6 +85,7 @@ ...@@ -84,6 +85,7 @@
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\View;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
...@@ -97,6 +99,7 @@ ...@@ -97,6 +99,7 @@
<ClCompile Include="View\BgColorBtn.cpp" /> <ClCompile Include="View\BgColorBtn.cpp" />
<ClCompile Include="View\CheckBtn.cpp" /> <ClCompile Include="View\CheckBtn.cpp" />
<ClCompile Include="View\IconBtn.cpp" /> <ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\TextMenu.cpp" /> <ClCompile Include="View\TextMenu.cpp" />
<ClCompile Include="View\TitleBar.cpp" /> <ClCompile Include="View\TitleBar.cpp" />
<ClCompile Include="View\PageView.cpp" /> <ClCompile Include="View\PageView.cpp" />
...@@ -104,6 +107,7 @@ ...@@ -104,6 +107,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="resource.h" /> <ClInclude Include="resource.h" />
<QtMoc Include="View\ProgressDialog.h" />
<QtMoc Include="View\TextMenu.h" /> <QtMoc Include="View\TextMenu.h" />
<QtMoc Include="View\PageView.h" /> <QtMoc Include="View\PageView.h" />
<QtMoc Include="View\CheckBtn.h" /> <QtMoc Include="View\CheckBtn.h" />
...@@ -123,6 +127,9 @@ ...@@ -123,6 +127,9 @@
<ClInclude Include="qt_global.h" /> <ClInclude Include="qt_global.h" />
<ClInclude Include="signal_slot.h" /> <ClInclude Include="signal_slot.h" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<QtUic Include="View\ProgressDialog.ui" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')"> <ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" /> <Import Project="$(QtMsBuild)\qt.targets" />
......
...@@ -28,6 +28,11 @@ ...@@ -28,6 +28,11 @@
<Filter Include="View"> <Filter Include="View">
<UniqueIdentifier>{86380508-9436-40fd-8340-01eeed46e0e3}</UniqueIdentifier> <UniqueIdentifier>{86380508-9436-40fd-8340-01eeed46e0e3}</UniqueIdentifier>
</Filter> </Filter>
<Filter Include="Form Files">
<UniqueIdentifier>{99349809-55BA-4b9d-BF79-8FDBB0286EB3}</UniqueIdentifier>
<Extensions>ui</Extensions>
<ParseFiles>true</ParseFiles>
</Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="qt.cpp"> <ClCompile Include="qt.cpp">
...@@ -57,6 +62,9 @@ ...@@ -57,6 +62,9 @@
<ClCompile Include="View\TextMenu.cpp"> <ClCompile Include="View\TextMenu.cpp">
<Filter>View</Filter> <Filter>View</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="View\ProgressDialog.cpp">
<Filter>View</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="qt.h"> <ClInclude Include="qt.h">
...@@ -120,5 +128,13 @@ ...@@ -120,5 +128,13 @@
<QtMoc Include="View\TextMenu.h"> <QtMoc Include="View\TextMenu.h">
<Filter>View</Filter> <Filter>View</Filter>
</QtMoc> </QtMoc>
<QtMoc Include="View\ProgressDialog.h">
<Filter>View</Filter>
</QtMoc>
</ItemGroup>
<ItemGroup>
<QtUic Include="View\ProgressDialog.ui">
<Filter>Form Files</Filter>
</QtUic>
</ItemGroup> </ItemGroup>
</Project> </Project>
\ No newline at end of file
<?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
<?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
<?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
<?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
<?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
<?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
...@@ -323,6 +323,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_client_and_server", "t ...@@ -323,6 +323,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_client_and_server", "t
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_libevent_clients", "simple_libevent_clients\simple_libevent_clients.vcxproj", "{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_libevent_clients", "simple_libevent_clients\simple_libevent_clients.vcxproj", "{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}"
EndProject 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 Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM Debug|ARM = Debug|ARM
...@@ -907,6 +911,30 @@ Global ...@@ -907,6 +911,30 @@ Global
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}.Release|x64.Build.0 = Release|x64 {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.ActiveCfg = Release|Win32
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B}.Release|x86.Build.0 = 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 EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
...@@ -984,6 +1012,8 @@ Global ...@@ -984,6 +1012,8 @@ Global
{C5A52A4B-AC5C-48FA-8356-2194170E674C} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A} {C5A52A4B-AC5C-48FA-8356-2194170E674C} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{A795FC0D-F05B-4B49-9957-E4A07A32427F} = {77DBD16D-112C-448D-BA6A-CE566A9331FC} {A795FC0D-F05B-4B49-9957-E4A07A32427F} = {77DBD16D-112C-448D-BA6A-CE566A9331FC}
{67920EB2-4D8B-4B74-9EC0-A62DEF03635B} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A} {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 EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D} SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment