]> asedeno.scripts.mit.edu Git - cl-protobufs.git/log
cl-protobufs.git
11 years agoparser.lisp: tweak method parsing
Alejandro R Sedeño [Wed, 20 Feb 2013 17:54:53 +0000 (12:54 -0500)]
parser.lisp: tweak method parsing

Don't assume that returning no options meant there was no body in the
method declaration. An empty body may have been there
instead. Distinguish that scenario with a second return value from
PARSE-PROTO-METHOD-OPTIONS and use that value in PARSE-PROTO-METHOD
determine whether or not to look for a semicolon.

11 years agoDon't assume 32-bits integers fit in a fixnum
Alejandro R Sedeño [Fri, 15 Feb 2013 23:13:13 +0000 (18:13 -0500)]
Don't assume 32-bits integers fit in a fixnum

Follow up to the last commit; I should really know better.

11 years agoFix double creation for ccl when high bits are negative
Alejandro R Sedeño [Fri, 15 Feb 2013 18:08:55 +0000 (13:08 -0500)]
Fix double creation for ccl when high bits are negative

11 years agoprinter.lisp: better preserve proto names
Alejandro R Sedeño [Tue, 12 Feb 2013 00:54:59 +0000 (19:54 -0500)]
printer.lisp: better preserve proto names

[proto -> lisp]
1) Do case-sensitive comparisons between the name we have and the name
   we would derive from #'CLASS-NAME->PROTO. Case matters.

2) Do not downcase :name options when we're outputting them to a .lisp
   file. Again, case matters.

3) Preserve names for PROTOBUF-SERVICEs, as necessary.

4) Preserve names, input-names, and output-names for PROTOBUF-METHODs,
   as necessary.

11 years agounit tests for case preservation
Alejandro R Sedeño [Tue, 12 Feb 2013 17:56:20 +0000 (12:56 -0500)]
unit tests for case preservation

11 years agoprinter.lisp: consume more arguments when appropriate
Alejandro R Sedeño [Mon, 11 Feb 2013 23:32:17 +0000 (18:32 -0500)]
printer.lisp: consume more arguments when appropriate

Here we should have been consuming both the thing we would be printing
and the indentation we would use on the next line, but in the case
where the printed thing was nil, we would only consume it, and not the
subsequent indentation. It worked out here, but the mistake could only
be made once, and only at the end.

11 years agoprinter.lisp: ~*~* -> ~2*
Alejandro R Sedeño [Mon, 11 Feb 2013 23:31:34 +0000 (18:31 -0500)]
printer.lisp: ~*~* -> ~2*

11 years agoprinter.lisp: don't export symbols not in our package
Alejandro R Sedeño [Mon, 11 Feb 2013 18:23:15 +0000 (13:23 -0500)]
printer.lisp: don't export symbols not in our package

11 years agoparser.lisp: set up fall-back package names
Alejandro R Sedeño [Fri, 4 Jan 2013 20:32:23 +0000 (15:32 -0500)]
parser.lisp: set up fall-back package names

Robert Brown's protobuf package falls back on the java_package option
as the lisp package name when there isn't a package declaration in the
schema. Emulate that behavior for better compatibility between code
generated by the packages.

11 years agoprinter.lisp: Collect exports from messages defned in messages
Alejandro R Sedeño [Fri, 4 Jan 2013 20:32:04 +0000 (15:32 -0500)]
printer.lisp: Collect exports from messages defned in messages

11 years agoprinter.lisp: qualify generated UNLESS, just like the rest of the COMMON-LISP functions
Alejandro R Sedeño [Fri, 4 Jan 2013 20:31:34 +0000 (15:31 -0500)]
printer.lisp: qualify generated UNLESS, just like the rest of the COMMON-LISP functions

11 years agoprinter.lisp: drop trailing whitespace on generated package definition
Alejandro R Sedeño [Fri, 4 Jan 2013 20:30:55 +0000 (15:30 -0500)]
printer.lisp: drop trailing whitespace on generated package definition

11 years agoFix typo in comment
Alejandro R Sedeño [Thu, 3 Jan 2013 20:48:01 +0000 (15:48 -0500)]
Fix typo in comment

11 years agoDon't export RUN-ALL-TESTS if we have test-tools, as it won't be defined.
Alejandro R Sedeño [Thu, 3 Jan 2013 20:33:17 +0000 (15:33 -0500)]
Don't export RUN-ALL-TESTS if we have test-tools, as it won't be defined.

11 years agogeneralize CCL fasl ignores
Alejandro R Sedeño [Thu, 3 Jan 2013 18:46:36 +0000 (13:46 -0500)]
generalize CCL fasl ignores

