Changes between Version 6 and Version 7 of MapGuideRfc25
- Timestamp:
- 08/09/07 13:42:03 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified MapGuideRfc25
v6 v7 35 35 == Proposed Solution == 36 36 37 This is a more detailed description of the actual changes desired. The contents of this section will vary based on the target of the RFC, be it a technical change, website change, or process change. For example, for a technical change, items such as files, XML schema changes, and API chances would be identified. For a process change, the new process would be laid out in detail. For a website change, the files affected would be listed.38 39 37 An additioanl OEM component has been added to the source -- jsoncpp. Jsoncpp is a C++ implementation of the JSON specification (http://sourceforge.net/projects/jsoncpp/). 40 38 41 39 Two additional classes have been added to assist the JSON implementation in !MapGuide: 40 42 41 1) The !MgJsonDoc Class 42 43 43 - !MgJsonDoc is a wrapper over the jsoncpp implementation. !MgJsonDoc provides many easy-to-use interfaces, such as Begin* and End*, for creating JSON documents from an XML perspective. For example, to create as JSON document for the corresponding XML content---<Node>Text</Node>---, one would call !BeginObject("Node"), !SetValue("Text"), and !EndObject() subsequently. 44 44 45 2) The MgXmlJsonConvert Class 45 2) The !MgXmlJsonConvert Class 46 46 47 - !MgXmlJsonConvert converts an XML document into a JSON formatted document. 47 48 … … 51 52 52 53 # !EnumerateCategories (1) 54 53 55 # !EnumerateCoordinateSystems (1) 54 56 … … 56 58 57 59 # !EnumerateResourceReferences (3) 60 58 61 # !EnumerateResources (3) 62 59 63 # !GetResourceContent (3) 64 60 65 # !GetResourceHeader (3) 66 61 67 # !EnumerateResourceData (3) 68 62 69 # !GetResourceData (3) 70 63 71 # !EnumerateUnmanagedData (3) 64 72 … … 66 74 67 75 # !GetFeatureProviders (3) 76 68 77 # !GetCapabilities (3) 78 69 79 # !GetConnectPropertyValues (1) 80 70 81 # !DescribeSchema (4) 82 71 83 # !SelectFeatures (2) 84 72 85 # !SelectAggregates (1) 86 73 87 # !GetSpatialContexts (1) 88 74 89 # !GetLongTransactions (1) 90 75 91 # !EnumerateDataStores (3) 92 76 93 # !GetSchemaMapping (3) 94 77 95 # !GetSchemas (1) 96 78 97 # !GetClasses (1) 98 79 99 # !GetClassDefinition (2) 100 80 101 # !GetIdentityProperties (1) 102 81 103 # !ExecuteSqlQuery (1) 104 82 105 # !GetFdoCacheInfo (4) 83 106 … … 87 110 88 111 where the appended labeling scheme indicates the different implementation considerations: 112 89 113 (1) Web-tier changes -- every !ToXml function is matched with an !ToJson function implementation that creates a JSON document in place, 114 90 115 (2) Web-tier changes -- utilizes the !MgXmlJsonConvert class to convert XML documents to JSON documents. 116 91 117 (3) Server changes -- an extra parameter "CREFSTRING format" has been added to the respective API call; the !MgXmlJsonConvert class is used if format equals to the JSON MIME type. 118 92 119 (4) Server changes -- an extra API has been added matching the respective API call (e.g. !DescribeSchemaAsXml has !DescribeSchemaAsJson as the JSON version, and !GetFDOCacheInfo has !GetFDOCacheInfoAsJson as its JSON specific implementation); this is because the original APIs return "STRING" and could not be efficiently adapted by the conversion process within the !MgXmlJsonConvert class implementation; and for the affected APIs, the !MgByteReader* is returned instead. 93 120