mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-11 16:08:41 +00:00
init
This commit is contained in:
commit
0fe5f24b53
37
.gitattributes
vendored
Normal file
37
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
* text=false
|
||||
*.php ident
|
||||
|
||||
# Force the following filetypes to have unix eols, so Windows does not break them
|
||||
*.php text eol=lf
|
||||
*.js text eol=lf
|
||||
*.sh text eol=lf
|
||||
*.css text eol=lf
|
||||
*.md text eol=lf
|
||||
*.txt text eol=lf
|
||||
*.htaccess text eol=lf
|
||||
*.json text eol=lf
|
||||
*.c text eol=lf
|
||||
*.cpp text eol=lf
|
||||
*.h text eol=lf
|
||||
|
||||
*.png binary
|
||||
*.jpg binary
|
||||
*.jpeg binary
|
||||
*.gif binary
|
||||
*.ico binary
|
||||
*.mov binary
|
||||
*.mp4 binary
|
||||
*.mp3 binary
|
||||
*.flv binary
|
||||
*.fla binary
|
||||
*.swf binary
|
||||
*.gz binary
|
||||
*.zip binary
|
||||
*.7z binary
|
||||
*.ttf binary
|
||||
*.eot binary
|
||||
*.woff binary
|
||||
*.pyc binary
|
||||
*.pdf binary
|
||||
*.dat binary
|
||||
*.z binary
|
||||
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.vs
|
||||
obj/
|
||||
*.cache
|
||||
.directory
|
||||
bin/Debug
|
||||
x64/Debug
|
||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "app/server/cOMS"]
|
||||
path = app/server/cOMS
|
||||
url = https://github.com/Karaka-Management/cOMS.git
|
||||
14
LICENSE.txt
Normal file
14
LICENSE.txt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
The OMS License 1.0
|
||||
|
||||
Copyright (c) <Dennis Eichhorn> All Rights Reserved
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
BY CONTRIBUTING YOU AUTOMATICALLY ACCEPT THE INDIVIDUAL CONTRIBUTOR LICENSE
|
||||
AGREEMENT 1.0 ("CLA") INCLUDED IN THIS REPOSITORY.
|
||||
9
app/local/App.xaml
Normal file
9
app/local/App.xaml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<Application x:Class="OnlineResourceWatcherLocalApp.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:OnlineResourceWatcherLocalApp"
|
||||
StartupUri="MainWindow.xaml">
|
||||
<Application.Resources>
|
||||
|
||||
</Application.Resources>
|
||||
</Application>
|
||||
17
app/local/App.xaml.cs
Normal file
17
app/local/App.xaml.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace OnlineResourceWatcherLocalApp
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for App.xaml
|
||||
/// </summary>
|
||||
public partial class App : Application
|
||||
{
|
||||
}
|
||||
}
|
||||
10
app/local/AssemblyInfo.cs
Normal file
10
app/local/AssemblyInfo.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System.Windows;
|
||||
|
||||
[assembly: ThemeInfo(
|
||||
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||
//(used if a resource is not found in the page,
|
||||
// or application resource dictionaries)
|
||||
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||
//(used if a resource is not found in the page,
|
||||
// app, or any theme specific resource dictionaries)
|
||||
)]
|
||||
12
app/local/MainWindow.xaml
Normal file
12
app/local/MainWindow.xaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<Window x:Class="OnlineResourceWatcherLocalApp.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:OnlineResourceWatcherLocalApp"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
<Grid>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
28
app/local/MainWindow.xaml.cs
Normal file
28
app/local/MainWindow.xaml.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace OnlineResourceWatcherLocalApp
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for MainWindow.xaml
|
||||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
16
app/local/OnlineResourceWatcherLocalApp.csproj
Normal file
16
app/local/OnlineResourceWatcherLocalApp.csproj
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWPF>true</UseWPF>
|
||||
<Configurations>Debug;Release;Demo</Configurations>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Demo|AnyCPU'">
|
||||
<Optimize>True</Optimize>
|
||||
<DefineConstants>$(DefineConstants)TRACE;Demo</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
14
app/local/OnlineResourceWatcherLocalApp.csproj.user
Normal file
14
app/local/OnlineResourceWatcherLocalApp.csproj.user
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Update="App.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Page Update="MainWindow.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
28
app/local/OnlineResourceWatcherLocalApp.sln
Normal file
28
app/local/OnlineResourceWatcherLocalApp.sln
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.3.32825.248
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OnlineResourceWatcherLocalApp", "OnlineResourceWatcherLocalApp.csproj", "{19520179-CF22-4185-8DA4-BCB90DFF60D3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Demo|Any CPU = Demo|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Demo|Any CPU.ActiveCfg = Demo|Any CPU
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Demo|Any CPU.Build.0 = Demo|Any CPU
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{19520179-CF22-4185-8DA4-BCB90DFF60D3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {279251AC-43AC-4D95-B231-8792A5D57375}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
6
app/server/CMakeLists.txt
Normal file
6
app/server/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
project( OnlineResourceWatcherServerApp )
|
||||
add_executable( OnlineResourceWatcherServerApp main.cpp )
|
||||
|
||||
# cmake -DCMAKE_BUILD_TYPE=Debug -DOMS_DEBUG=true
|
||||
# cmake -DCMAKE_BUILD_TYPE=Release -DOMS_DEMO=true
|
||||
BIN
app/server/OnlineResourceWatcherServerApp.aps
Normal file
BIN
app/server/OnlineResourceWatcherServerApp.aps
Normal file
Binary file not shown.
71
app/server/OnlineResourceWatcherServerApp.rc
Normal file
71
app/server/OnlineResourceWatcherServerApp.rc
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
// Microsoft Visual C++ generated resource script.
|
||||
//
|
||||
#include "resource.h"
|
||||
|
||||
#define APSTUDIO_READONLY_SYMBOLS
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 2 resource.
|
||||
//
|
||||
#include "winres.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#undef APSTUDIO_READONLY_SYMBOLS
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// English (United States) resources
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
#pragma code_page(1252)
|
||||
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TEXTINCLUDE
|
||||
//
|
||||
|
||||
1 TEXTINCLUDE
|
||||
BEGIN
|
||||
"resource.h\0"
|
||||
END
|
||||
|
||||
2 TEXTINCLUDE
|
||||
BEGIN
|
||||
"#include ""winres.h""\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
3 TEXTINCLUDE
|
||||
BEGIN
|
||||
"\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
#endif // APSTUDIO_INVOKED
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Icon
|
||||
//
|
||||
|
||||
// Icon with lowest ID value placed first to ensure application icon
|
||||
// remains consistent on all systems.
|
||||
IDI_ICON1 ICON "favicon.ico"
|
||||
|
||||
#endif // English (United States) resources
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
#ifndef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 3 resource.
|
||||
//
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
||||
|
||||
31
app/server/OnlineResourceWatcherServerApp.sln
Normal file
31
app/server/OnlineResourceWatcherServerApp.sln
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.3.32825.248
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OnlineResourceWatcherServerApp", "OnlineResourceWatcherServerApp.vcxproj", "{E4833A04-2C5F-45C7-A516-1961F33989EC}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x64.Build.0 = Debug|x64
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x86.Build.0 = Debug|Win32
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x64.ActiveCfg = Release|x64
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x64.Build.0 = Release|x64
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x86.ActiveCfg = Release|Win32
|
||||
{E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {6B0C2D93-198E-41A1-A523-2AB67F051D55}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
147
app/server/OnlineResourceWatcherServerApp.vcxproj
Normal file
147
app/server/OnlineResourceWatcherServerApp.vcxproj
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
<?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>{e4833a04-2c5f-45c7-a516-1961f33989ec}</ProjectGuid>
|
||||
<RootNamespace>OnlineResourceWatcherServerApp</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>v143</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v143</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v143</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v143</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)'=='Release|x64'">
|
||||
<IncludePath>C:\Users\deich\git\OnlineResourceWatcherApp\app\server;$(IncludePath)</IncludePath>
|
||||
</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>
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="resource.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="OnlineResourceWatcherServerApp.rc" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="favicon.ico" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
37
app/server/OnlineResourceWatcherServerApp.vcxproj.filters
Normal file
37
app/server/OnlineResourceWatcherServerApp.vcxproj.filters
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?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="main.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="resource.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="OnlineResourceWatcherServerApp.rc">
|
||||
<Filter>Resource Files</Filter>
|
||||
</ResourceCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="favicon.ico">
|
||||
<Filter>Resource Files</Filter>
|
||||
</Image>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
4
app/server/OnlineResourceWatcherServerApp.vcxproj.user
Normal file
4
app/server/OnlineResourceWatcherServerApp.vcxproj.user
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
</Project>
|
||||
1
app/server/cOMS
Submodule
1
app/server/cOMS
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit cd71fb74b146e1fffefafe6f8f053ec4ef4a1096
|
||||
BIN
app/server/favicon.ico
Normal file
BIN
app/server/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 361 KiB |
51
app/server/main.cpp
Normal file
51
app/server/main.cpp
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/**
|
||||
* Karaka
|
||||
*
|
||||
* @package App
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link https://karaka.app
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "cOMS/Utils/ArrayUtils.h"
|
||||
|
||||
#ifndef OMS_DEMO
|
||||
#define OMS_DEMO false
|
||||
#endif
|
||||
|
||||
void printHelp()
|
||||
{
|
||||
printf(" The Online Resource Watcher app developed by jingga checks online or local resources\n");
|
||||
printf(" for changes and and informs the user about them.\n\n");
|
||||
printf(" Run: ./App ....\n\n");
|
||||
printf(" -h: Prints the help output\n");
|
||||
printf(" -v: Prints the version\n");
|
||||
printf("\n");
|
||||
printf(" Website: https://jingga.app\n");
|
||||
printf(" Copyright: jingga (c) Dennis Eichhorn\n");
|
||||
}
|
||||
|
||||
void printVersion()
|
||||
{
|
||||
printf("Version: 1.0.0\n");
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
bool hasHelpCmd = Utils::ArrayUtils::has_arg("-h", argv, argc);
|
||||
if (hasHelpCmd) {
|
||||
printHelp();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool hasVersionCmd = Utils::ArrayUtils::has_arg("-v", argv, argc);
|
||||
if (hasVersionCmd) {
|
||||
printVersion();
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
16
app/server/resource.h
Normal file
16
app/server/resource.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by OnlineResourceWatcherServerApp.rc
|
||||
//
|
||||
#define IDI_ICON1 101
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 102
|
||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||
#define _APS_NEXT_CONTROL_VALUE 1001
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
||||
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.command.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.command.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.read.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.read.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.write.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.write.1.tlog
Normal file
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0:
|
||||
Debug|x64|C:\Users\deich\git\OnlineResourceWatcherApp\app\server\|
|
||||
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.command.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.command.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.read.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.read.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.write.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.write.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.command.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.command.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.read.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.read.1.tlog
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.write.1.tlog
Normal file
BIN
app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.write.1.tlog
Normal file
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
|||
c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\vc143.idb
|
||||
c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\vc143.pdb
|
||||
c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\onlinere.e4833a04.tlog\cl.command.1.tlog
|
||||
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.exe
Normal file
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.exe
Normal file
Binary file not shown.
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
||||
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.ilk
Normal file
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.ilk
Normal file
Binary file not shown.
1
app/server/x64/Debug/OnlineResourceWatcherServerApp.log
Normal file
1
app/server/x64/Debug/OnlineResourceWatcherServerApp.log
Normal file
|
|
@ -0,0 +1 @@
|
|||
OnlineResourceWatcherServerApp.vcxproj -> C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe
|
||||
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.pdb
Normal file
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.pdb
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.res
Normal file
BIN
app/server/x64/Debug/OnlineResourceWatcherServerApp.res
Normal file
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe
|
||||
1
app/server/x64/Debug/_IsIncrementalBuild
Normal file
1
app/server/x64/Debug/_IsIncrementalBuild
Normal file
|
|
@ -0,0 +1 @@
|
|||
x64\Debug\\_IsIncrementalBuild
|
||||
BIN
app/server/x64/Debug/main.obj
Normal file
BIN
app/server/x64/Debug/main.obj
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/vc143.idb
Normal file
BIN
app/server/x64/Debug/vc143.idb
Normal file
Binary file not shown.
BIN
app/server/x64/Debug/vc143.pdb
Normal file
BIN
app/server/x64/Debug/vc143.pdb
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user