propertywatch: Add ignore_start_callback config

Add an optional `ignore_start_callback` config to indicate if the
callback shall be ignored on start.

By default the callbacks in property watch are called on start.
There are cases where we do not want such behavior and only expect
callbacks on property changes.

Add the `ignore_start_callback` so that we could config a watch to not
trigger the start callback.

Tested: Verify the callback is not called if the watch config has
        `ignore_start_callback: true`

Signed-off-by: Lei YU <yulei.sh@bytedance.com>
Change-Id: I7e5887cc8b0d0775d9b3d689f1511250667aaa5b
diff --git a/src/templates/generated.mako.hpp b/src/templates/generated.mako.hpp
index 7b1bf69..9f9475a 100644
--- a/src/templates/generated.mako.hpp
+++ b/src/templates/generated.mako.hpp
@@ -259,15 +259,18 @@
                 ConfigPropertyIndicies::get()[${w.instances}]),
         % else:
                 ConfigPropertyIndicies::get()[${w.instances}],
+                ${w.ignore_start_callback},
                 ConfigPropertyFilters::get()[${w.filters}].get()),
         % endif
     % else:
         % if w.filters is None:
                 ConfigPropertyIndicies::get()[${w.instances}],
-                *ConfigPropertyCallbacks::get()[${w.callback}]),
+                *ConfigPropertyCallbacks::get()[${w.callback}],
+                ${w.ignore_start_callback}),
         % else:
                 ConfigPropertyIndicies::get()[${w.instances}],
                 *ConfigPropertyCallbacks::get()[${w.callback}],
+                ${w.ignore_start_callback},
                 ConfigPropertyFilters::get()[${w.filters}].get()),
         % endif
     % endif