tp: several changes for Python API

1. Move everything into a new trace_processor folder inside the Python
folder and add an empty setup.py. Doing this will allow us to correctly
implement setup.py based standalone installation using pip down the line.
2. Add an __init__.py inside the new trace_processor folder to make it
a module we can use.
3. Rename trace_processor_http.py -> http.py now that we have the
wrapping trace_processor folder.
4. Rename api_main.py -> example.py to better reflect its intended
usecase.
5. Check in the trace_processor.proto descriptor (including modifying
the gen_binary_descriptor script to generate this).
6. Add a proto Python module which reads the descriptor and generates
proto factory functions.

These changes were verified to work with both bazel run and execing the
example.py script directly.

Change-Id: I7603edee8741632c6f8d1c7b8ea9d9d17a4c78cd
diff --git a/src/trace_processor/python/example.py b/src/trace_processor/python/example.py
new file mode 100644
index 0000000..cb16f52
--- /dev/null
+++ b/src/trace_processor/python/example.py
@@ -0,0 +1,43 @@
+#!/usr/bin/env python3
+# Copyright (C) 2020 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import argparse
+
+from trace_processor.http import TraceProcessorHttp
+
+
+def main():
+  # Parse arguments passed from command line
+  parser = argparse.ArgumentParser()
+  parser.add_argument(
+      "-a",
+      "--address",
+      help="Address at which trace_processor is being run, e.g. 127.0.0.1:9001",
+      required=True,
+      type=str)
+  parser.add_argument(
+      "-f", "--file", help="Absolute path to trace", required=True, type=str)
+  args = parser.parse_args()
+
+  # TODO(@aninditaghosh): Load trace into trace_processor_shell
+
+  # Call functions on the loaded trace
+  tp = TraceProcessorHttp(args.address)
+  tp.notify_eof()
+  print(tp.status())
+
+
+if __name__ == "__main__":
+  main()