##// END OF EJS Templates
JsonReader optimizations
JsonReader optimizations

File last commit:

r236:302ca905c19e v2
r236:302ca905c19e v2
Show More
Implab.csproj
188 lines | 8.9 KiB | text/plain | TextLexer
cin
small fixes
r2 <?xml version="1.0" encoding="utf-8"?>
cin
Improved AsyncQueue...
r233 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
cin
small fixes
r2 <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
cin
Implab.Fx: implemented animation object...
r4 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid>
cin
small fixes
r2 <OutputType>Library</OutputType>
<RootNamespace>Implab</RootNamespace>
<AssemblyName>Implab</AssemblyName>
cin
Added support for 'await' operator to promises
r151 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
cin
Improved AsyncQueue...
r233 <TargetFrameworkProfile />
cin
small fixes
r2 </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
cin
slowly cutting off mono specific settings
r230 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
cin
small fixes
r2 <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
cin
code cleanup
r59 <RunCodeAnalysis>true</RunCodeAnalysis>
cin
small fixes
r2 </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
cin
major refactoring, added tasks support
r75 <DefineConstants>NET_4_5</DefineConstants>
cin
fixed JSONXmlReader disposing under ugly mono...
r85 <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
cin
Added implab nuget spec
r234 <PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>implab.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
cin
small fixes
r2 <ItemGroup>
<Reference Include="System" />
cin
mono
r67 <Reference Include="System.Xml" />
cin
Added support for 'await' operator to promises
r151 <Reference Include="mscorlib" />
cin
JsonXmlReader performance tuning...
r229 <Reference Include="System.Xml.Linq" />
cin
small fixes
r2 </ItemGroup>
<ItemGroup>
cin
Added ResetState to RunnableComponent to reset in case of failure...
r205 <Compile Include="Components\StateChangeEventArgs.cs" />
cin
Added initial JSON support...
r55 <Compile Include="CustomEqualityComparer.cs" />
cin
improved log concept
r36 <Compile Include="Diagnostics\ConsoleTraceListener.cs" />
<Compile Include="Diagnostics\LogChannel.cs" />
cin
initial log capabilities
r35 <Compile Include="Diagnostics\LogicalOperation.cs" />
cin
improved tracing...
r40 <Compile Include="Diagnostics\TextFileListener.cs" />
cin
Added class Trace<T> to manage channels for individual classes, if SomeClass...
r212 <Compile Include="Diagnostics\Trace.cs" />
cin
improved log concept
r36 <Compile Include="Diagnostics\TraceLog.cs" />
<Compile Include="Diagnostics\TraceEvent.cs" />
cin
initial log capabilities
r35 <Compile Include="Diagnostics\TraceEventType.cs" />
cin
Added class Trace<T> to manage channels for individual classes, if SomeClass...
r212 <Compile Include="Diagnostics\TraceSourceAttribute.cs" />
cin
Rewritten JsonScanner, JsonParser, fixed naming style
r228 <Compile Include="Formats\CharMap.cs" />
cin
JsonReader optimizations
r236 <Compile Include="Formats\FastInpurScanner.cs" />
cin
Rewritten JsonScanner, JsonParser, fixed naming style
r228 <Compile Include="Formats\InputScanner.cs" />
<Compile Include="Formats\Json\JsonStringScanner.cs" />
<Compile Include="Formats\Json\JsonTextScanner.cs" />
cin
refactoring, added WorkerPool
r12 <Compile Include="ICancellable.cs" />
<Compile Include="IProgressHandler.cs" />
<Compile Include="IProgressNotifier.cs" />
cin
Refactoring
r66 <Compile Include="IPromiseT.cs" />
cin
sync
r8 <Compile Include="IPromise.cs" />
cin
improved tracing...
r40 <Compile Include="IServiceLocator.cs" />
cin
refactoring, added WorkerPool
r12 <Compile Include="ITaskController.cs" />
cin
implemented parallel map and foreach for arrays...
r15 <Compile Include="Parallels\DispatchPool.cs" />
<Compile Include="Parallels\ArrayTraits.cs" />
cin
Improved AsyncQueue...
r233 <Compile Include="Parallels\SimpleAsyncQueue.cs" />
cin
refactoring, added WorkerPool
r12 <Compile Include="Parallels\WorkerPool.cs" />
cin
inital progress handling
r7 <Compile Include="ProgressInitEventArgs.cs" />
cin
small fixes
r2 <Compile Include="Properties\AssemblyInfo.cs" />
cin
refactoring
r11 <Compile Include="Parallels\AsyncPool.cs" />
cin
small fixes
r2 <Compile Include="Safe.cs" />
cin
Code review, added a non generic version of SyncContextPromise
r211 <Compile Include="SyncContextPromise.cs" />
cin
inital progress handling
r7 <Compile Include="ValueEventArgs.cs" />
cin
promises refactoring
r72 <Compile Include="PromiseExtensions.cs" />
cin
Code review, added a non generic version of SyncContextPromise
r211 <Compile Include="SyncContextPromiseT.cs" />
cin
rewritten tracing
r92 <Compile Include="Diagnostics\OperationContext.cs" />
<Compile Include="Diagnostics\TraceContext.cs" />
<Compile Include="Diagnostics\LogEventArgs.cs" />
<Compile Include="Diagnostics\LogEventArgsT.cs" />
<Compile Include="Diagnostics\Extensions.cs" />
cin
renamed Promise.Last -> Promise.On...
r104 <Compile Include="PromiseEventType.cs" />
cin
Promises rewritten, added improved version of AsyncQueue
r119 <Compile Include="Parallels\AsyncQueue.cs" />
<Compile Include="PromiseT.cs" />
<Compile Include="IDeferred.cs" />
<Compile Include="IDeferredT.cs" />
<Compile Include="Promise.cs" />
<Compile Include="PromiseTransientException.cs" />
cin
Added Signal class a lightweight alternative to ManualResetEvent
r128 <Compile Include="Parallels\Signal.cs" />
cin
Added SharedLock to synchronization routines
r129 <Compile Include="Parallels\SharedLock.cs" />
cin
Improved logging
r134 <Compile Include="Diagnostics\ILogWriter.cs" />
<Compile Include="Diagnostics\ListenerBase.cs" />
cin
added the blocking queue
r137 <Compile Include="Parallels\BlockingQueue.cs" />
cin
DRAFT: refactoring
r144 <Compile Include="AbstractEvent.cs" />
<Compile Include="AbstractPromise.cs" />
<Compile Include="AbstractPromiseT.cs" />
<Compile Include="FuncTask.cs" />
<Compile Include="FuncTaskBase.cs" />
<Compile Include="FuncTaskT.cs" />
cin
RC: cancellation support for promises + tests
r145 <Compile Include="ActionChainTaskBase.cs" />
<Compile Include="ActionChainTask.cs" />
<Compile Include="ActionChainTaskT.cs" />
<Compile Include="FuncChainTaskBase.cs" />
<Compile Include="FuncChainTask.cs" />
<Compile Include="FuncChainTaskT.cs" />
<Compile Include="ActionTaskBase.cs" />
<Compile Include="ActionTask.cs" />
<Compile Include="ActionTaskT.cs" />
<Compile Include="ICancellationToken.cs" />
<Compile Include="SuccessPromise.cs" />
<Compile Include="SuccessPromiseT.cs" />
cin
Added support for 'await' operator to promises
r151 <Compile Include="PromiseAwaiterT.cs" />
<Compile Include="PromiseAwaiter.cs" />
cin
component model refactoring
r152 <Compile Include="Components\ComponentContainer.cs" />
<Compile Include="Components\Disposable.cs" />
<Compile Include="Components\DisposablePool.cs" />
<Compile Include="Components\ObjectPool.cs" />
<Compile Include="Components\ServiceLocator.cs" />
<Compile Include="Components\IInitializable.cs" />
<Compile Include="TaskController.cs" />
<Compile Include="Components\App.cs" />
<Compile Include="Components\IRunnable.cs" />
<Compile Include="Components\ExecutionState.cs" />
cin
Promises: SignalXXX methods merged into SignalHandler method....
r156 <Compile Include="Components\RunnableComponent.cs" />
<Compile Include="Components\IFactory.cs" />
cin
DFA refactoring
r162 <Compile Include="Automaton\IAlphabet.cs" />
<Compile Include="Automaton\ParserException.cs" />
<Compile Include="Automaton\IndexedAlphabetBase.cs" />
<Compile Include="Automaton\IAlphabetBuilder.cs" />
<Compile Include="Automaton\RegularExpressions\AltToken.cs" />
<Compile Include="Automaton\RegularExpressions\BinaryToken.cs" />
<Compile Include="Automaton\RegularExpressions\CatToken.cs" />
<Compile Include="Automaton\RegularExpressions\StarToken.cs" />
<Compile Include="Automaton\RegularExpressions\SymbolToken.cs" />
<Compile Include="Automaton\RegularExpressions\EmptyToken.cs" />
<Compile Include="Automaton\RegularExpressions\Token.cs" />
<Compile Include="Automaton\RegularExpressions\IVisitor.cs" />
<Compile Include="Automaton\AutomatonTransition.cs" />
cin
Rewritten JsonScanner, JsonParser, fixed naming style
r228 <Compile Include="Formats\Json\JsonElementContext.cs" />
<Compile Include="Formats\Json\JsonElementType.cs" />
<Compile Include="Formats\Json\JsonGrammar.cs" />
cin
JsonXmlReader performance tuning...
r229 <Compile Include="Formats\Json\JsonReader.cs" />
cin
Rewritten JsonScanner, JsonParser, fixed naming style
r228 <Compile Include="Formats\Json\JsonScanner.cs" />
<Compile Include="Formats\Json\JsonTokenType.cs" />
<Compile Include="Formats\Json\JsonWriter.cs" />
<Compile Include="Formats\Json\StringTranslator.cs" />
cin
JSON moved to Formats namespace...
r163 <Compile Include="Automaton\MapAlphabet.cs" />
cin
Almost complete DFA refactoring
r164 <Compile Include="Formats\CharAlphabet.cs" />
<Compile Include="Formats\ByteAlphabet.cs" />
cin
DFA refactoring
r165 <Compile Include="Automaton\IDFATable.cs" />
<Compile Include="Automaton\IDFATableBuilder.cs" />
cin
DFA refactoring
r169 <Compile Include="Automaton\DFATable.cs" />
cin
Working on text scanner
r172 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" />
<Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" />
cin
refactoring
r177 <Compile Include="Formats\Grammar.cs" />
<Compile Include="Automaton\RegularExpressions\EndTokenT.cs" />
<Compile Include="Automaton\RegularExpressions\EndToken.cs" />
cin
working on JSON parser
r178 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitorT.cs" />
<Compile Include="Automaton\AutomatonConst.cs" />
<Compile Include="Automaton\RegularExpressions\RegularDFA.cs" />
<Compile Include="Components\LazyAndWeak.cs" />
cin
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
r187 <Compile Include="AbstractTask.cs" />
<Compile Include="AbstractTaskT.cs" />
cin
Added 'Fail' method to RunnableComponent which allows component to move from...
r203 <Compile Include="FailedPromise.cs" />
<Compile Include="FailedPromiseT.cs" />
<Compile Include="Components\PollingComponent.cs" />
cin
Reimplemented JsonXmlReader, added support for null values: JSON null values are...
r227 <Compile Include="Xml\JsonXmlReader.cs" />
<Compile Include="Xml\JsonXmlReaderOptions.cs" />
<Compile Include="Xml\JsonXmlReaderPosition.cs" />
cin
JsonXmlReader performance tuning...
r229 <Compile Include="Xml\SerializationHelpers.cs" />
<Compile Include="Xml\SerializersPool.cs" />
cin
Reimplemented JsonXmlReader, added support for null values: JSON null values are...
r227 <Compile Include="Xml\XmlSimpleAttribute.cs" />
<Compile Include="Xml\XmlNameContext.cs" />
cin
small fixes
r2 </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
cin
Added implab nuget spec
r234 <ItemGroup>
<None Include="Implab.nuspec">
<SubType>Designer</SubType>
</None>
<None Include="implab.snk" />
</ItemGroup>
<ItemGroup>
<Content Include="license.txt" />
</ItemGroup>
user@factory.site.local
initial commit...
r0 </Project>