Remove size.Of pkg
This commit is contained in:
parent
302be45a9a
commit
15944b83cc
@ -8,11 +8,9 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/alcionai/clues"
|
"github.com/alcionai/clues"
|
||||||
"github.com/microsoft/kiota-abstractions-go/store"
|
|
||||||
"github.com/microsoftgraph/msgraph-sdk-go/models"
|
"github.com/microsoftgraph/msgraph-sdk-go/models"
|
||||||
"golang.org/x/exp/maps"
|
"golang.org/x/exp/maps"
|
||||||
|
|
||||||
sizePkg "github.com/DmitriyVTitov/size"
|
|
||||||
"github.com/alcionai/corso/src/internal/common/prefixmatcher"
|
"github.com/alcionai/corso/src/internal/common/prefixmatcher"
|
||||||
"github.com/alcionai/corso/src/internal/common/ptr"
|
"github.com/alcionai/corso/src/internal/common/ptr"
|
||||||
"github.com/alcionai/corso/src/internal/data"
|
"github.com/alcionai/corso/src/internal/data"
|
||||||
@ -670,19 +668,19 @@ func (c *Collections) getCollectionPath(
|
|||||||
return collectionPath, nil
|
return collectionPath, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getBackingStoreSize(ctx context.Context, item models.DriveItemable) {
|
// func getBackingStoreSize(ctx context.Context, item models.DriveItemable) {
|
||||||
driveItem := item.(*models.DriveItem)
|
// driveItem := item.(*models.DriveItem)
|
||||||
// Get backing store
|
// // Get backing store
|
||||||
st := driveItem.GetBackingStore().(*store.InMemoryBackingStore)
|
// st := driveItem.GetBackingStore().(*store.InMemoryBackingStore)
|
||||||
logger.Ctx(ctx).Infow("store size", "in_mem_store_size", sizePkg.Of(st.Store))
|
// logger.Ctx(ctx).Infow("store size", "in_mem_store_size", sizePkg.Of(st.Store))
|
||||||
logger.Ctx(ctx).Infow("drive item size", "in_mem_store_size", sizePkg.Of(driveItem))
|
// logger.Ctx(ctx).Infow("drive item size", "in_mem_store_size", sizePkg.Of(driveItem))
|
||||||
}
|
// }
|
||||||
|
|
||||||
func getBackingStoreSize1(ctx context.Context, item CorsoDriveItemable) {
|
// func getBackingStoreSize1(ctx context.Context, item CorsoDriveItemable) {
|
||||||
driveItem := item.(*CorsoDriveItem)
|
// driveItem := item.(*CorsoDriveItem)
|
||||||
// Get backing store
|
// // Get backing store
|
||||||
logger.Ctx(ctx).Infow("corso serialized size", "in_mem_store_size", sizePkg.Of(driveItem))
|
// logger.Ctx(ctx).Infow("corso serialized size", "in_mem_store_size", sizePkg.Of(driveItem))
|
||||||
}
|
// }
|
||||||
|
|
||||||
// UpdateCollections initializes and adds the provided drive items to Collections
|
// UpdateCollections initializes and adds the provided drive items to Collections
|
||||||
// A new collection is created for every drive folder (or package).
|
// A new collection is created for every drive folder (or package).
|
||||||
@ -826,10 +824,10 @@ func (c *Collections) UpdateCollections(
|
|||||||
// that OneDrive always returns all folders on the path of an item
|
// that OneDrive always returns all folders on the path of an item
|
||||||
// before the item. This seems to hold true for now at least.
|
// before the item. This seems to hold true for now at least.
|
||||||
if col.Add(item) {
|
if col.Add(item) {
|
||||||
getBackingStoreSize(ictx, item)
|
//getBackingStoreSize(ictx, item)
|
||||||
c.NumItems++
|
c.NumItems++
|
||||||
cdi := ToCorsoDriveItemable(item)
|
//cdi := ToCorsoDriveItemable(item)
|
||||||
getBackingStoreSize1(ictx, cdi)
|
//getBackingStoreSize1(ictx, cdi)
|
||||||
}
|
}
|
||||||
|
|
||||||
case item.GetFile() != nil:
|
case item.GetFile() != nil:
|
||||||
@ -866,11 +864,11 @@ func (c *Collections) UpdateCollections(
|
|||||||
itemCollection[driveID][itemID] = parentID
|
itemCollection[driveID][itemID] = parentID
|
||||||
|
|
||||||
if collection.Add(item) {
|
if collection.Add(item) {
|
||||||
getBackingStoreSize(ictx, item)
|
//getBackingStoreSize(ictx, item)
|
||||||
c.NumItems++
|
c.NumItems++
|
||||||
c.NumFiles++
|
c.NumFiles++
|
||||||
cdi := ToCorsoDriveItemable(item)
|
//cdi := ToCorsoDriveItemable(item)
|
||||||
getBackingStoreSize1(ictx, cdi)
|
//getBackingStoreSize1(ictx, cdi)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do this after adding the file to the collection so if we fail to add
|
// Do this after adding the file to the collection so if we fail to add
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user