Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Change the default logger to the NullLogger. | Jon Skeet | 2016-07-26 |
| | | | | | | It's unconventional for code to log to the console in .NET. Even now the logging is reduced, it's still present - especially in shutdown. This would fix #7361. | ||
* | Merge v1.0.x into master | murgatroid99 | 2016-07-22 |
|\ | |||
| * | Overhaul how the native extension is found, loaded and used | Jon Skeet | 2016-07-15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this is to fix #7230. The changes here are: - The layout in the nuget package; the files are now in `/runtimes/{os}/native/{library}` - The filename of each library, which now includes the architecture, e.g `grpc_csharp_ext.x64.dll` - The targets file used to copy those files in msbuild-based projects; note that we now don't build up a folder structure. - The way the functions are found Before this change, on Linux and OSX we used to find library symbols manually, and use DllImport on Windows. With this change, the name of the library file changes based on architecture, so `DllImport` doesn't work. Instead, we have to use `GetProcAddress` to fetch the function. This is further convoluted by the convention on Windows-x86 to prefix the function name with `_` and suffix it based on the stack size of the arguments. We can't easily tell the argument size here, so we just try 0, 4, 8...128. (128 bytes should be enough for anyone.) This is inefficient, but it's a one-time hit with a known number of functions, and doesn't seem to have any significant impact. The benefit of this in code is we don't need the DllImports any more, and we don't need to conditionally use `FindSymbol` - we just use it for everything, so things are rather more uniform and tidy. The further benefit of this is that the library name is no longer tied to a particular filename format - so if someone wanted to have a directory with the libraries for every version in, with the version in the filename, we'd handle that just fine. (At least once Testing: - Windows: - Console app under msbuild, dotnet cli and DNX - ASP.NET Classic under msbuild - ASP.NET Core (still running under net451) - Ubuntu 16.04 - Console app under dotnet cli, run with dotnet run and mono - OSX: - Console app under dotnet cli, run with dotnet run and mono Under dotnet cli, a dependency on `Microsoft.NETCore.Platforms` is required in order to force the libraries to be copied. This change does *not* further enable .NET Core. It attempts to keep the existing experimental .NET Core project files in line with the msbuild files, but I expect further work to be required for .NET Core, which has a different build/publication model. | ||
* | | Master is now 1.1.0-dev. | Nicolas "Pixel" Noble | 2016-07-12 |
|/ | |||
* | Flagging master as 1.0.0-pre1. | Nicolas "Pixel" Noble | 2016-07-12 |
| | |||
* | regenerate | Jan Tattermusch | 2016-06-29 |
| | |||
* | fix files/mappings in Grpc.Core nuget | Jan Tattermusch | 2016-06-29 |
| | |||
* | regenerate files | Jan Tattermusch | 2016-06-27 |
| | |||
* | share Version.cs among all project.json projects | Jan Tattermusch | 2016-06-27 |
| | |||
* | Update master branch to 0.16.0-dev | murgatroid99 | 2016-06-24 |
| | |||
* | fix C# nuget build | Jan Tattermusch | 2016-06-24 |
| | |||
* | prevent race between grpcsharp_server_request_call and ↵ | Jan Tattermusch | 2016-06-23 |
| | | | | grpc_completion_queue_shutdown | ||
* | add C# constant for GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY | Jan Tattermusch | 2016-06-22 |
| | |||
* | Merge pull request #6104 from jtattermusch/coreclr_support | Jan Tattermusch | 2016-06-22 |
|\ | | | | | Add experimental CoreCLR support | ||
* | | add missing ConfigureAwait(false) | Jan Tattermusch | 2016-06-21 |
| | | |||
| * | regenerate project.json files | Jan Tattermusch | 2016-06-21 |
| | | |||
| * | improve project.json files | Jan Tattermusch | 2016-06-20 |
| | | |||
| * | migrate everything to netstandard1.5 | Jan Tattermusch | 2016-06-16 |
| | | |||
| * | dont register shutdownhooks for dotnet5.4 | Jan Tattermusch | 2016-06-15 |
| | | |||
| * | update project.json | Jan Tattermusch | 2016-06-15 |
| | | |||
* | | Merge pull request #6909 from jtattermusch/csharp_client_streaming | Jan Tattermusch | 2016-06-15 |
|\ \ | | | | | | | Improve docs for IAsyncStreamReader | ||
| | * | update .xproj files | Jan Tattermusch | 2016-06-15 |
| | | | |||
| | * | prevent interfering of project.json files with .csproj files in VS2015 | Jan Tattermusch | 2016-06-15 |
| | | | |||
| * | | improve docs for IAsyncStreamReader | Jan Tattermusch | 2016-06-14 |
| | | | |||
* | | | deduplicate send finished handler | Jan Tattermusch | 2016-06-14 |
|/ / | |||
| * | add support for CoreCLR | Jan Tattermusch | 2016-06-14 |
|/ | |||
* | set default gRPC C# logging level to Info | Jan Tattermusch | 2016-06-13 |
| | |||
* | add LogLevel enum | Jan Tattermusch | 2016-06-13 |
| | |||
* | Merge pull request #6829 from jtattermusch/csharp_add_server_test | Jan Tattermusch | 2016-06-09 |
|\ | | | | | C#: Add unstarted server test | ||
| * | allow shutdown of unstarted server | Jan Tattermusch | 2016-06-08 |
| | | |||
* | | make Metadata.Entry a class | Jan Tattermusch | 2016-06-07 |
|/ | |||
* | Add more Channel and Server constructor overloads | Jan Tattermusch | 2016-06-06 |
| | |||
* | autoregister grpc shutdown hooks | Jan Tattermusch | 2016-06-06 |
| | |||
* | support GrpcEnvironment.KillServersAsync | Jan Tattermusch | 2016-06-06 |
| | |||
* | deduplicate server shutdown logic | Jan Tattermusch | 2016-06-06 |
| | |||
* | Add ShutdownChannelsAsync api | Jan Tattermusch | 2016-06-06 |
| | |||
* | serverside shutdown hook test | Jan Tattermusch | 2016-06-06 |
| | |||
* | make environment shutdown asynchronous | Jan Tattermusch | 2016-06-06 |
| | |||
* | improve docs on ShutdownAsync() for servers and channels | Jan Tattermusch | 2016-06-06 |
| | |||
* | improve the xmldocs on call cancellation and disposal | Jan Tattermusch | 2016-06-06 |
| | |||
* | rename ChannelState.FatalFailure to ChannelState.Shutdown | Jan Tattermusch | 2016-06-06 |
| | |||
* | get rid of servicename argument for server service definition. | Jan Tattermusch | 2016-06-06 |
| | |||
* | Merge pull request #5794 from chrisdunelm/WriteOptions_readonly | Jan Tattermusch | 2016-06-01 |
|\ | | | | | Make WriteOptions flags field readonly | ||
* \ | Merge pull request #6712 from jtattermusch/csharp_more_completion_queues | Jan Tattermusch | 2016-05-26 |
|\ \ | | | | | | | C# add support for multiple completion queues in GrpcThreadPool. | ||
| * | | add missing pinvoke method | Jan Tattermusch | 2016-05-26 |
| | | | |||
| * | | use 1 cq per thread by default | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | name the threadpool threads before starting | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | eliminate global completion registry | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | completion registry is per cq | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | expose completionQueueCount setting | Jan Tattermusch | 2016-05-25 |
| | | |