11 years agoGenerate integer encoders and decoders with thought towards the size of a FIXNUM
Alejandro R Sedeño [Mon, 17 Dec 2012 18:47:55 +0000 (13:47 -0500)]
Generate integer encoders and decoders with thought towards the size of a FIXNUM

Rather than hard-code assumptions about the size of a FIXNUM, check
the size of FIXNUM at compile time and generate code appropriate for
the number of bits we're working with, with FIXNUM optimizations
in place if appropriate.

Includes some changes from swmckay@gmail.com.

11 years agointeger encoding/decoding tests
Alejandro R Sedeño [Thu, 3 Jan 2013 01:09:02 +0000 (20:09 -0500)]
integer encoding/decoding tests

11 years agoAdd a few more fasl types
Scott McKay [Thu, 3 Jan 2013 17:08:03 +0000 (12:08 -0500)]
Add a few more fasl types

11 years agoMerge branch 'master' of git://common-lisp.net/projects/qitab/cl-protobufs
Scott McKay [Thu, 3 Jan 2013 17:07:21 +0000 (12:07 -0500)]
Merge branch 'master' of git://common-lisp.net/projects/qitab/cl-protobufs

Conflicts:
tests/qtest.lisp

11 years agoFix some printers, etc
Scott McKay [Thu, 3 Jan 2013 16:56:08 +0000 (11:56 -0500)]
Fix some printers, etc

11 years agodefine-proto: collect DEFTYPE forms before other forms
Paul Weiss [Wed, 2 Jan 2013 17:00:53 +0000 (12:00 -0500)]
define-proto: collect DEFTYPE forms before other forms

Signed-off-by: Alejandro R Sedeño <asedeno@google.com>
11 years agoTweak definition of ASSERT-EQUAL
Alejandro R Sedeño [Mon, 17 Dec 2012 19:50:37 +0000 (14:50 -0500)]
Tweak definition of ASSERT-EQUAL

11 years agoMerge branches 'extend-logic' and 'type-aliases'
Alejandro R Sedeño [Mon, 17 Dec 2012 19:33:00 +0000 (14:33 -0500)]
Merge branches 'extend-logic' and 'type-aliases'

11 years agoThe parent of an extended message is the context in which it was defined
Alejandro R Sedeño [Mon, 17 Dec 2012 00:14:36 +0000 (19:14 -0500)]
The parent of an extended message is the context in which it was defined

11 years agoWhen extending, find extended message by type rather than unqualified name
Alejandro R Sedeño [Sun, 16 Dec 2012 23:01:45 +0000 (18:01 -0500)]
When extending, find extended message by type rather than unqualified name

11 years agoTest various extend scenario
Alejandro R Sedeño [Fri, 14 Dec 2012 19:05:29 +0000 (14:05 -0500)]
Test various extend scenario

Inspired by:
https://developers.google.com/protocol-buffers/docs/proto#extensions

Nested Extensions:

"A common pattern is to define extensions inside the scope of the
 extension's field type – for example, here's an extension to Foo of
 type Baz, where the extension is defined as part of Baz"

11 years agohonor type-aliases when looking up types
Alejandro R Sedeño [Fri, 14 Dec 2012 23:24:05 +0000 (18:24 -0500)]
honor type-aliases when looking up types

11 years agoAdd a test for type-aliases
Alejandro R Sedeño [Fri, 14 Dec 2012 23:23:36 +0000 (18:23 -0500)]
Add a test for type-aliases

11 years agoMuffle style warnings when generating methods in optimized serialization tests
Alejandro R Sedeño [Sat, 15 Dec 2012 02:18:13 +0000 (21:18 -0500)]
Muffle style warnings when generating methods in optimized serialization tests

11 years agoFix PRINT-OBJECT method for protobuf-extension to actually print range
Alejandro R Sedeño [Sun, 16 Dec 2012 23:01:17 +0000 (18:01 -0500)]
Fix PRINT-OBJECT method for protobuf-extension to actually print range

11 years agogitignore fasls
Alejandro R Sedeño [Sat, 15 Dec 2012 02:21:53 +0000 (21:21 -0500)]
gitignore fasls

11 years agoDon't use the expanded type if it's a protobuf enum
Alejandro R Sedeño [Sat, 15 Dec 2012 01:42:22 +0000 (20:42 -0500)]
Don't use the expanded type if it's a protobuf enum

This fixes the unit test that broke in the previous commit

11 years agoMerge branch 'type-expansion'
Alejandro R Sedeño [Wed, 12 Dec 2012 18:40:59 +0000 (13:40 -0500)]
Merge branch 'type-expansion'

11 years agoexpand types in clos transformation when necessary
Alejandro R Sedeño [Mon, 10 Dec 2012 22:23:48 +0000 (17:23 -0500)]
expand types in clos transformation when necessary

