Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Höss committed Feb 25, 2019
1 parent de96b8e commit 58ce3c4
Show file tree
Hide file tree
Showing 13 changed files with 930 additions and 0 deletions.
209 changes: 209 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
x64/
build/
bld/
[Bb]in/
[Oo]bj/
_[Bb]in/
_[Oo]bj/
_[Ss]etups/

# Roslyn cache directories
*.ide/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

#NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding addin-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
## TODO: Comment the next line if you want to checkin your
## web deploy settings but do note that will include unencrypted
## passwords
#*.pubxml

# NuGet Packages Directory
packages/*
## TODO: If the tool you use requires repositories.config
## uncomment the next line
#!packages/repositories.config

# Enable "build/" folder in the NuGet Packages folder since
# NuGet packages use it for MSBuild targets.
# This line needs to be after the ignore of the build folder
# (and the packages folder if the line above has been uncommented)
!packages/build/

# Windows Azure Build Output
csx/
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
.refsignored
node_modules/

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml
/.gitconfig


# XLL Excel AddIn File
*.xll
/_ConvertModelWizard_Files
/Kinetic_Report.htm
/Log_OpenAccessUpdateReferences.xml
/KineticExcelUDFAddIn/bin/Release/KineticExcelUDFAddIn-AddIn-packed.xll
/KineticExcelUDFAddIn/bin/Release/KineticExcelUDFAddIn-AddIn64-packed.xll
/.vs/config/applicationhost.config
*.licx
/__SkipCodeRush
/kWebViewer/App_Data
/kWebViewer/Content/components/ace-builds/demo
/KEAIHelp/~KEAIHelp.dat
/.vs
25 changes: 25 additions & 0 deletions netLoader.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.421
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "netLoader", "netLoader\netLoader.csproj", "{EE981902-489A-467B-9CA7-66DB67620F58}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EE981902-489A-467B-9CA7-66DB67620F58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EE981902-489A-467B-9CA7-66DB67620F58}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EE981902-489A-467B-9CA7-66DB67620F58}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EE981902-489A-467B-9CA7-66DB67620F58}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1A4270EC-67F3-489B-9CF7-4581982B0635}
EndGlobalSection
EndGlobal
8 changes: 8 additions & 0 deletions netLoader/Enums/netLoaderMode.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace netLoader
{
public enum netLoaderMode
{
Wait = 0,
Start = 1
}
}
19 changes: 19 additions & 0 deletions netLoader/Enums/netLoaderState.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using System;

namespace netLoader
{
[Flags]
public enum netLoaderState
{
None = 1,
Loading = 1 << 0,
Starting = 1 << 1,
Running = 1 << 2,
Finished = 1 << 3,
CancelRequested = 1 << 4,
Canceled = 1 << 5,
Failed = 1 << 6,

Any = ~0
}
}
17 changes: 17 additions & 0 deletions netLoader/Interfaces/InetLoader.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;

namespace netLoader
{
public interface InetLoader : IDisposable
{
Int64 Id { get; }
string Name { get; }
object Data { get; }
object Tag { get; set; }
InetLoaderCallbacks CallbackObserver { get; }
netLoaderState State { get; }

InetLoader AsyncLoad();
InetLoader Cancel(Int32 Delay = 0, bool Force = false);
}
}
12 changes: 12 additions & 0 deletions netLoader/Interfaces/InetLoaderCallbacks.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace netLoader
{
public interface InetLoaderCallbacks
{
void OnLoadFinished(InetLoader Loader);
void OnLoadCanceled(InetLoader Loader);
void OnLoadFailed(InetLoader Loader, Exception Exception);
void OnLoadStart(InetLoader Loader);
}
}
27 changes: 27 additions & 0 deletions netLoader/Interfaces/InetLoaderEvents.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
namespace netLoader
{
public interface InetLoaderEvents
{
/// <summary>
/// When the loader starts
/// </summary>
event netLoaderEvent OnLoadStart;

/// <summary>
/// When the loader is finished
/// </summary>
event netLoaderEvent OnLoadFinished;

/// <summary>
/// When the loader is canceled
/// </summary>
event netLoaderEvent OnLoadCanceled;

/// <summary>
/// When the loader has failed
/// </summary>
event netLoaderEvent OnLoadFailed;


}
}
36 changes: 36 additions & 0 deletions netLoader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("netLoader")]
[assembly: AssemblyDescription("C# implementation of the Android Loaders")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("netLoader")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("ee981902-489a-467b-9ca7-66db67620f58")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Loading

0 comments on commit 58ce3c4

Please sign in to comment.