Rename s3_operations.h/cc

Change-Id: I96951eb3e52f7dd625b3e07954e359e79dd7c9b3
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/aos/events/logging/BUILD b/aos/events/logging/BUILD
index cec39dd..4e58923 100644
--- a/aos/events/logging/BUILD
+++ b/aos/events/logging/BUILD
@@ -84,9 +84,9 @@
 )
 
 cc_library(
-    name = "s3_operations",
-    srcs = ["s3_operations.cc"],
-    hdrs = ["s3_operations.h"],
+    name = "s3_file_operations",
+    srcs = ["s3_file_operations.cc"],
+    hdrs = ["s3_file_operations.h"],
     deps = [
         ":file_operations",
         ":s3_fetcher",
@@ -186,7 +186,7 @@
     ] + select({
         "//tools:cpu_k8": [
             ":s3_fetcher",
-            ":s3_operations",
+            ":s3_file_operations",
             ":lzma_encoder",
         ],
         "//tools:cpu_arm64": [":lzma_encoder"],
diff --git a/aos/events/logging/logfile_sorting.cc b/aos/events/logging/logfile_sorting.cc
index dc7078a..a343356 100644
--- a/aos/events/logging/logfile_sorting.cc
+++ b/aos/events/logging/logfile_sorting.cc
@@ -20,7 +20,7 @@
 #include "sys/stat.h"
 
 #if ENABLE_S3
-#include "aos/events/logging/s3_operations.h"
+#include "aos/events/logging/s3_file_operations.h"
 #endif
 
 DEFINE_bool(quiet_sorting, false,
diff --git a/aos/events/logging/s3_operations.cc b/aos/events/logging/s3_file_operations.cc
similarity index 90%
rename from aos/events/logging/s3_operations.cc
rename to aos/events/logging/s3_file_operations.cc
index 01b5dd2..8764d4a 100644
--- a/aos/events/logging/s3_operations.cc
+++ b/aos/events/logging/s3_file_operations.cc
@@ -1,4 +1,4 @@
-#include "aos/events/logging/s3_operations.h"
+#include "aos/events/logging/s3_file_operations.h"
 
 #include "aos/events/logging/s3_fetcher.h"
 
diff --git a/aos/events/logging/s3_operations.h b/aos/events/logging/s3_file_operations.h
similarity index 73%
rename from aos/events/logging/s3_operations.h
rename to aos/events/logging/s3_file_operations.h
index d1bc5b2..ae94f62 100644
--- a/aos/events/logging/s3_operations.h
+++ b/aos/events/logging/s3_file_operations.h
@@ -1,5 +1,5 @@
-#ifndef AOS_EVENTS_LOGGING_S3_OPERATIONS_H_
-#define AOS_EVENTS_LOGGING_S3_OPERATIONS_H_
+#ifndef AOS_EVENTS_LOGGING_S3_FILE_OPERATIONS_H_
+#define AOS_EVENTS_LOGGING_S3_FILE_OPERATIONS_H_
 
 #include "aos/events/logging/file_operations.h"
 
@@ -19,4 +19,4 @@
 
 }  // namespace aos::logger::internal
 
-#endif  // AOS_EVENTS_LOGGING_S3_OPERATIONS_H_
+#endif  // AOS_EVENTS_LOGGING_S3_FILE_OPERATIONS_H_