Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient')
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Msmq.cs51
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Remoting.cs41
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.cs54
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Properties/AssemblyInfo.cs36
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/RxMouseClient.csproj96
-rw-r--r--Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/app.config3
6 files changed, 281 insertions, 0 deletions
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Msmq.cs b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Msmq.cs
new file mode 100644
index 0000000..90c2ca0
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Msmq.cs
@@ -0,0 +1,51 @@
+using System;
+using System.Drawing;
+using System.Messaging;
+using System.Reactive.Concurrency;
+using System.Reactive.Disposables;
+using System.Reactive.Linq;
+
+namespace RxMouseClient
+{
+ partial class Program
+ {
+ static IObservable<Point> Msmq(string srv)
+ {
+ return FromQueue<Point>(srv + "\\Private$\\MouseService");
+ }
+
+ static IObservable<T> FromQueue<T>(string serverQueue)
+ {
+ return Observable.Create<T>(observer =>
+ {
+ var responseQueue = Environment.MachineName + "\\Private$\\" + Guid.NewGuid().ToString();
+ var queue = MessageQueue.Create(responseQueue);
+
+ var frm = new System.Messaging.BinaryMessageFormatter();
+ var srv = new MessageQueue(serverQueue);
+ srv.Formatter = frm;
+ queue.Formatter = frm;
+
+ srv.Send("S " + responseQueue);
+
+ var loop = NewThreadScheduler.Default.ScheduleLongRunning(cancel =>
+ {
+ while (!cancel.IsDisposed)
+ {
+ var msg = queue.Receive();
+ observer.OnNext((T)msg.Body);
+ }
+ });
+
+ return new CompositeDisposable(
+ loop,
+ Disposable.Create(() =>
+ {
+ srv.Send("D " + responseQueue);
+ MessageQueue.Delete(responseQueue);
+ })
+ );
+ });
+ }
+ }
+}
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Remoting.cs b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Remoting.cs
new file mode 100644
index 0000000..fc5e68d
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.Remoting.cs
@@ -0,0 +1,41 @@
+using System;
+using System.Collections;
+using System.Drawing;
+using System.Reactive.Linq;
+using System.Runtime.Remoting.Channels;
+using System.Runtime.Remoting.Channels.Tcp;
+using System.Runtime.Serialization.Formatters;
+using System.Windows.Forms;
+using RxMouseService;
+
+namespace RxMouseClient
+{
+ partial class Program
+ {
+ const string SERVICENAME = "MouseService";
+
+ static IObservable<Point> Remoting(string srv, int port)
+ {
+ ConfigureRemoting();
+
+ var ms = (IMouseService)Activator.GetObject(typeof(IMouseService), string.Format("tcp://{0}:{1}/{2}", srv, port, SERVICENAME));
+
+ return ms.GetPoints();
+ }
+
+ private static void ConfigureRemoting()
+ {
+ var server = new BinaryServerFormatterSinkProvider();
+ server.TypeFilterLevel = TypeFilterLevel.Full;
+
+ var client = new BinaryClientFormatterSinkProvider();
+
+ IDictionary props = new Hashtable();
+ props["port"] = 0;
+ props["name"] = SERVICENAME;
+ props["typeFilterLevel"] = TypeFilterLevel.Full;
+
+ ChannelServices.RegisterChannel(new TcpChannel(props, client, null), false);
+ }
+ }
+}
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.cs b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.cs
new file mode 100644
index 0000000..616fc06
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Program.cs
@@ -0,0 +1,54 @@
+using System;
+using System.Drawing;
+using System.Reactive.Linq;
+using System.Windows.Forms;
+
+namespace RxMouseClient
+{
+ partial class Program
+ {
+ [STAThread]
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Client");
+
+ string server;
+ int port;
+ ParseArgs(args, out server, out port);
+
+ var points = Remoting(server, port);
+
+ var frm = new Form();
+
+ var closed = Observable.FromEventPattern(frm, "FormClosed");
+
+ frm.Load += (o, e) =>
+ {
+ var g = frm.CreateGraphics();
+
+ points.TakeUntil(closed).ObserveOn(frm).Subscribe(pt =>
+ {
+ g.DrawEllipse(Pens.Red, pt.X, pt.Y, 1, 1);
+ });
+ };
+
+ Application.Run(frm);
+ }
+
+ static void ParseArgs(string[] args, out string server, out int port)
+ {
+ port = 9090;
+ server = "localhost";
+
+ if (args.Length >= 1)
+ {
+ server = args[0];
+
+ if (args.Length == 2)
+ {
+ port = int.Parse(args[1]);
+ }
+ }
+ }
+ }
+}
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Properties/AssemblyInfo.cs b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..38221c0
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/Properties/AssemblyInfo.cs
@@ -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("RxMouseClient")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("MSIT")]
+[assembly: AssemblyProduct("RxMouseClient")]
+[assembly: AssemblyCopyright("Copyright © MSIT 2012")]
+[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("6f17287e-17c3-4160-93b8-dbd420201dbd")]
+
+// 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")]
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/RxMouseClient.csproj b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/RxMouseClient.csproj
new file mode 100644
index 0000000..2fc09e5
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/RxMouseClient.csproj
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{5719C4C6-D7CC-47FA-B294-C57E0BC6B06F}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>RxMouseClient</RootNamespace>
+ <AssemblyName>RxMouseClient</AssemblyName>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkProfile>
+ </TargetFrameworkProfile>
+ <FileAlignment>512</FileAlignment>
+ <SccProjectName>SAK</SccProjectName>
+ <SccLocalPath>SAK</SccLocalPath>
+ <SccAuxPath>SAK</SccAuxPath>
+ <SccProvider>SAK</SccProvider>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Drawing" />
+ <Reference Include="System.Messaging" />
+ <Reference Include="System.Reactive.Core, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.Core.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Reactive.Interfaces, Version=2.0.0.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.Interfaces.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Reactive.Linq, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.Linq.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Reactive.PlatformServices, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.PlatformServices.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Reactive.Runtime.Remoting, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.Runtime.Remoting.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Reactive.Windows.Forms, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\References\System.Reactive.Windows.Forms.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Runtime.Remoting" />
+ <Reference Include="System.Windows.Forms" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Program.Msmq.cs" />
+ <Compile Include="Program.Remoting.cs" />
+ <Compile Include="Program.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\RxMouseService\RxMouseService.csproj">
+ <Project>{E1C1D499-15ED-454A-AE34-35F62E53250C}</Project>
+ <Name>RxMouseService</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="app.config" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project> \ No newline at end of file
diff --git a/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/app.config b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/app.config
new file mode 100644
index 0000000..e365603
--- /dev/null
+++ b/Rx/NET/Samples/RxRemoteMouseMoves/RxMouseClient/app.config
@@ -0,0 +1,3 @@
+<?xml version="1.0"?>
+<configuration>
+<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>