11 years agoTest serialization of a user DEFTYPE
Alejandro R Sedeño [Mon, 10 Dec 2012 22:21:21 +0000 (17:21 -0500)]
Test serialization of a user DEFTYPE

11 years agoMerge branch 'master' of git://common-lisp.net/projects/qitab/cl-protobufs
Scott McKay [Sun, 9 Dec 2012 05:04:07 +0000 (10:34 +0530)]
Merge branch 'master' of git://common-lisp.net/projects/qitab/cl-protobufs

Conflicts:
serialize.lisp

11 years agoDon't send default values when serializing
Scott McKay [Sun, 9 Dec 2012 02:48:57 +0000 (08:18 +0530)]
Don't send default values when serializing

11 years agoasdf-support: change perform for load-op to do all work locally and better use input...
Alejandro R Sedeño [Thu, 6 Dec 2012 19:45:52 +0000 (14:45 -0500)]
asdf-support: change perform for load-op to do all work locally and better use input-files

11 years agoasdf-support: move input-files definitions to more logical locations
Alejandro R Sedeño [Thu, 6 Dec 2012 19:44:41 +0000 (14:44 -0500)]
asdf-support: move input-files definitions to more logical locations

11 years agoMerge branch 'rework-asdf-import'
Alejandro R Sedeño [Wed, 5 Dec 2012 21:15:36 +0000 (16:15 -0500)]
Merge branch 'rework-asdf-import'

Reviewer: tunes

11 years agoprocess new .proto-imports file when compiling and loading components
Alejandro R Sedeño [Wed, 5 Dec 2012 01:33:31 +0000 (20:33 -0500)]
process new .proto-imports file when compiling and loading components

11 years agoFix bogus docstring
Alejandro R Sedeño [Wed, 5 Dec 2012 21:08:59 +0000 (16:08 -0500)]
Fix bogus docstring

11 years agogenerate a list of imports for each .proto file
Alejandro R Sedeño [Tue, 4 Dec 2012 21:23:10 +0000 (16:23 -0500)]
generate a list of imports for each .proto file

11 years agoprinter.lisp: Add missing space to docstring
Alejandro R Sedeño [Wed, 5 Dec 2012 01:31:57 +0000 (20:31 -0500)]
printer.lisp: Add missing space to docstring

11 years agoFix docstring and error-reporting in #'PARSE-PROTO-IMPORT
Alejandro R Sedeño [Tue, 4 Dec 2012 16:13:53 +0000 (11:13 -0500)]
Fix docstring and error-reporting in #'PARSE-PROTO-IMPORT

11 years agoAdd a proper input-files method for proto-to-lisp,
Francois-Rene Rideau [Tue, 4 Dec 2012 01:15:05 +0000 (20:15 -0500)]
Add a proper input-files method for proto-to-lisp,
which shall fix the issue that causes of these actions never being operation-done-p.
However this does NOT handle recursive import dependencies,
which requires further work.

Tested: QRes doesn't always recompile the proto and all dependees anymore.
Reviewer: asedeno

11 years agofix cross-package and forward references in cl-protobufs
Ben Wagner [Tue, 20 Nov 2012 18:43:00 +0000 (13:43 -0500)]
fix cross-package and forward references in cl-protobufs

* Previously, if a field in a .proto file referenced a message in
  another proto file using a different lisp package, the cl-protobufs
  library would silently fail to serialize the field.  A similar
  problem would occur if a message defined later in the file used the
  lisp_name option to override the name generated by cl-protobufs.
  This change fixes these issues and others.
* Add conditions that are signaled when encountering an undefined
  type.
