Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
6c0b960a
Commit
6c0b960a
authored
8 years ago
by
Muxi Yan
Browse files
Options
Downloads
Patches
Plain Diff
Name revision
parent
0814e3cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/objective-c/GRPCClient/GRPCCall.h
+9
-9
9 additions, 9 deletions
src/objective-c/GRPCClient/GRPCCall.h
src/objective-c/GRPCClient/GRPCCall.m
+10
-14
10 additions, 14 deletions
src/objective-c/GRPCClient/GRPCCall.m
with
19 additions
and
23 deletions
src/objective-c/GRPCClient/GRPCCall.h
+
9
−
9
View file @
6c0b960a
...
...
@@ -155,15 +155,15 @@ typedef NS_ENUM(NSUInteger, GRPCErrorCode) {
};
/**
* Flags for options of a gRPC call
*
* Safety remark of a gRPC method as defined in RFC 2616 Section 9.1
*/
typedef
NS_ENUM
(
NSUInteger
,
GRPCCallAttr
)
{
GRPCCallAttrDefault
=
0
,
/** Signal that the call is idempotent */
GRPCCallAttrIdempotentRequest
=
1
,
/** Signal that the call is cacheable. GRPC is free to use GET verb */
GRPCCallAttrCacheableRequest
=
2
,
typedef
NS_ENUM
(
NSUInteger
,
GRPCCallSafety
)
{
/** Signal that there is no guarantees on how the call affects the server state. */
GRPCCallSafetyDefault
=
0
,
/** Signal that the call is idempotent. gRPC is free to use PUT verb. */
GRPCCallSafetyIdempotentRequest
=
1
,
/** Signal that the call is cacheable and will not affect server state. gRPC is free to use GET verb. */
GRPCCallSafetyCacheableRequest
=
2
,
};
/**
...
...
@@ -251,7 +251,7 @@ extern id const kGRPCTrailersKey;
* Host parameter should not contain the scheme (http:// or https://), only the name or IP addr
* and the port number, for example @"localhost:5050".
*/
+
(
void
)
setCall
Attribute
:(
GRPCCall
Attr
)
callAttr
host
:(
NSString
*
)
host
path
:(
NSString
*
)
path
;
+
(
void
)
setCall
Safety
:(
GRPCCall
Safety
)
callSafety
host
:(
NSString
*
)
host
path
:(
NSString
*
)
path
;
// TODO(jcanizales): Let specify a deadline. As a category of GRXWriter?
@end
...
...
This diff is collapsed.
Click to expand it.
src/objective-c/GRPCClient/GRPCCall.m
+
10
−
14
View file @
6c0b960a
...
...
@@ -110,16 +110,16 @@ static NSMutableDictionary *callFlags;
callFlags
=
[
NSMutableDictionary
dictionary
];
}
+
(
void
)
setCall
Attribute
:(
GRPCCall
Attr
)
callAttr
host
:(
NSString
*
)
host
path
:(
NSString
*
)
path
{
NSString
*
hostAndPath
=
[
NSString
stringWithFormat
:
@"%@%@"
,
host
,
path
];
switch
(
call
Attr
)
{
case
GRPCCall
Attr
Default
:
+
(
void
)
setCall
Safety
:(
GRPCCall
Safety
)
callSafety
host
:(
NSString
*
)
host
path
:(
NSString
*
)
path
{
NSString
*
hostAndPath
=
[
NSString
stringWithFormat
:
@"%@
/
%@"
,
host
,
path
];
switch
(
call
Safety
)
{
case
GRPCCall
Safety
Default
:
callFlags
[
hostAndPath
]
=
@0
;
break
;
case
GRPCCall
Attr
IdempotentRequest
:
case
GRPCCall
Safety
IdempotentRequest
:
callFlags
[
hostAndPath
]
=
@GRPC
_INITIAL_METADATA_IDEMPOTENT_REQUEST
;
break
;
case
GRPCCall
Attr
CacheableRequest
:
case
GRPCCall
Safety
CacheableRequest
:
callFlags
[
hostAndPath
]
=
@GRPC
_INITIAL_METADATA_CACHEABLE_REQUEST
;
break
;
default:
...
...
@@ -127,13 +127,9 @@ static NSMutableDictionary *callFlags;
}
}
+
(
uint32_t
)
getCallFlag
:(
NSString
*
)
host
path
:(
NSString
*
)
path
{
NSString
*
hostAndPath
=
[
NSString
stringWithFormat
:
@"%@%@"
,
host
,
path
];
if
(
nil
!=
[
callFlags
objectForKey
:
hostAndPath
])
{
return
[
callFlags
[
hostAndPath
]
intValue
];
}
else
{
return
0
;
}
+
(
uint32_t
)
callFlagsForHost
:(
NSString
*
)
host
path
:(
NSString
*
)
path
{
NSString
*
hostAndPath
=
[
NSString
stringWithFormat
:
@"%@/%@"
,
host
,
path
];
return
[
callFlags
[
hostAndPath
]
intValue
];
}
-
(
instancetype
)
init
{
...
...
@@ -259,7 +255,7 @@ static NSMutableDictionary *callFlags;
-
(
void
)
sendHeaders
:(
NSDictionary
*
)
headers
{
// TODO(jcanizales): Add error handlers for async failures
[
_wrappedCall
startBatchWithOperations
:@[[[
GRPCOpSendMetadata
alloc
]
initWithMetadata
:
headers
flags:
(
uint32_t
)
[
GRPCCall
getC
allFlag
:
_host
path
:
_path
]
flags:
[
GRPCCall
c
allFlag
sForHost
:
_host
path
:
_path
]
handler:
nil
]]];
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment