From 723af534197c66ab7888db51f08456a0b79a9ea7 Mon Sep 17 00:00:00 2001
From: David Garcia Quintas <dgq@google.com>
Date: Tue, 8 Mar 2016 14:26:50 -0800
Subject: [PATCH] moved some files around

---
 BUILD                                            |  4 ++--
 Makefile                                         |  8 ++++----
 build.yaml                                       |  4 ++--
 include/grpc++/impl/grpc_library.h               |  2 +-
 src/cpp/{codegen => common}/core_codegen.cc      |  4 +---
 src/cpp/{codegen => common}/core_codegen.h       |  0
 src/cpp/{codegen => common}/grpc_library.cc      |  2 ++
 tools/doxygen/Doxyfile.c++.internal              |  4 ++--
 tools/run_tests/sources_and_headers.json         |  4 ++--
 vsprojects/vcxproj/grpc++/grpc++.vcxproj         |  6 +++---
 vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters | 13 +++++--------
 11 files changed, 24 insertions(+), 27 deletions(-)
 rename src/cpp/{codegen => common}/core_codegen.cc (98%)
 rename src/cpp/{codegen => common}/core_codegen.h (100%)
 rename src/cpp/{codegen => common}/grpc_library.cc (93%)

diff --git a/BUILD b/BUILD
index 6ebc094a08..a7bcd01398 100644
--- a/BUILD
+++ b/BUILD
@@ -796,9 +796,9 @@ cc_library(
     "src/cpp/server/dynamic_thread_pool.h",
     "src/cpp/server/thread_pool_interface.h",
     "src/cpp/client/secure_credentials.cc",
-    "src/cpp/codegen/core_codegen.cc",
-    "src/cpp/codegen/grpc_library.cc",
     "src/cpp/common/auth_property_iterator.cc",
+    "src/cpp/common/core_codegen.cc",
+    "src/cpp/common/grpc_library.cc",
     "src/cpp/common/secure_auth_context.cc",
     "src/cpp/common/secure_channel_arguments.cc",
     "src/cpp/common/secure_create_auth_context.cc",
diff --git a/Makefile b/Makefile
index e9a31b2e29..f2713c100d 100644
--- a/Makefile
+++ b/Makefile
@@ -3014,9 +3014,9 @@ endif
 
 LIBGRPC++_SRC = \
     src/cpp/client/secure_credentials.cc \
-    src/cpp/codegen/core_codegen.cc \
-    src/cpp/codegen/grpc_library.cc \
     src/cpp/common/auth_property_iterator.cc \
+    src/cpp/common/core_codegen.cc \
+    src/cpp/common/grpc_library.cc \
     src/cpp/common/secure_auth_context.cc \
     src/cpp/common/secure_channel_arguments.cc \
     src/cpp/common/secure_create_auth_context.cc \
@@ -13147,9 +13147,9 @@ src/core/tsi/fake_transport_security.c: $(OPENSSL_DEP)
 src/core/tsi/ssl_transport_security.c: $(OPENSSL_DEP)
 src/core/tsi/transport_security.c: $(OPENSSL_DEP)
 src/cpp/client/secure_credentials.cc: $(OPENSSL_DEP)
-src/cpp/codegen/core_codegen.cc: $(OPENSSL_DEP)
-src/cpp/codegen/grpc_library.cc: $(OPENSSL_DEP)
 src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
+src/cpp/common/core_codegen.cc: $(OPENSSL_DEP)
+src/cpp/common/grpc_library.cc: $(OPENSSL_DEP)
 src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
 src/cpp/common/secure_channel_arguments.cc: $(OPENSSL_DEP)
 src/cpp/common/secure_create_auth_context.cc: $(OPENSSL_DEP)
diff --git a/build.yaml b/build.yaml
index a53da04fee..5323915bb6 100644
--- a/build.yaml
+++ b/build.yaml
@@ -695,9 +695,9 @@ libs:
   - src/cpp/server/secure_server_credentials.h
   src:
   - src/cpp/client/secure_credentials.cc
-  - src/cpp/codegen/core_codegen.cc
-  - src/cpp/codegen/grpc_library.cc
   - src/cpp/common/auth_property_iterator.cc
+  - src/cpp/common/core_codegen.cc
+  - src/cpp/common/grpc_library.cc
   - src/cpp/common/secure_auth_context.cc
   - src/cpp/common/secure_channel_arguments.cc
   - src/cpp/common/secure_create_auth_context.cc
diff --git a/include/grpc++/impl/grpc_library.h b/include/grpc++/impl/grpc_library.h
index 207053e63b..9d32ec152f 100644
--- a/include/grpc++/impl/grpc_library.h
+++ b/include/grpc++/impl/grpc_library.h
@@ -40,7 +40,7 @@
 #include <grpc++/impl/codegen/grpc_library.h>
 #include <grpc/grpc.h>
 
-#include "src/cpp/codegen/core_codegen.h"
+#include "src/cpp/common/core_codegen.h"
 
 namespace grpc {
 
diff --git a/src/cpp/codegen/core_codegen.cc b/src/cpp/common/core_codegen.cc
similarity index 98%
rename from src/cpp/codegen/core_codegen.cc
rename to src/cpp/common/core_codegen.cc
index b052cc60eb..0f7028f34c 100644
--- a/src/cpp/codegen/core_codegen.cc
+++ b/src/cpp/common/core_codegen.cc
@@ -31,7 +31,7 @@
  *
  */
 
-#include "src/cpp/codegen/core_codegen.h"
+#include "src/cpp/common/core_codegen.h"
 
 #include <stdlib.h>
 
@@ -48,8 +48,6 @@
 
 #include "src/core/profiling/timers.h"
 
-grpc::CoreCodegenInterface* grpc::g_core_codegen_interface = nullptr;
-
 namespace {
 
 const int kGrpcBufferWriterMaxBufferLength = 8192;
diff --git a/src/cpp/codegen/core_codegen.h b/src/cpp/common/core_codegen.h
similarity index 100%
rename from src/cpp/codegen/core_codegen.h
rename to src/cpp/common/core_codegen.h
diff --git a/src/cpp/codegen/grpc_library.cc b/src/cpp/common/grpc_library.cc
similarity index 93%
rename from src/cpp/codegen/grpc_library.cc
rename to src/cpp/common/grpc_library.cc
index 48acec3f3d..445a76e9ae 100644
--- a/src/cpp/codegen/grpc_library.cc
+++ b/src/cpp/common/grpc_library.cc
@@ -32,9 +32,11 @@
  */
 
 #include <grpc++/impl/codegen/grpc_library.h>
+#include <grpc++/impl/codegen/core_codegen_interface.h>
 
 namespace grpc {
 
 GrpcLibraryInterface *g_glip = nullptr;
+CoreCodegenInterface *g_core_codegen_interface = nullptr;
 
 }  // namespace grpc
diff --git a/tools/doxygen/Doxyfile.c++.internal b/tools/doxygen/Doxyfile.c++.internal
index e63c9ae696..6a41c801df 100644
--- a/tools/doxygen/Doxyfile.c++.internal
+++ b/tools/doxygen/Doxyfile.c++.internal
@@ -812,9 +812,9 @@ src/cpp/common/create_auth_context.h \
 src/cpp/server/dynamic_thread_pool.h \
 src/cpp/server/thread_pool_interface.h \
 src/cpp/client/secure_credentials.cc \
-src/cpp/codegen/core_codegen.cc \
-src/cpp/codegen/grpc_library.cc \
 src/cpp/common/auth_property_iterator.cc \
+src/cpp/common/core_codegen.cc \
+src/cpp/common/grpc_library.cc \
 src/cpp/common/secure_auth_context.cc \
 src/cpp/common/secure_channel_arguments.cc \
 src/cpp/common/secure_create_auth_context.cc \
diff --git a/tools/run_tests/sources_and_headers.json b/tools/run_tests/sources_and_headers.json
index a17f60d8f2..491af56c84 100644
--- a/tools/run_tests/sources_and_headers.json
+++ b/tools/run_tests/sources_and_headers.json
@@ -5036,12 +5036,12 @@
       "src/cpp/client/insecure_credentials.cc", 
       "src/cpp/client/secure_credentials.cc", 
       "src/cpp/client/secure_credentials.h", 
-      "src/cpp/codegen/core_codegen.cc", 
-      "src/cpp/codegen/grpc_library.cc", 
       "src/cpp/common/auth_property_iterator.cc", 
       "src/cpp/common/channel_arguments.cc", 
       "src/cpp/common/completion_queue.cc", 
+      "src/cpp/common/core_codegen.cc", 
       "src/cpp/common/create_auth_context.h", 
+      "src/cpp/common/grpc_library.cc", 
       "src/cpp/common/rpc_method.cc", 
       "src/cpp/common/secure_auth_context.cc", 
       "src/cpp/common/secure_auth_context.h", 
diff --git a/vsprojects/vcxproj/grpc++/grpc++.vcxproj b/vsprojects/vcxproj/grpc++/grpc++.vcxproj
index be7e91f4a5..374bbfca1b 100644
--- a/vsprojects/vcxproj/grpc++/grpc++.vcxproj
+++ b/vsprojects/vcxproj/grpc++/grpc++.vcxproj
@@ -315,11 +315,11 @@
   <ItemGroup>
     <ClCompile Include="$(SolutionDir)\..\src\cpp\client\secure_credentials.cc">
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\core_codegen.cc">
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\grpc_library.cc">
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\core_codegen.cc">
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\grpc_library.cc">
     </ClCompile>
     <ClCompile Include="$(SolutionDir)\..\src\cpp\common\secure_auth_context.cc">
     </ClCompile>
diff --git a/vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters b/vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters
index f0e10b10a7..5cb395a668 100644
--- a/vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters
+++ b/vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters
@@ -4,13 +4,13 @@
     <ClCompile Include="$(SolutionDir)\..\src\cpp\client\secure_credentials.cc">
       <Filter>src\cpp\client</Filter>
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\core_codegen.cc">
-      <Filter>src\cpp\codegen</Filter>
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
+      <Filter>src\cpp\common</Filter>
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\codegen\grpc_library.cc">
-      <Filter>src\cpp\codegen</Filter>
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\core_codegen.cc">
+      <Filter>src\cpp\common</Filter>
     </ClCompile>
-    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\auth_property_iterator.cc">
+    <ClCompile Include="$(SolutionDir)\..\src\cpp\common\grpc_library.cc">
       <Filter>src\cpp\common</Filter>
     </ClCompile>
     <ClCompile Include="$(SolutionDir)\..\src\cpp\common\secure_auth_context.cc">
@@ -281,9 +281,6 @@
     <Filter Include="src\cpp\client">
       <UniqueIdentifier>{7febf32a-d7a6-76fa-9e17-f189f591c062}</UniqueIdentifier>
     </Filter>
-    <Filter Include="src\cpp\codegen">
-      <UniqueIdentifier>{3c3e27f4-d3d9-3c42-5204-08b5e839f2de}</UniqueIdentifier>
-    </Filter>
     <Filter Include="src\cpp\common">
       <UniqueIdentifier>{2336e396-7e0b-8bf9-3b09-adc6ad1f0e5b}</UniqueIdentifier>
     </Filter>
-- 
GitLab