Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
ff93def6
Commit
ff93def6
authored
Dec 12, 2014
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve TODO(now|soon) and remove KJ_DBG.
parent
e5747a57
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
13 deletions
+9
-13
capnpc-c++.c++
c++/src/capnp/compiler/capnpc-c++.c++
+2
-3
layout.c++
c++/src/capnp/layout.c++
+1
-1
message-test.c++
c++/src/capnp/message-test.c++
+0
-1
stringify.c++
c++/src/capnp/stringify.c++
+1
-1
async-io.c++
c++/src/kj/async-io.c++
+1
-1
async.c++
c++/src/kj/async.c++
+1
-1
exception.c++
c++/src/kj/exception.c++
+2
-3
exception.h
c++/src/kj/exception.h
+1
-2
No files found.
c++/src/capnp/compiler/capnpc-c++.c++
View file @
ff93def6
...
...
@@ -1148,9 +1148,8 @@ private:
size_t
defaultOffset
=
0
;
// pointers only: offset of the default value within the schema.
size_t
defaultSize
=
0
;
// blobs only: byte size of the default value.
auto
typeBody
=
slot
.
getType
();
auto
defaultBody
=
slot
.
getDefaultValue
();
switch
(
type
Body
.
which
())
{
// TODO(now): Use typeSchema, not typeBody.
switch
(
type
Schema
.
which
())
{
case
schema
:
:
Type
::
VOID
:
kind
=
FieldKind
::
PRIMITIVE
;
setterDefault
=
" = ::capnp::VOID"
;
...
...
@@ -1239,7 +1238,7 @@ private:
if
(
defaultBody
.
hasAnyPointer
())
{
defaultOffset
=
field
.
getDefaultValueSchemaOffset
();
}
if
(
type
Body
.
getAnyPointer
().
isParameter
()
)
{
if
(
type
Schema
.
getBrandParameter
()
!=
nullptr
)
{
kind
=
FieldKind
::
BRAND_PARAMETER
;
}
break
;
...
...
c++/src/capnp/layout.c++
View file @
ff93def6
...
...
@@ -2775,7 +2775,7 @@ void OrphanBuilder::truncate(ElementCount size, bool isText) {
return
;
}
// TODO(so
on
): Implement truncation of all sizes.
// TODO(so
meday
): Implement truncation of all sizes.
KJ_ASSERT
(
ref
->
listRef
.
elementSize
()
==
ElementSize
::
BYTE
,
"Not implemented: truncate non-blob."
);
...
...
c++/src/capnp/message-test.c++
View file @
ff93def6
...
...
@@ -132,7 +132,6 @@ TEST(Message, MessageBuilderInitSpaceAvailable) {
KJ_ASSERT
(
segs
[
0
].
begin
()
==
buffer
);
MessageBuilder
::
SegmentInit
init
=
{
kj
::
ArrayPtr
<
word
>
(
buffer
),
segs
[
0
].
size
()
};
KJ_DBG
(
init
.
space
.
size
(),
init
.
wordsUsed
);
// Init a new builder from the old segments.
TestInitMessageBuilder
builder2
(
kj
::
arrayPtr
(
&
init
,
1
));
...
...
c++/src/capnp/stringify.c++
View file @
ff93def6
...
...
@@ -141,7 +141,7 @@ static kj::StringTree print(const DynamicValue::Reader& value,
}
case
DynamicValue
:
:
TEXT
:
case
DynamicValue
:
:
DATA
:
{
// TODO(
now): D
ata should be printed as binary literal.
// TODO(
someday): Maybe d
ata should be printed as binary literal.
kj
::
ArrayPtr
<
const
char
>
chars
;
if
(
value
.
getType
()
==
DynamicValue
::
DATA
)
{
chars
=
value
.
as
<
Data
>
().
asChars
();
...
...
c++/src/kj/async-io.c++
View file @
ff93def6
...
...
@@ -351,7 +351,7 @@ public:
if
(
isStream
&&
(
addr
.
generic
.
sa_family
==
AF_INET
||
addr
.
generic
.
sa_family
==
AF_INET6
))
{
// TODO(
0.5
): As a hack for the 0.4 release we are always setting
// TODO(
perf
): As a hack for the 0.4 release we are always setting
// TCP_NODELAY because Nagle's algorithm pretty much kills Cap'n Proto's
// RPC protocol. Later, we should extend the interface to provide more
// control over this. Perhaps write() should have a flag which
...
...
c++/src/kj/async.c++
View file @
ff93def6
...
...
@@ -187,7 +187,7 @@ public:
bool
poll
()
override
{
return
false
;
}
void
wake
()
const
override
{
// TODO(so
on
): Implement using condvar.
// TODO(so
meday
): Implement using condvar.
kj
::
throwRecoverableException
(
KJ_EXCEPTION
(
UNIMPLEMENTED
,
"Cross-thread events are not yet implemented for EventLoops with no EventPort."
));
}
...
...
c++/src/kj/exception.c++
View file @
ff93def6
...
...
@@ -123,7 +123,7 @@ String getStackSymbols(ArrayPtr<void* const> trace) {
}
// namespace
ArrayPtr
<
const
char
>
KJ_STRINGIFY
(
Exception
::
Type
type
)
{
StringPtr
KJ_STRINGIFY
(
Exception
::
Type
type
)
{
static
const
char
*
TYPE_STRINGS
[]
=
{
"failed"
,
"overloaded"
,
...
...
@@ -131,8 +131,7 @@ ArrayPtr<const char> KJ_STRINGIFY(Exception::Type type) {
"unimplemented"
};
const
char
*
s
=
TYPE_STRINGS
[
static_cast
<
uint
>
(
type
)];
return
arrayPtr
(
s
,
strlen
(
s
));
return
TYPE_STRINGS
[
static_cast
<
uint
>
(
type
)];
}
String
KJ_STRINGIFY
(
const
Exception
&
e
)
{
...
...
c++/src/kj/exception.h
View file @
ff93def6
...
...
@@ -120,8 +120,7 @@ private:
friend
class
ExceptionImpl
;
};
// TODO(soon): These should return StringPtr.
ArrayPtr
<
const
char
>
KJ_STRINGIFY
(
Exception
::
Type
type
);
StringPtr
KJ_STRINGIFY
(
Exception
::
Type
type
);
String
KJ_STRINGIFY
(
const
Exception
&
e
);
// =======================================================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment