aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Make default log verbosity ERROR, run tests with DEBUGGravatar Craig Tiller2016-07-18
|
* Merge pull request #7401 from jskeet/fix-native-v1Gravatar kpayson642016-07-15
|\ | | | | Overhaul how the native extension is found, loaded and used
* | unify the version of google/authGravatar thinkerou2016-07-15
| |
| * Overhaul how the native extension is found, loaded and usedGravatar Jon Skeet2016-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.
* Merge pull request #7376 from grpc/jcanizales-fix-protobuf-importGravatar kpayson642016-07-14
|\ | | | | Don't always import Protobuf like a framework
* \ Merge pull request #7384 from soltanmm/import-stallionGravatar kpayson642016-07-14
|\ \ | | | | | | Move Python.h include out of loader code
* \ \ Merge pull request #7389 from stanley-cheung/php-fix-interop-test-1_0Gravatar Stanley Cheung2016-07-14
|\ \ \ | | | | | | | | PHP: fix interop tests breakage
* \ \ \ Merge pull request #7378 from kpayson64/py_doc_touchupGravatar kpayson642016-07-14
|\ \ \ \ | | | | | | | | | | Document rpc details as string type
| | * | | php: fix interop tests breakageGravatar Stanley Cheung2016-07-13
| |/ / / |/| | |
| | * | Remove Python 'loader' hackGravatar Masood Malekghassemi2016-07-13
| | | |
* | | | Merge pull request #7346 from murgatroid99/ruby_ga_documentation_fixesGravatar Nicolas Noble2016-07-13
|\ \ \ \ | | | | | | | | | | Improved some Ruby inline documentation
| | | * | Move Python.h include out of loader codeGravatar Masood Malekghassemi2016-07-13
| |_|/ / |/| | | | | | | | | | | | | | | To make a certain private code base work in a certain way nicer than the current way.
* | | | Merge pull request #7363 from stanley-cheung/php-prepare-for-ga-v1_0branchGravatar kpayson642016-07-13
|\ \ \ \ | | | | | | | | | | php: prepare for GA release
| | | * | Document rpc details as string typeGravatar Ken Payson2016-07-13
| | | | |
| | | | * Don't always import Protobuf like a frameworkGravatar Jorge Canizales2016-07-13
| |_|_|/ |/| | | | | | | If the macro isn't set, e.g. for Bazel compilations, import the way it was done before https://github.com/grpc/grpc/commit/fb4a54541a6e00c43e1671cda0a25e2eda4792df.
* | | | Merge pull request #7366 from y-zeng/fix-chttp2-parsing-msgGravatar kpayson642016-07-13
|\ \ \ \ | |_|_|/ |/| | | Remove unnecessary "Failed parsing HTTP2" detail
| | * | add back version to composer.json fileGravatar Stanley Cheung2016-07-13
| | | |
* | | | Merge pull request #7359 from jcanizales/p0-protoc-podspecGravatar makdharma2016-07-13
|\ \ \ \ | | | | | | | | | | Distribute ProtoC and the plugin as pods
| | | * | php: prepare for GA releaseGravatar Stanley Cheung2016-07-13
| |_|/ / |/| | |
* | | | Merge pull request #7355 from soltanmm/count-bleckGravatar kpayson642016-07-13
|\ \ \ \ | | | | | | | | | | Add special methods to generated Python docs
* \ \ \ \ Merge pull request #7338 from kpayson64/remove_py_cruftGravatar kpayson642016-07-12
|\ \ \ \ \ | | | | | | | | | | | | Removed early adopter code
| | * | | | Add special methods to generated Python docsGravatar Masood Malekghassemi2016-07-12
| |/ / / / |/| | | | | | | | | | | | | | | | | | | Also removes an old-now-spurious `make` invocation from the docgen.py helper script.
| * | | | Remove early adopter codeGravatar Ken Payson2016-07-12
| | | | |
| | | | * Improved some Ruby inline documentationGravatar murgatroid992016-07-12
| | |_|/ | |/| |
* / | | Added Glossary to docs with metadata definitionGravatar Ken Payson2016-07-12
|/ / /
* | | Flagging master as 1.0.0-pre1.Gravatar Nicolas "Pixel" Noble2016-07-12
| | |
* | | Merge pull request #7322 from kpayson64/py_status_code_messageGravatar kpayson642016-07-11
|\ \ \ | | | | | | | | Implemented python status_code_and_message interop test
* \ \ \ Merge pull request #7315 from kpayson64/fix_exit_testGravatar kpayson642016-07-11
|\ \ \ \ | | | | | | | | | | Updated exit_test for new grpc.Server API
* \ \ \ \ Merge pull request #7323 from kpayson64/fix_py_qpsGravatar kpayson642016-07-11
|\ \ \ \ \ | | | | | | | | | | | | Updated python qps tests to use GA server API
| * | | | | Updated python qps tests to use GA server APIGravatar Ken Payson2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should have been included as part of 45c0f2b3051bf1642337e109df57e8031cb654c8
* | | | | | Addressing comments.Gravatar Nicolas "Pixel" Noble2016-07-12
| | | | | |
* | | | | | Merge branch 'release-0_15' into upmerge-masterGravatar Nicolas "Pixel" Noble2016-07-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile build.yaml gRPC-Core.podspec gRPC.podspec package.json package.xml src/core/lib/surface/version.c src/csharp/Grpc.Auth/project.json src/csharp/Grpc.Core/VersionInfo.cs src/csharp/Grpc.Core/project.json src/csharp/Grpc.HealthCheck/project.json src/csharp/build_packages.bat src/node/tools/package.json src/python/grpcio/grpc/__init__.py src/python/grpcio/grpc_version.py src/python/grpcio_tests/tests/unit/_rpc_test.py src/ruby/lib/grpc/version.rb src/ruby/tools/version.rb templates/gRPC.podspec.template tools/distrib/python/grpcio_tools/grpc_version.py tools/doxygen/Doxyfile.c++ tools/doxygen/Doxyfile.c++.internal tools/doxygen/Doxyfile.core tools/doxygen/Doxyfile.core.internal tools/run_tests/port_server.py
* \ \ \ \ \ \ Merge pull request #7291 from ctiller/better_statusGravatar Nicolas Noble2016-07-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Make it more likely to correctly report deadline exceeded
* \ \ \ \ \ \ \ Merge pull request #7310 from kpayson64/hold_gil_during_cleanupGravatar kpayson642016-07-11
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | Hold onto the GIL in __dealloc__ functions
| | | | * | | | Updated exit_test for new grpc.Server APIGravatar Ken Payson2016-07-11
| |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | This should have been part of a6b2a5a090ff057f77976b22d854ff375883c1b9
| | | | * | | Implemented python status_code_and_message interop testGravatar Ken Payson2016-07-11
| | | | | | |
| | | * | | | Merge branch 'release-0_14' into release-0_15Gravatar Nicolas "Pixel" Noble2016-07-12
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gRPC.podspec src/objective-c/BoringSSL.podspec src/objective-c/examples/RemoteTestClient/RemoteTest.podspec src/objective-c/examples/Sample/Sample.xcodeproj/project.pbxproj src/objective-c/examples/SwiftSample/SwiftSample.xcodeproj/project.pbxproj src/objective-c/tests/Podfile templates/gRPC.podspec.template third_party/protobuf
| | * | | | | | clang-formatGravatar Craig Tiller2016-07-11
| | | | | | | |
| | | | | | | * Remove unnecessary parsing detailGravatar Yuchen Zeng2016-07-11
| |_|_|_|_|_|/ |/| | | | | |
| | | | | | * Merge master to resolve tests podspec conflictGravatar Jorge Canizales2016-07-11
| | | | | | |\ | |_|_|_|_|_|/ |/| | | | | |
| | | | | | * Tests Podfile cleanupGravatar Jorge Canizales2016-07-11
| | | | | | |
| | | | | | * Use the deployed protoc spec in samples and READMEGravatar Jorge Canizales2016-07-11
| | | | | | |
| * | | | | | Hold onto the GIL in __dealloc__ functionsGravatar Ken Payson2016-07-11
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a child thread triggers __dealloc__ as part of a thread being joined, the thread is already considered to be "joined", and so releasing the GIL can allow the main thread to proceed to exit, which introduces shutdown race conditions/memory leaks.
* | | | | | Merge pull request #7242 from yang-g/importGravatar kpayson642016-07-11
|\ \ \ \ \ \ | | | | | | | | | | | | | | Remove unused file
* \ \ \ \ \ \ Merge pull request #7289 from stanley-cheung/php-remove-debugGravatar kpayson642016-07-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | PHP: remove gpr_log debug
| | | | | | | * gRPC plugin podspec: license & deployment targetGravatar Jorge Canizales2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | For the spec to pass linting.
* | | | | | | | Merge pull request #7288 from makdharma/protobuf_import_issue7219Gravatar makdharma2016-07-11
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | fixes #7259
| | | | | | | * ProtoCompiler.podspec: license & deployment targetGravatar Jorge Canizales2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | For the spec to pass linting.
| | | | | | | * Podspecs for Protoc and the gRPC pluginGravatar Jorge Canizales2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The examples under <repo_root>/examples now rely on the released versions. Those under src/objective-c/examples, as well as the tests, rely on protoc and the plugin as compiled from head.
| | | * | | | | Merge remote-tracking branch 'upstream/master' into importGravatar yang-g2016-07-08
| | | |\ \ \ \ \ | |_|_|/ / / / / |/| | | | | | |