Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Znav
nextExample of a File System Client in C-Sharp
prevslice2cs Command-Line Options

The Slice compilers can optionally generate checksums of Slice definitions. For slice2cs, the --checksum option causes the compiler to generate checksums in each C# source file that are added to a member of the Ice.SliceChecksums class:

Wiki Markup
{zcode:cs}
namespace Ice {
    public sealed class SliceChecksums {
        public readonly static System.Collections.Generic.Dictionary<string, string> checksums;
    }
}
{zcode}

The checksums map is initialized automatically prior to first use; no action is required by the application.

In order to verify a server's checksums, a client could simply compare the dictionaries using the Equals function. However, this is not feasible if it is possible that the server might be linked with more Slice definitions than the client. A more general solution is to iterate over the local checksums as demonstrated below:

Wiki Markup
{zcode:cs}
System.Collections.Generic.Dictionary<string,string> serverChecksums = ...
foreach(System.Collections.Generic.KeyValuePair<string, string> e in Ice.SliceChecksums.checksums) {
    string checksum;
    if (!serverChecksums.TryGetValue(e.Key, out checksum)) {
        // No match found for type id!
    } else if (!checksum.Equals(e.Value)) {
        // Checksum mismatch!
    }
}
{zcode}

In this example, the client first verifies that the server's dictionary contains an entry for each Slice type ID, and then it proceeds to compare the checksums.

Ztop
See Also
Zret
Znav
nextExample of a File System Client in C-Sharp
prevslice2cs Command-Line Options