ValidSchema.hh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * https://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. #ifndef avro_ValidSchema_hh__
  19. #define avro_ValidSchema_hh__
  20. #include "Config.hh"
  21. #include "Node.hh"
  22. namespace avro {
  23. class AVRO_DECL Schema;
  24. /// A ValidSchema is basically a non-mutable Schema that has passed some
  25. /// minimum of sanity checks. Once validated, any Schema that is part of
  26. /// this ValidSchema is considered locked, and cannot be modified (an attempt
  27. /// to modify a locked Schema will throw). Also, as it is validated, any
  28. /// recursive duplications of schemas are replaced with symbolic links to the
  29. /// original.
  30. ///
  31. /// Once a Schema is converted to a valid schema it can be used in validating
  32. /// parsers/serializers, converted to a json schema, etc.
  33. ///
  34. class AVRO_DECL ValidSchema {
  35. public:
  36. explicit ValidSchema(NodePtr root);
  37. explicit ValidSchema(const Schema &schema);
  38. ValidSchema();
  39. void setSchema(const Schema &schema);
  40. const NodePtr &root() const {
  41. return root_;
  42. }
  43. void toJson(std::ostream &os) const;
  44. std::string toJson(bool prettyPrint = true) const;
  45. void toFlatList(std::ostream &os) const;
  46. protected:
  47. NodePtr root_;
  48. private:
  49. static std::string compactSchema(const std::string &schema);
  50. };
  51. } // namespace avro
  52. #endif