Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix conditional compilation for netcoreapp1.0 projects | Jan Tattermusch | 2016-07-31 |
| | |||
* | regenerate | Jan Tattermusch | 2016-07-30 |
| | |||
* | 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. | ||
* | regenerate | Jan Tattermusch | 2016-06-29 |
| | |||
* | regenerate files | Jan Tattermusch | 2016-06-27 |
| | |||
* | regenerate protos | Jan Tattermusch | 2016-06-22 |
| | |||
* | remove occurences of NewClient factory method | Jan Tattermusch | 2016-06-22 |
| | |||
* | add C# constant for GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY | Jan Tattermusch | 2016-06-22 |
| | |||
* | implement C# client compression interop tests | Jan Tattermusch | 2016-06-22 |
| | |||
* | remove occurences of compressable payload type | Jan Tattermusch | 2016-06-22 |
| | |||
* | regenerate messages.proto | Jan Tattermusch | 2016-06-22 |
| | |||
* | regenerate project.json files | Jan Tattermusch | 2016-06-21 |
| | |||
* | improve project.json files | Jan Tattermusch | 2016-06-20 |
| | |||
* | add debian.8-x64 to the list of runtimes | Jan Tattermusch | 2016-06-17 |
| | |||
* | address review comments | Jan Tattermusch | 2016-06-17 |
| | |||
* | migrate everything to netstandard1.5 | Jan Tattermusch | 2016-06-16 |
| | |||
* | update project.json | Jan Tattermusch | 2016-06-15 |
| | |||
* | upgrade protobuf to 3.0.0-beta3 in project.json files | Jan Tattermusch | 2016-06-15 |
| | |||
* | update .xproj files | Jan Tattermusch | 2016-06-15 |
| | |||
* | prevent interfering of project.json files with .csproj files in VS2015 | Jan Tattermusch | 2016-06-15 |
| | |||
* | add support for CoreCLR | Jan Tattermusch | 2016-06-14 |
| | |||
* | get rid of deprecated server and client interface | Jan Tattermusch | 2016-06-06 |
| | |||
* | update C# codegen and regenerate | Jan Tattermusch | 2016-06-06 |
| | |||
* | get rid of servicename argument for server service definition. | Jan Tattermusch | 2016-06-06 |
| | |||
* | fix one more test | Jan Tattermusch | 2016-05-25 |
| | |||
* | fix tests | Jan Tattermusch | 2016-05-25 |
| | |||
* | Merge pull request #6643 from jtattermusch/csharp_profiling2 | Jan Tattermusch | 2016-05-19 |
|\ | | | | | Simplify profiling in C# qps clients. | ||
| * | support adding profilers to C# qps clients | Jan Tattermusch | 2016-05-18 |
| | | |||
| * | return number of cores from server | Jan Tattermusch | 2016-05-18 |
| | | |||
* | | Merge remote-tracking branch 'upstream/release-0_14' into HEAD | Jan Tattermusch | 2016-05-18 |
|\ \ | |/ |/| | |||
| * | rename names of generated enum values to match protobuf3beta3 | Jan Tattermusch | 2016-05-16 |
| | | |||
| * | regenerate C# protobuf messages | Jan Tattermusch | 2016-05-16 |
| | | |||
| * | Update Grpc.sln to Google.Protobuf.3.0.0-beta3 | Jan Tattermusch | 2016-05-16 |
| | | |||
* | | fix qps reporting in C# stress client | Jan Tattermusch | 2016-05-11 |
| | | |||
* | | Merge pull request #6493 from jtattermusch/csharp_streaming_api_exceptions | Jan Tattermusch | 2016-05-10 |
|\ \ | | | | | | | C#: make writes throw RpcException if the client-side call has already finished | ||
| * | | fix TimeoutOnSleepingServer interop test | Jan Tattermusch | 2016-05-10 |
| | | | |||
* | | | Merge pull request #6498 from jtattermusch/csharp_server_improvements | Jan Tattermusch | 2016-05-10 |
|\ \ \ | |_|/ |/| | | C# server performance improvements | ||
| * | | dont create dedicated threads for async client | Jan Tattermusch | 2016-05-09 |
| |/ | |||
* / | regenerate C# code | Jan Tattermusch | 2016-05-09 |
|/ | |||
* | regenerate C# sources | Jan Tattermusch | 2016-04-28 |
| | |||
* | Merge pull request #6284 from jtattermusch/csharp_optional_client_codegen | Nicolas Noble | 2016-04-27 |
|\ | | | | | Add new cmdline options to C# codegen. | ||
| * | regenerate code | Jan Tattermusch | 2016-04-26 |
| | | |||
* | | fix #5912 | Jan Tattermusch | 2016-04-26 |
|/ | |||
* | regenerate C# protos | Jan Tattermusch | 2016-04-25 |
| | |||
* | Merge pull request #6256 from jtattermusch/csharp_stressclient | Jan Tattermusch | 2016-04-25 |
|\ | | | | | Initial draft of C# stress test client | ||
| * | address comments | Jan Tattermusch | 2016-04-25 |
| | | |||
| * | add generated proto files | Jan Tattermusch | 2016-04-21 |
| | | |||
| * | add metrics.proto generated files to C# project | Jan Tattermusch | 2016-04-21 |
| | | |||
| * | Add C# stress test client | Jan Tattermusch | 2016-04-21 |
| | | |||
* | | Add support for an "OTHER" value in client_type, server_type, and add a ↵ | vjpai | 2016-04-21 |
|/ | | | | | | | string to represent the name of the desired system api. This allows expansion without putting an upper-limit based on some foressen variants. |