* Delay assigning lisp classes/types to fields and methods until all
  possible forward references have been parsed.
   * This allows the class slot to be unbound, so check for that case
     in print-object methods.
   * Add a test for forward references to messages that override the
     lisp name.
   * Add a test for references to messages and enums defined in
     another proto file with a different lisp package.
   * Change color-wheel-stability test, because it used "string" as
     the input type for an rpc, which seems to be disallowed (although
     I haven't found this documented anywhere).
* Signal errors during parsing for undefined types.
   * Add a test for these errors.  Add assert-error macro to qtest.
* Signal a condition if we are unable to find the definition for a
  field's type during serialization, deserialization, determining an
  object's serialized size, printing text format, parsing text format,
  or generating code for one of the above.
* Remove logic in find-qualified-name that indirects through lisp
  packages.  Proto packages and lisp packages do not necessarily map
  1-to-1.
* Always use the schema's lisp package for any symbols generated when
  parsing proto files.
* When generating lisp code using write-schema-as, set the package to
  the package used in the generated file, so that ~s will print the
  package prefix in the correct circumstances.
* Remove broken proto1 "streams" parsing ("returns" comes before
  "streams" in every example I've found); replace with proto2 syntax.
* In process-imports, the call to find-schema using a pathname was not
  giving the expected result.  Sidestep this issue by using the same
  logic to find the schema as is used earlier in the function.

11 years agoGet rid of the warning that vval isn't used in generate-object-size of type-aliased...
Shaun Morris [Mon, 19 Nov 2012 21:41:36 +0000 (13:41 -0800)]
Get rid of the warning that vval isn't used in generate-object-size of type-aliased bools.

11 years agoccl: reverse values from CCL::DOUBLE-FLOAT-BITS
Alejandro R Sedeño [Thu, 15 Nov 2012 23:10:31 +0000 (18:10 -0500)]
ccl: reverse values from CCL::DOUBLE-FLOAT-BITS

11 years agoDon't quote the test name
Alejandro R Sedeño [Thu, 20 Sep 2012 18:08:19 +0000 (14:08 -0400)]
Don't quote the test name

11 years agofix a typo
Alejandro R Sedeño [Thu, 20 Sep 2012 16:00:37 +0000 (12:00 -0400)]
fix a typo

11 years agoccl: Use ccl's float internals
Alejandro R Sedeño [Thu, 20 Sep 2012 16:00:10 +0000 (12:00 -0400)]
ccl: Use ccl's float internals

11 years agoImprove schema generation performance on large schemas
Francois-Rene Rideau [Wed, 7 Nov 2012 23:40:50 +0000 (18:40 -0500)]
Improve schema generation performance on large schemas

Avoid SUBTYPEP during macroexpansion, it can be very expensive on SBCL.
Actually recognize LIST-OF:LIST-OF constructs.
In DEFINE-SCHEMA, don't nest the DEFMETHODs inside the LET,
this also can cause SBCL's control flow analysis to blow up.

Work done with Steven Spitz for QPX.

Tested: (asdf:test-system :cl-protobufs)

11 years agoUpdate a few basic Lisp libraries.
François-René Rideau [Thu, 11 Oct 2012 15:56:21 +0000 (15:56 +0000)]
Update a few basic Lisp libraries.
Testing: [trunk r567444] precheckin --parallel 11  PASSED
Reviewers: dcrawford, asedeno

Rationale: there is a problem in quicklisp due to recent asdf package changes,
that requires urgent fix to cl-protobufs,
so I'm updating these for the sake of issuing
a cl-protobufs fix to quicklisp ASAP.
I require these updates for some further changes I'm making to QUUX, anyway,
so it's just a matter of timing.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@567483 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoTweak a few comments
Scott McKay [Wed, 19 Sep 2012 21:51:38 +0000 (21:51 +0000)]
Tweak a few comments

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@563247 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoThe 'protobufs' package should use no other package, not even CL
Scott McKay [Wed, 19 Sep 2012 19:50:25 +0000 (19:50 +0000)]
The 'protobufs' package should use no other package, not even CL

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@563209 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd a performance test to the Protobufs test directory
Scott McKay [Wed, 19 Sep 2012 15:21:40 +0000 (15:21 +0000)]
Add a performance test to the Protobufs test directory

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@563144 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd a performance test to the Protobufs test directory
Scott McKay [Wed, 19 Sep 2012 15:20:09 +0000 (15:20 +0000)]
Add a performance test to the Protobufs test directory

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@563140 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoSpeed up unoptimized serialization
Scott McKay [Tue, 18 Sep 2012 16:04:09 +0000 (16:04 +0000)]
Speed up unoptimized serialization

Testing : precheckin --full --strict-errors
Reviewer: Fare

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

The CL-Protobufs tests

Description:

The unoptimized serialization code was slower than
it needed to be and was a Niagara falls of consing.

The problem is that (map () (curry ...)) is poorly
optimized, which is a shame because it's such a nice
coding style. :-P

The fix is to replace 'map' with iteration (sigh) in
a few critical places.

- Add 'doseq', which chooses between 'dolist' or 'dovector'.
- Make 'serialize-object', 'deserialize-object' and 'object-size'
  use 'doseq' instead of using 'map'.
- Ditto for 'print-text-format'.
- Fix the 'serialize-packed' and 'packed-size' optimizers to
  use 'dolist' or 'dovector' based on whether the field is
  a vector field. This makes the optimized code faster, too.
- Make the optimized serializer generators pass in 'vectorp'
  so that the wire-format optimizers can do a better job.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@562921 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoIn case anybody wants to pick off a task...
Scott McKay [Mon, 17 Sep 2012 20:06:10 +0000 (20:06 +0000)]
In case anybody wants to pick off a task...

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@562757 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoTsunami framework + use tsunami in customer profiles
Sergey Vasilyev [Fri, 14 Sep 2012 18:24:30 +0000 (18:24 +0000)]
Tsunami framework + use tsunami in customer profiles

 Testing : precheckin --full (both against Oracle and against megastore for customers)
 Reviewer: eschwartz

 JTB impact: n
 Ops impact: n
 Security impact: n

 Change to config                        : n
 Change to XML schema                    : Y (XMLREQ bug 120820)
 Change to DB schema                     : Y (DBREQ bug 119801)
 Change to transport (timeouts, headers) : n
 Any change (or new use) of OAQs         : n
 Change to inter-component transactions  : sort of (use megastore in development-only environments)
 Depends on any other checkin / bug      : n

 Tests that will verify : tsunami and megastore unit tests + existing customer profile tests

Tsunami is a new layer that sits between business logic code and the
persistence logic. The main manifestation of this layer is
define-domain-class macro that defines an interface to a domain
class. You can then define how to perist in various implementations,
e.g. using define-quake-db-class-bindings for quake and
define-proto-binding & define-megastore-proto-binding for megastore.

Tsunami framework is still a work in progress, and there is a bunch of
outstanding tasks/issues.

As the first application, I refactored customer profile code to use
the tsunami framework. This enables storing of customer profiles in
megastore (or other data stores in the future), while everything else
is stored in Oracle.

Here is the list of other miscellaneous/harder-to-understand changes:

- I changed @id attribute of ContactInfo objects to use the actual
  numeric ID, rather than passing it through encode-record-locator (in
  qres-dev schema only). This required changing XML schema type from
  typeBasicLocatorString to typeBasicID.

- Drop quake/relationships.lisp. Use a more straightforward way to
  associated ADO agencies to customer profiles.

- Customer usernames are now stored as lowercase strings (this means
  that I don't need a separate field in megastore protobuf to
  implement case-insensitive index).

- agency-id permission attribute is now the agency-key (serialized to
  string), not the agency's record ID. This way you don't need to load
  agency to do permission check when all you have is the agency-key

- moved agency-key from core/agencies.lisp to
  lisp/core/agency-types.lisp, so that agency-key type can be used in
  permissions

- add when* test handler that takes a random Lisp expression (as
  opposed to the existing when that takes a variable name and looks at
  whether it is empty)

- remove cc-deleted-error -- there is no such thing as deleting
  cc-info

- refactored cc-information, so that it is used as a value object (ie
  a mostly-immutable object with no identity) in the application. When
  saving to Oracle database, it is saved in the central
  tbl_cc_information table with appropriately populated ownership
  columns (pointing to the customer, journey,
  accountable_doc_container, etc)

- drop unneeded tbl_cc_transaction columns that were caching cc_info
  values

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@562275 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoForgot the updated documentation
Scott McKay [Wed, 12 Sep 2012 22:06:09 +0000 (22:06 +0000)]
Forgot the updated documentation

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@561802 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoFix some user-reported bugs
Scott McKay [Wed, 12 Sep 2012 19:09:46 +0000 (19:09 +0000)]
Fix some user-reported bugs

Testing : precheckin --full --strict-errors
Reviewer: Sergey V, Shaun M

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

The CL-Protobufs tests

Description:

I had made a "policy decision" that the package created
by importing a .proto file would (:use :common-lisp). In
practice, this turned out to be a mistake. Sergey suggested
a fix that I think is correct, so in it goes.

Shaun noticed that the optimized 'serialize-object' and
'object-size' methods didn't quite implement what they were
supposed to for optional boolean fields whose value was never
supplied. Fix the optimized methods to implement the same
(correct) semantics as the unoptimized ones.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@561714 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd a more readable syntax for enum and field indices
Scott McKay [Mon, 10 Sep 2012 17:38:33 +0000 (17:38 +0000)]
Add a more readable syntax for enum and field indices

Testing : precheckin --full --strict-errors
Reviewer: Fare (please)

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

I extended the CL-Protobufs tests

Description:

Add a more readable syntax for enum and field indices.

For define-enum, it was (name value).
  Allow (name :index value).

For define-message, it was ((name index) ...).
  Allow (name :index index ...).
  Complain if both forms appear in the same field.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@561136 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd a few missing features that aren't in any documentation.
Scott McKay [Fri, 7 Sep 2012 15:22:28 +0000 (15:22 +0000)]
Add a few missing features that aren't in any documentation.

Testing : precheckin --full --strict-errors
Reviewer: Fare (please)

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

I extended the CL-Protobufs examples

Description:

Add a few missing features that aren't in any documentation.

String literals can look like "foo"<whitespace>"bar".
 - Fix 'parse-string' to handle this.

Option values can be complex structures, not just atoms.
 - If 'parse-proto-option' sees a '{' character after the '=',
   it should use 'parse-text-format' to read the option value.
 - Fix the 'protobuf-option' printer to call 'print-text-format'
   for complex option values.
 - Minor refactoring to the text format parser and printer in
   order to support the above.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@560639 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd stub support for streaming RPC APIs.
Scott McKay [Tue, 4 Sep 2012 18:36:57 +0000 (18:36 +0000)]
Add stub support for streaming RPC APIs.

Testing : precheckin --full --strict-errors
Reviewer: Fare (please)

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

I extended the CL-Protobufs tests

Description:

Add support for a 'streams' type in Protobufs RPC methods.
 - Add a few slots to 'protobufs-method'
 - Add '&key streams' to the method arglists in 'define-service'
 - Extend the parser to handle "streams" in addition to the
   'streams_type' option
 - Extend the printer
 - Change a test to use a 'streams' type
 - While we're in the neighborhood, allow an optional '=>'
   between the input and output methods in 'define-service';
   it makes it a bit more readable
 - Update the documentation

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@560147 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd type aliases to CL-Protobufs
Scott McKay [Fri, 31 Aug 2012 15:15:49 +0000 (15:15 +0000)]
Add type aliases to CL-Protobufs

Testing : precheckin --full --strict-errors
Reviewer: Fare (please)

JTB impact: No
Ops impact: No

Change to config                        : No
Change to XML schema                    : No
Change to DB schema                     : No
Change to transport (timeouts, headers) : No
Any change (or new use) of OAQs         : No
Change to inter-component transactions  : No
Depends on any other checkin / bug      : No

Tests that will verify:

The CL-Protobufs tests

Description:

Add type aliases to CL-Protobufs. It's a Lisp-only
feature that allows you define a new Protobufs type in
terms of a Lisp type, a serializer and a deserializer.
 - Add a new model class, 'protobuf-type-alias'.
 - Extend schemas and messages so that they can hold
   a set of type aliases; add 'find-type-alias'.
 - Add 'define-type-alias'.
 - Factor out 'lisp-type-to-protobuf-type' from
   'clos-type-to-protobuf-type', I need it for the
   'define-type-alias' macro.
 - Fix the schema printer to print 'define-type-alias'
   for .lisp schemas, and to add a comment describing
   the type alias in .proto schemas.
 - Extend the wire format (de)serializer to know
   about type aliases; it just (de)serializes the
   Lisp type as the Protobufs primitive type using
   the provided (de)serializer functions. There's
   zero cost to this if you don't use aliases.
 - Update the optimized serialization generation.
 - Similarly extend the text format (de)serializer
   to know about type aliases.
 - Change an example to use a type alias for 'date'.
 - Update the documentation.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@559861 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoLeft this out of yesterday's commit
Scott McKay [Wed, 29 Aug 2012 21:28:09 +0000 (21:28 +0000)]
Left this out of yesterday's commit

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@559563 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoEnums and enum values need to have proper qualified name handling, too.
Scott McKay [Tue, 28 Aug 2012 20:32:58 +0000 (20:32 +0000)]
Enums and enum values need to have proper qualified name handling, too.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@559296 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoLose the 'response' argument from the RPC stubs, it's not needed in Lisp
Scott McKay [Mon, 27 Aug 2012 20:58:19 +0000 (20:58 +0000)]
Lose the 'response' argument from the RPC stubs, it's not needed in Lisp

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@559035 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoRound 2 of making meta-dot find the .proto definition
Scott McKay [Mon, 27 Aug 2012 17:12:09 +0000 (17:12 +0000)]
Round 2 of making meta-dot find the .proto definition

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@558959 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoAdd (most of the) support for meta-dot
Scott McKay [Fri, 24 Aug 2012 19:03:49 +0000 (19:03 +0000)]
Add (most of the) support for meta-dot

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@558792 f8382938-511b-0410-9cdd-bb47b084005c

11 years agoA few cleanups for CL-Stubby; passes 'precheckin'
Scott McKay [Tue, 3 Jul 2012 18:44:19 +0000 (18:44 +0000)]
A few cleanups for CL-Stubby; passes 'precheckin'

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@552185 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoIt turns out that being able to get from method -> service -> schema
Scott McKay [Thu, 28 Jun 2012 20:42:55 +0000 (20:42 +0000)]
It turns out that being able to get from method -> service -> schema
makes my CL-Stubby client code simpler. So, fill in the 'parent'
slot for more than just messages. No cost at runtime, so WTH.

Passes 'precheckin' with the new Protobufs unit tests in place.
CL-Stubby tests pass in Google3 environment.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551616 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoUpdate the documentation
Scott McKay [Wed, 27 Jun 2012 21:42:19 +0000 (21:42 +0000)]
Update the documentation

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551426 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoMake the schema printer aware of qualified names.
Scott McKay [Wed, 27 Jun 2012 20:43:50 +0000 (20:43 +0000)]
Make the schema printer aware of qualified names.

Passes 'precheckin' with the new Protobufs unit tests in place.
CL-Stubby tests pass in Google3 environment.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551401 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoBeef up the generated client-side stub so that calls into an RPC
Scott McKay [Tue, 26 Jun 2012 19:52:07 +0000 (19:52 +0000)]
Beef up the generated client-side stub so that calls into an RPC
package, if it has been loaded.

Passes 'precheckin' with the new Protobufs unit tests in place.
CL-Stubby tests pass in Google3 environment.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551156 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoFix further package-related svn merge breakage from 551126.
François-René Rideau [Tue, 26 Jun 2012 19:22:35 +0000 (19:22 +0000)]
Fix further package-related svn merge breakage from 551126.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551150 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoFix build broken by my previous commit 551126
François-René Rideau [Tue, 26 Jun 2012 19:18:46 +0000 (19:18 +0000)]
Fix build broken by my previous commit 551126

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551149 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoSome pathname simplifications in asdf support for cl-protobufs
François-René Rideau [Tue, 26 Jun 2012 18:13:10 +0000 (18:13 +0000)]
Some pathname simplifications in asdf support for cl-protobufs
Tested: [trunk r550170] precheckin --full+ --parallel 5  PASSED
Reviewed: swm

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551126 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoDo a better job recording where a Protobuf schema came from
Scott McKay [Tue, 26 Jun 2012 14:38:57 +0000 (14:38 +0000)]
Do a better job recording where a Protobuf schema came from
so that 'import' just plain works everywhere.

Passes 'precheckin' with the new Protobufs unit tests in place.
CL-Stubby tests pass in Google3 environment.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@551048 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoGet the SBCL build working in the face of the newly installed tests
Scott McKay [Wed, 20 Jun 2012 20:59:19 +0000 (20:59 +0000)]
Get the SBCL build working in the face of the newly installed tests

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@550121 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoRandom things discovered while working on Stubby support...
Scott McKay [Wed, 20 Jun 2012 17:39:41 +0000 (17:39 +0000)]
Random things discovered while working on Stubby support...
 - Make the 'find-xxx' support searching "relative to" another namespace.
 - There was a bug in the non-optimized deserializer when deserializing
   a repeated slot into a vector; create a stretchy vector on demand
   if it's needed.
 - 'define-extends' should wrap 'eval-when' around the generated 'defsetf'
   forms so that they are visible at compile time.
 - Fix a formatting bug in the export list in the Lisp printer.
 - Straighten of the ASDF declaration for the tests.
 - Add the Protobufs test suite to QRes, to keep things honest.

Passes 'precheckin' with the new Protobufs unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@550053 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoStill better support for qualified names:
Scott McKay [Mon, 18 Jun 2012 15:00:19 +0000 (15:00 +0000)]
Still better support for qualified names:
 - Add 'make-qualified-name' function that knows how to prepend
   message and package names.
 - All the places that create messages, enums, fields, etc, now
   generate a qualified name.
 - 'find-qualified-name' now thoroughly checks the qualified name.

Passes 'precheckin' with the new Protobufs unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@549563 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoWhoops, committed an accidental change
Scott McKay [Thu, 14 Jun 2012 18:18:58 +0000 (18:18 +0000)]
Whoops, committed an accidental change

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@549106 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoBeef up ASDF support and 'process-imports' to be rock solid,
Scott McKay [Thu, 14 Jun 2012 17:49:57 +0000 (17:49 +0000)]
Beef up ASDF support and 'process-imports' to be rock solid,
both in the QRes environment and the Google3 environment.

Passes 'precheckin' with the new Protobufs unit tests in place.
Fortuneseeker server gets simpler.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@549101 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoSimplify one interface a tiny bit
Scott McKay [Wed, 13 Jun 2012 22:00:15 +0000 (22:00 +0000)]
Simplify one interface a tiny bit

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@548951 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoMove Protobufs to lisp/libs/cl-protobufs as a standalone system
Scott McKay [Wed, 13 Jun 2012 14:53:08 +0000 (14:53 +0000)]
Move Protobufs to lisp/libs/cl-protobufs as a standalone system

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/libs/cl-protobufs@548806 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoChanged license to MIT-style for publication as part of QITAB.
François-René Rideau [Mon, 11 Jun 2012 20:23:48 +0000 (20:23 +0000)]
Changed license to MIT-style for publication as part of QITAB.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@548441 f8382938-511b-0410-9cdd-bb47b084005c

12 years agocl-protobufs: refactor some pathname munging functions to use ASDF2 utilities.
François-René Rideau [Mon, 11 Jun 2012 20:23:13 +0000 (20:23 +0000)]
cl-protobufs: refactor some pathname munging functions to use ASDF2 utilities.
Tested: doesn't break the build; isn't currently used by our tests.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@548440 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoWhile implementing the Fortuneteller stubby server, I ran into
Scott McKay [Mon, 11 Jun 2012 17:13:55 +0000 (17:13 +0000)]
While implementing the Fortuneteller stubby server, I ran into
some things that needed to be addressed:
 - We need to do a more thorough search of namespaces so that
   qualified references to imported messages, etc, work properly.
   It's still not 100%, but it covers most of what I can find.
   - Name mappers now do their best to preserve qualified names.
   - 'find-xxx' methods search the qualified names.
 - Fix the importation process to cooperate better with ASDF, i.e.,
   don't bother re-importing things that have already compiled
   as part of an ASDF compile/load operation.
 - When generating .lisp from .proto, if no package has been
   declared, do it. And fill it with nice exports, too. This
   won't be exactly right, but it'll make it easier to create
   a proper package declaration, if you so desire.
 - Do a better job of generating client- and server-side stubs.

Passes 'precheckin' with the new Protobufs unit tests in place.
And more to the point, the Fortuneseeker server now works as a
Stubby client using my new Google3 http2 and rpc2 libraries.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@548386 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoSBCL kindly offered suggestions for improvement:
Scott McKay [Tue, 5 Jun 2012 17:46:46 +0000 (17:46 +0000)]
SBCL kindly offered suggestions for improvement:
 - Use 'defgeneric' with ':method' for things that are meant to
   have just a single method.
 - Lose some unreachable code in the parser.
 - Weak hash tables in SBCL need to use ':weakness :value'.
 - The wire-level stuff can use some more type declarations.
 - Fix a package problem in one of the examples.

Passes 'precheckin' with the new Protobufs unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@547515 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoRename these files to avoid name clashes
Scott McKay [Mon, 4 Jun 2012 15:35:34 +0000 (15:35 +0000)]
Rename these files to avoid name clashes

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@547278 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoA few tweaks
Scott McKay [Mon, 4 Jun 2012 15:33:35 +0000 (15:33 +0000)]
A few tweaks

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@547277 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoFrigging SBCL
Scott McKay [Fri, 1 Jun 2012 20:10:46 +0000 (20:10 +0000)]
Frigging SBCL

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@547057 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoMake it a bit easier to debug (de)serialization
Scott McKay [Fri, 1 Jun 2012 19:13:48 +0000 (19:13 +0000)]
Make it a bit easier to debug (de)serialization

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@547034 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoMore support for Stubby and use in Google3 in general:
Scott McKay [Wed, 30 May 2012 20:58:28 +0000 (20:58 +0000)]
More support for Stubby and use in Google3 in general:
 - More sophisticated and easier to use ASDF support.
 - Add search paths to the :protobuf-file ASDF module

Passes 'precheckin' with the new Protobufs unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@546487 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoGet some stuff working better for Stubby purposes.
Scott McKay [Fri, 25 May 2012 20:24:29 +0000 (20:24 +0000)]
Get some stuff working better for Stubby purposes.
 - Better implementation of 'uncamel-case' gives better names.
 - Add an index slot to 'protobuf-method' so that we can more
   easily do automatic service registration.
 - Give a better type to the index slot in 'protobuf-message'
   and 'protobuf-enum'.
 - Parser and macros now assign an index to each service method.
 - Define 'find-service' and 'find-method' for use by Stubby.

Passes 'precheckin' with the new Protobufs unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@545964 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoFix a few more things discovered by the tests:
Scott McKay [Fri, 25 May 2012 14:46:50 +0000 (14:46 +0000)]
Fix a few more things discovered by the tests:
 - 'reinitialize-slot' didn't quite work.
 - Add a geodata example that uses vectors for repeated fields,
   which uncovered a bug in the optimized deserializers.
 - Importing the geodata CLOS classes revealed a bug in default
   handling when the default is provided only in 'defclass'.
 - Fix the knock-on bug in deserialization and the optimized
   (de)serialization caused the above.
 - Add tighter types in 'decode-uint32' and 'decode-uint64'.

Passes 'precheckin'. Even with the new unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@545865 f8382938-511b-0410-9cdd-bb47b084005c

12 years agoAdd 'vector-of' type, at Shaun Morris's request. This required
Scott McKay [Wed, 23 May 2012 18:17:11 +0000 (18:17 +0000)]
Add 'vector-of' type, at Shaun Morris's request. This required
 some additions to the macrology and to the (de)serialization
 code. No runtime performance cost to being able to have things
 both ways.
Fix a bug that caused unprocessed options to get dropped.
Improve some of the unit tests.

Passes 'precheckin'. Even with the new unit tests in place.

git-svn-id: http://svn.internal.itasoftware.com/svn/ita/trunk/qres/lisp/quux/protobufs@545367 f8382938-511b-0410-9cdd-bb47b084005c