Skip to content

Commit 8f03067

Browse files
committed
completed basic feature
0 parents  commit 8f03067

File tree

63 files changed

+5234
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+5234
-0
lines changed

.gitattributes

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
*.doc diff=astextplain
2+
*.DOC diff=astextplain
3+
*.docx diff=astextplain
4+
*.DOCX diff=astextplain
5+
*.dot diff=astextplain
6+
*.DOT diff=astextplain
7+
*.pdf diff=astextplain
8+
*.PDF diff=astextplain
9+
*.rtf diff=astextplain
10+
*.RTF diff=astextplain
11+
*.jpg binary
12+
*.png binary
13+
*.gif binary
14+
*.cs text=auto diff=csharp
15+
*.vb text=auto
16+
*.resx text=auto
17+
*.c text=auto
18+
*.cpp text=auto
19+
*.cxx text=auto
20+
*.h text=auto
21+
*.hxx text=auto
22+
*.py text=auto
23+
*.rb text=auto
24+
*.java text=auto
25+
*.html text=auto
26+
*.htm text=auto
27+
*.css text=auto
28+
*.scss text=auto
29+
*.sass text=auto
30+
*.less text=auto
31+
*.js text=auto
32+
*.lisp text=auto
33+
*.clj text=auto
34+
*.sql text=auto
35+
*.php text=auto
36+
*.lua text=auto
37+
*.m text=auto
38+
*.asm text=auto
39+
*.erl text=auto
40+
*.fs text=auto
41+
*.fsx text=auto
42+
*.hs text=auto
43+
*.csproj text=auto
44+
*.vbproj text=auto
45+
*.fsproj text=auto
46+
*.dbproj text=auto
47+
*.sln text=auto eol=lf

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
[Oo]bj/
2+
[Bb]in/
3+
TestResults/
4+
.nuget/
5+
_ReSharper.*/
6+
packages/
7+
artifacts/
8+
PublishProfiles/
9+
*.user
10+
*.suo
11+
*.cache
12+
*.docstates
13+
_ReSharper.*
14+
nuget.exe
15+
*net45.csproj
16+
*net451.csproj
17+
*k10.csproj
18+
*.psess
19+
*.vsp
20+
*.pidb
21+
*.userprefs
22+
*DS_Store
23+
*.ncrunchsolution
24+
*.*sdf
25+
*.ipch
26+
*.sln.ide
27+
*.sublime-workspace
28+
node_modules/
29+
node_modules1/
30+
node_modules2/
31+
.build/
32+
logs/
33+
typings/
34+
project.lock.json
35+
classes
36+
data
37+
temp
38+
doc/site
39+
dist
40+
# Logs
41+
logs
42+
*.log
43+
npm-debug.log*
44+
# Runtime data
45+
pids
46+
*.pid
47+
*.seed
48+
# Directory for instrumented libs generated by jscoverage/JSCover
49+
lib-cov
50+
# Coverage directory used by tools like istanbul
51+
coverage
52+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
53+
.grunt
54+
# node-waf configuration
55+
.lock-wscript
56+
# Compiled binary addons (http://nodejs.org/api/addons.html)
57+
build/Release
58+
# Dependency directory
59+
node_modules
60+
# Optional npm cache directory
61+
.npm
62+
# Optional REPL history
63+
.node_repl_history
64+
cache/
65+
.vs/
66+
*.lnk
67+
*.Production.json
68+
.idea/
69+
workspace.xml

.vscode/launch.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/src/GrpcApi/bin/Debug/net5.0/GrpcApi.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/src/GrpcApi",
16+
"stopAtEntry": false,
17+
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
18+
"serverReadyAction": {
19+
"action": "openExternally",
20+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
21+
},
22+
"env": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
},
25+
"sourceFileMap": {
26+
"/Views": "${workspaceFolder}/Views"
27+
}
28+
},
29+
{
30+
"name": ".NET Core Attach",
31+
"type": "coreclr",
32+
"request": "attach"
33+
}
34+
]
35+
}

.vscode/tasks.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/GrpcApi/GrpcApi.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/src/GrpcApi/GrpcApi.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"${workspaceFolder}/src/GrpcApi/GrpcApi.csproj",
36+
"/property:GenerateFullPaths=true",
37+
"/consoleloggerparameters:NoSummary"
38+
],
39+
"problemMatcher": "$msCompile"
40+
}
41+
]
42+
}

grpc-http-api.sln

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HttpApi", "src\Grpc.HttpApi\Grpc.HttpApi.csproj", "{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{A1ABCF27-B5A5-4CC4-8D82-EC361D748399}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HttpApi.UnitTests", "tests\Grpc.HttpApi.UnitTests\Grpc.HttpApi.UnitTests.csproj", "{45DA133D-5654-4921-944A-3BCD8F8D5C2E}"
11+
EndProject
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{64E26774-BCC7-4B21-A0C2-DE84DB0412A6}"
13+
EndProject
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sample", "sample", "{2011C53A-6B62-4364-95C3-18BCC6AA1C06}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grpc.HttpApi.Sample", "sample\Grpc.HttpApi.Sample\Grpc.HttpApi.Sample.csproj", "{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Debug|x64 = Debug|x64
22+
Debug|x86 = Debug|x86
23+
Release|Any CPU = Release|Any CPU
24+
Release|x64 = Release|x64
25+
Release|x86 = Release|x86
26+
EndGlobalSection
27+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
28+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|x64.ActiveCfg = Debug|Any CPU
31+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|x64.Build.0 = Debug|Any CPU
32+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|x86.ActiveCfg = Debug|Any CPU
33+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Debug|x86.Build.0 = Debug|Any CPU
34+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|x64.ActiveCfg = Release|Any CPU
37+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|x64.Build.0 = Release|Any CPU
38+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|x86.ActiveCfg = Release|Any CPU
39+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39}.Release|x86.Build.0 = Release|Any CPU
40+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|x64.ActiveCfg = Debug|Any CPU
43+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|x64.Build.0 = Debug|Any CPU
44+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|x86.ActiveCfg = Debug|Any CPU
45+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Debug|x86.Build.0 = Debug|Any CPU
46+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
47+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
48+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|x64.ActiveCfg = Release|Any CPU
49+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|x64.Build.0 = Release|Any CPU
50+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|x86.ActiveCfg = Release|Any CPU
51+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E}.Release|x86.Build.0 = Release|Any CPU
52+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
53+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|Any CPU.Build.0 = Debug|Any CPU
54+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|x64.ActiveCfg = Debug|Any CPU
55+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|x64.Build.0 = Debug|Any CPU
56+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|x86.ActiveCfg = Debug|Any CPU
57+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Debug|x86.Build.0 = Debug|Any CPU
58+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|Any CPU.ActiveCfg = Release|Any CPU
59+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|Any CPU.Build.0 = Release|Any CPU
60+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|x64.ActiveCfg = Release|Any CPU
61+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|x64.Build.0 = Release|Any CPU
62+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|x86.ActiveCfg = Release|Any CPU
63+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C}.Release|x86.Build.0 = Release|Any CPU
64+
EndGlobalSection
65+
GlobalSection(SolutionProperties) = preSolution
66+
HideSolutionNode = FALSE
67+
EndGlobalSection
68+
GlobalSection(NestedProjects) = preSolution
69+
{762F3ADD-22E0-4B0A-A7AE-27EDDEB21A39} = {64E26774-BCC7-4B21-A0C2-DE84DB0412A6}
70+
{45DA133D-5654-4921-944A-3BCD8F8D5C2E} = {A1ABCF27-B5A5-4CC4-8D82-EC361D748399}
71+
{5D61A06C-4D03-40D5-BB37-FC1196A2D84C} = {2011C53A-6B62-4364-95C3-18BCC6AA1C06}
72+
EndGlobalSection
73+
GlobalSection(ExtensibilityGlobals) = postSolution
74+
SolutionGuid = {627A60A6-2B67-4DF0-B96E-443BF008FF7E}
75+
EndGlobalSection
76+
EndGlobal

readme.md

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6+
</PropertyGroup>
7+
8+
9+
<ItemGroup>
10+
<Protobuf Include="Protos\greet.proto" ProtoRoot="Protos" GrpcServices="Server" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<PackageReference Include="Grpc.AspNetCore" Version="2.39.0" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<ProjectReference Include="..\..\src\Grpc.HttpApi\Grpc.HttpApi.csproj" />
19+
</ItemGroup>
20+
21+
</Project>

sample/Grpc.HttpApi.Sample/Program.cs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
using Microsoft.AspNetCore.Hosting;
2+
using Microsoft.Extensions.Hosting;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
using System.Linq;
7+
using System.Threading.Tasks;
8+
9+
namespace Grpc.HttpApi.Sample
10+
{
11+
public static class Program
12+
{
13+
public static void Main(string[] args)
14+
{
15+
CreateHostBuilder(args).Build().Run();
16+
}
17+
18+
// Additional configuration is required to successfully run gRPC on macOS.
19+
// For instructions on how to configure Kestrel and gRPC clients on macOS, visit https://go.microsoft.com/fwlink/?linkid=2099682
20+
public static IHostBuilder CreateHostBuilder(string[] args) =>
21+
Host.CreateDefaultBuilder(args)
22+
.ConfigureWebHostDefaults(webBuilder =>
23+
{
24+
webBuilder.UseStartup<Startup>();
25+
});
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"profiles": {
3+
"Grpc.HttpApi.Sample": {
4+
"commandName": "Project",
5+
"dotnetRunMessages": "true",
6+
"launchBrowser": false,
7+
"applicationUrl": "http://localhost:5000;",
8+
"environmentVariables": {
9+
"ASPNETCORE_ENVIRONMENT": "Development"
10+
}
11+
}
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
// [START declaration]
3+
syntax = "proto3";
4+
package grpc.extensions;
5+
// [END declaration]
6+
7+
// [START csharp_declaration]
8+
option csharp_namespace = "Grpc.HttpApi";
9+
// [END csharp_declaration]
10+
11+
import "google/protobuf/descriptor.proto";
12+
13+
14+
extend google.protobuf.MethodOptions {
15+
HttpApiOption http_api_option = 51003; //http api option
16+
}
17+
18+
message HttpApiOption {
19+
string path = 1 ; //pattern
20+
string method = 2 ; //request one of method get/post/put/patch/delete
21+
string description = 3 ; //description
22+
string plugin = 4 ; //http api plugin class full name
23+
string category = 5 ; //api category
24+
string version = 6 ; //api version,default v1
25+
}

0 commit comments

Comments
 (0)